Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a static site. Facebook comment "thanks" on page1.php is also visible at all pages i.e. page2.php, page3.php etc. I have FB application API. How can I set the comment "thanks" for page1.php only not for the all pages? I am not much technical, referring to a tutorial will be highly appreciated. Thanks & regards!

share|improve this question

1 Answer

up vote 2 down vote accepted

From https://developers.facebook.com/docs/reference/plugins/comments/, the url you use gets programmed into the plugin code you copy onto your site. You will need to hand modify the data-href for each page you paste it into.

This would go on page 1

<div class="fb-comments" data-href="http://example.com/page1.php" data-num-posts="2" data-width="500"></div>

This would go on page 2

<div class="fb-comments" data-href="http://example.com/page2.php" data-num-posts="2" data-width="500"></div>

etc...

share|improve this answer
It seems I have to change page names in tag and put this tag into every single page to get comments on appropriate page. Not like the dynamic pages (like Wordpress and Joomla, install plugin and it will sort out where comment was actually submitted). – user1118203 Dec 28 '11 at 8:51
Yes, that's how you will need to code it. Each php page will get their own unique href. – DMCS Dec 28 '11 at 17:09
Alright! Thank you very much for your time and comprehensive information regarding to my query. – user1118203 Dec 28 '11 at 17:57
Be sure to mark this answer correct if it resolved your situation. :) Thanks. – DMCS Dec 29 '11 at 2:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.