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 know this is a common question but I haven't found any answers. I click the button but nothing happens. I've been using the linter and have all the og tags.

Here's my code (straight from the like button creator) and site:

    <iframe src="//www.facebook.com/plugins/like.php?href&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>

http://alexcieminski.com/index.html

Thank you.

share|improve this question

1 Answer

?href& This is the problem. You need to really put your url-encoded url here: ?href=%3A%2F%2F&

Also check out your page in the linter: http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Falexcieminski.com%2Findex.html

It says you should also specify the og:description too.

share|improve this answer
Thanks DMCS! Can you please explain the ?href& in more detail? I'm amateur here and didn't quite understand that. Thank you. – Alex Cieminski Apr 11 '12 at 4:40
The href is the URL you want to be liked. The easiest thing for you to do is to go back to the Facebook Like plugin page and regenerate the code for building the iframe code (ensuring you have the url specified so it can add it in) – DMCS Apr 12 '12 at 18:12
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:44

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.