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 site problemio dot com (not posting url so it doesnt look like I am just trying to get links, etc.)

On the photo in the home page, there are 7 different links to categories. In each category there is the same number of likes. I don't understand why.

Here is the FB snippet I use:

        <div style="margin: 0 auto; width: 100px; padding-left: 55px; padding-bottom: 15px;">
         <center><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=234415063262341";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));</script>
         <div class="fb-like" data-href="http://www.problemio.com" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true"></div>  
         </center>               
        </div>

Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

Does data-href="http://www.problemio.com" have to be a unique page?

like data-href="http://www.problemio.com/category/photos" and or

data-href="http://www.problemio.com/about"

so that way each page can be liked?

share|improve this answer
good catch - that was it :) – GeekedOut Dec 26 '11 at 23:56

Use each page's own canonical URL on each data-href.

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.