On my drupal website , I wanted to use facebook comments. So I put the JavaScript SDK code on html.tpl.php and this:
<div class="fb-comments" data-href="http://mydomain.com" data-num-posts="5" data-width="540"></div>.
on my template file node--article.tpl.php.
So it is showing the facebook comments on nodes. But the abnormal thing is : Same comments are being showed in all articles(nodes). A comment posted on article A will be shown on article B, article C and so on.
Why is this happening ? Am I missing something obvious.
data-hrefattribute tells the plugin what you want the comments to be made on – and here you are saying you want them to be made on your whole site. Change the value to the URL of the specific article in each case. – CBroe Nov 19 '12 at 21:03