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 implemented Facebook Open Graph Protocol Full Integration following the Facebook developers site and here http://www.websitedesign411.com/blog/facebook-open-graph-protocol-full-integration-walkthrough.

I got the Facebook Like Buttons to show here http://giantmango.com/news using

<fb:like href="<?php the_permalink() ?>" layout="button_count" show_faces="false" width="200" action="like" colorscheme="light"></fb:like>

On the same domain, I am using the exact code, but on a different theme and the Facebook Like Buttons are not showing here http://giantmango.com/testartwork-2237

Any ideas on how to solve this problem would help very much.

share|improve this question

1 Answer

up vote 1 down vote accepted

It looks like you are missing your Facebook javascript initialization code.

<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
    FB.init({appId: 'your app id', status: true, cookie: true,
        xfbml: true});
    };
    (function() {
        var e = document.createElement('script'); e.async = true;
        e.src = document.location.protocol +
           '//connect.facebook.net/en_US/all.js';
        document.getElementById('fb-root').appendChild(e);
    }());
</script>
share|improve this answer
@Ardman. I have it in my functions.php file. Therefore, it works here giantmango.com/news or are you referring to something else? – tokyowp Feb 19 '11 at 20:00
@tokyowp: You have it at the bottom of your news page. – Neil Knight Feb 19 '11 at 20:01
@Ardman. What application are you using to see all of this? – tokyowp Feb 19 '11 at 20:07
@tokyowp: I viewed the page source using Internet Explorer 9 RC. :o) – Neil Knight Feb 19 '11 at 20:13
@Ardman: Thank you! – tokyowp Feb 19 '11 at 20:15
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.