Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page that must show all the videos of the website side by side, and in each one I need a facebook like button, what is ok, but the buttons get the href from the YouTube link of the video and it's coming with a PHP variable. Now in some videos all works great, but in some others when I click "like" the like popup quickly disappears. Now the code:

The top:

<div id="fb-root"></div>

The JS from Facebook:

    window.fbAsyncInit = function() {
FB.init({appId: '321916167895471', 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);
}());

And the PHP with the like button:

         if(($contador%2) == 0)
     {
     echo "
     <div id='sub1-1' style='width: 390px; margin-bottom:12px'>
     <div id='title-cont-sub'>$TITULO</div>
     <div id='cont-sub'>$EMBED_HOME</div>
     <div id='desccont-sub'><p>$CHAMADA<p></div>
     <fb:like href='$embed' send='false' layout='button_count' show_faces='false'></fb:like>
     </div>

     ";
     }
     else
     {
     echo "
     <div id='sub1-2'>
     <div id='title-cont-sub'>$TITULO</div>
     <div id='cont-sub'>$EMBED_HOME</iframe></div>
     <div id='desccont-sub'><p>$CHAMADA</p></div>
     <fb:like href='$embed' send='false' layout='button_count' show_faces='false'></fb:like>
     </div>

     ";
     }

     $contador = $contador + 1;

And here the page online, the 3st and the 5th likes doesn't work, all the others are working fine: online page

Some ideas? Thanks!!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.