我正在使用社交插件的 XFBML 我为此创建了弹出窗口并放置 XFBML 代码进行测试。Like Button 工作正常。点赞后发布到 Facebook 框未正确显示。我不确定为什么会这样。我附上了这个的截图
任何建议都会很棒。我在 Wordpress 网站上使用此代码。
提前致谢。
我正在使用社交插件的 XFBML 我为此创建了弹出窗口并放置 XFBML 代码进行测试。Like Button 工作正常。点赞后发布到 Facebook 框未正确显示。我不确定为什么会这样。我附上了这个的截图
任何建议都会很棒。我在 Wordpress 网站上使用此代码。
提前致谢。
Try to turn off "sending" and "show faces" functions for it. XFBML code should thendisplay the button look something like this:
<fb:like href="yoursite.com" send="false" layout="box_count" width="150" show_faces="false"></fb:like>
Other thing could be that the FB button is partially overlayed by another layer. Try to wrap the code above to <div></div>
, create a class for this div
like that <div class="myclass"></div>
and then use a z-index
css property like this:
.myclass {
z-index: 1;
}