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 an issue with the Facebook Like Box not displaying on a self-hosted Wordpres website, any ideas why this would be? I've successfully managed to add it to websites in the past, but it's simply not displaying and i literally don't have a clue as to why.

Help would be much appreciated.

Link: http://www.mostdealsforyou.com/

share|improve this question
Welcome to Stack Overflow. Kindly read the FAQ -- questions that require someone to visit another site to "see" the problem are frowned upon, not the least of which is because once you solve the problem, the evidence of the problem simply disappears. Instead, include screenshots so anyone else visiting this question can see the issue as it happened. Also, unless you have a specific reason to do so (expiring links, for example), please do not obfuscate your links using a shortener. Many people will not visit a link if they don't know the destination. – JimmyPena Jul 14 '12 at 23:59

2 Answers

up vote 0 down vote accepted

It appears that you have not embedded the JS in the site. According to the Facebook Documentation, you need to put this in as early as you can in the body:

<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>

And your code seems different than what Facebook generated for me:

<div class="fb-like" data-href="http://www.mostdealsforyou.com/" data-send="true" data-width="292" data-show-faces="true"></div>

Alternatively, you could just use an iFrame:

<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mostdealsforyou.com%2F&amp;send=false&amp;layout=standard&amp;width=292&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:80px;" allowTransparency="true"></iframe>

If you want to change the behavior of this just checkout Facebook's like button generator.

share|improve this answer
Hey, the code you added does work, but it isn't quite what i'm looking for. I want the exact same thing as per my website over at www.n8geeks.com, i really don't see what i could be doing wrong. The plugin i want to use is developers.facebook.com/docs/reference/plugins/like-box thanks! – Nikki Mather Jul 14 '12 at 0:12

For some reason the HTML5 version didn't work, the script didn't execute for whatever reason, using the iframe version fixed it. Thanks for the help!

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.