我喜欢的框没有显示生成的代码。我已经阅读了这里的修复,有些提到将“profile id”更改为“id”,但是在我生成的代码中没有找到任何这样的代码 - 也修复了所有的&符号(我认为)...这是我有什么不起作用。我该怎么改变它?谢谢!我在这段代码中遇到404错误:
<iframe
src="http//www.facebook.com/plugins/likebox.php?href=http://www.facebook
.com/pages/Bluedawg-Design/70870858258;width=450;
height=590;colorscheme=light;show_faces=true;border_color;stream=
true;header=true" scrolling="no" frameborder="0" style="border:none;
overflow:hidden; width:450px; height:590px;"
allowTransparency="true"></iframe>
答案 0 :(得分:4)
你擦掉了太多需要的部件,而且&符号非常重要!
在:
导致问题后,您遗失了http
。
这是一个工作版本(在按原样尝试之前不要删除下一部分代码)
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FBluedawg-Design%2F70870858258&width=450&height=590&colorscheme=light&show_faces=true&border_color&stream=true&header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:590px;" allowTransparency="true"></iframe>
此代码完全由Web服务器提供服务,但如果从本地计算机打开(不通过HTTP或HTTPS提供),则无法正常工作,稍后只需将http:
放在//www.facebook.com
之前
答案 1 :(得分:3)
只需更改所有
http://
到
https://
这解决了这个问题我还在http://nerudo.mregi.com/social-widgets-twitter-flickr-and-fb-not-showing
上写了一篇关于它的帖子答案 2 :(得分:2)
嗨Facebook iframe(如框)不适用于个人资料或群组资料..请使用您的Facebook帐户或使用新的商业帐户点击Facebook底部的创建页面链接创建一个新页面...生成一个使用该链接的新代码,它将工作:)快乐编码
答案 3 :(得分:1)
好的,这真的很愚蠢,但它刚好发生在我身上:
关闭可能阻止Like Box的任何浏览器扩展程序!在我的情况下,Firefox中的“不要跟踪我”。
答案 4 :(得分:1)
我发生了同样的事情,这是因为我也安装了“不要跟踪我”。我禁用了它,没有其他问题。
答案 5 :(得分:0)
在iframe的src=
中尝试使用?href=http%3A%2F%2Fwww.facebook%0A.com%2Fpages%2FBluedawg-Design%2F70870858258
而不是未编码的版本。
所以现在整个事情看起来像是:
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FBluedawg-Design%2F70870858258&width=292&height=590&colorscheme=light&show_faces=true&border_color&stream=true&header=true&appId=127211380649475" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:590px;" allowTransparency="true"></iframe>
答案 6 :(得分:0)
这是iframe代码正常工作并由我在wordpress和magento上测试。
<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FEnter_Your_FB_ID_OR_USERNAME&width&height=290&colorscheme=dark&show_faces=true&header=true&stream=false&show_border=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:290px;" allowTransparency="true"></iframe>