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 used facebook like box in the past with yahoo sitebuilder and never had any problem creating code from http://developers.facebook.com/docs/reference/plugins/like-box/ and pasting it to html box. Now with facebook changes it wont work any more.

past code: (works fine)

<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2F%23%21%2Fpages%2FCedar-Park-TX%2FPromotional-Product-Specialty%2F113782388677670&amp;width=292&amp;colorscheme=light&amp;connections=10&amp;stream=true&amp;header=true&amp;height=587" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:587px;" allowTransparency="true"></iframe>

new code: (doesnt work)

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FPromotional-Product-Specialty%2F113782388677670&amp;width=292&amp;height=590&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=true&amp;appId=306388216066339" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:590px;" allowTransparency="true"></iframe>
share|improve this question

1 Answer

I got this bug as well, what you have to do is put http: infront of the //www.facebook.com so it goes from this:

<iframe src=//www.facebook.com..........

to this:

<iframe src=http://www.facebook.com..........

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.