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 need to add facebook comment to each of my Products page i'm using asp.net and my Products page url like this (mydomail.com/Products.aspx?id=5) is there any way to do this

share|improve this question

1 Answer

up vote 0 down vote accepted

Similar to the Facebook Like button, the Facebook comments plugin is associated with a URL -- it's what makes it unique.

Since you're using an id parameter in your URL, simply pass in your URL to the comments plugin. That should make it so that every page has a unique set of comments.

For example, on products page 5 you could do:

<div class="fb-comments" data-href="<?php echo 'http://myurl.com?id=' . $_GET['id']; ?>" data-width="470" data-num-posts="2"></div>

You'll of course want to make sure that you've dropped in the Facebook Javascript SDK snippet (I'd recommend loading this into the top of your HTML body dynamically):

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=336176363148369";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

There are other types of plugins that you can use (XFBML, IFRAME), and everything is documented here.

share|improve this answer
but id parameter is changed dynamically – kiro karam Jan 16 at 3:31
@user1982250 Totally. Make sure that you're loading in that comments code on every page, and then just swap out your URL dynamically. I'd imagine that you have access to the GET variable? Pardon my PHP, but you would simply do something like data-href="<?php echo 'mydomain.com?id=' . $_GET['id']; ?>". Modified my example. – Nick Parsons Jan 16 at 3:39
yes exactly that what i want but plz can you give me the asp.net code – kiro karam Jan 16 at 3:58
Not familiar with asp.net. Regardless of the language, it's a pretty simple approach -- you need to pull the id GET variable from your query string. Simple search returned this: stackoverflow.com/questions/1033548/… – Nick Parsons Jan 16 at 4:22
thank you i will see it – kiro karam Jan 16 at 4:35
show 1 more comment

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.