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'm using the following code for my like button

<fb:like id="facebook-like" href="http://mysite.com/index.php" layout="button_count" width="450" show_faces="false" font=""></fb:like>

Some users have experienced the like button not showing up. Noted in 3.6.17 but observed in other versions. I'm somewhat familier with the firefox iframe bug, but I was currious if anyone has any work arounds for the facebook like button.

share|improve this question

5 Answers

Can you try calling the like button like so:

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=195243810534550&amp;xfbml=1"></script><fb:like href="http://mysite.com/index.php" send="false" width="450" show_faces="true" font=""></fb:like>

And let me know if you're still seeing issues.

share|improve this answer
up vote 0 down vote accepted

This issue hasn't come up in a while. With FF3.6's browser share dropping and facebook giving out new like button code this issue really isn't an issue anymore.

share|improve this answer

Like buttons that are rendered with javascript (<div class="fb-like"/> and <fb:like/>) get height=0 if they are initially hidden (display:none).

To work around this, create the element with javascript after the container is displayed, and then run:

FB.XFBML.parse();

Example:

result.show();
var like_box = $(".fb-like-inactive", result);
like_box.removeClass("fb-like-inactive");
like_box.addClass("fb-like");
FB.XFBML.parse();
share|improve this answer
Thankyou! Great answer +1 – Justin Gingy McDonald Dec 23 '12 at 19:04

I'm still having this issue: not showing in firefox and safari, sometime, not even in chrome.

Feels more like a css problem. here is the site that I'm working on: please take a look at the homepage, I hid the flike underneath the subscribe button because of this problem.

share|improve this answer

This CSS solved it for me

.fb-like span, .fb-like iframe { height:25px!important; width:150px!important}
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.