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 am linking to a page that has 100 likes already. I just started testing it and its now showing:

 Be the first of your friends to like this

instead of:

100 people like this

does anyone know why facebook would show that message above versus showing the number of likes the page have? Is that configurable or a bug ?

share|improve this question
What code are you using? – Tech163 Feb 19 '12 at 2:56

2 Answers

up vote 2 down vote accepted

I believe that shows when a user who has not liked the page and has no friends who have liked it is logged in. According to this question (How to remove the "Be the first of your friends to like this" part of the standard iframe Facebook Like button?), this is not configurable.

share|improve this answer
turned out i got the URL wrong . . so it was just a typo (and couldn't find the likes) – leora Feb 19 '12 at 3:08

please check your URL and put this in body tag

<!--FB SDK-->
<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";
      fjs.parentNode.insertBefore(js, fjs);
   }(document, 'script', 'facebook-jssdk'));
</script>
<!--FB SDK-->
share|improve this answer

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.