我使用的是facebook fanbox而不是likebox因为fanbox有css属性。 我嵌入了这个js文件:
<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/cs_CZ"></script>
cs_CZ shoud已经改变了我的语言环境设置,翻译我的fanbox但没有任何反应。是否有可能改变我的fanbox的语言(我知道它已被弃用,但无论如何......)
由于
答案 0 :(得分:1)
我知道它已被弃用但不管...... ......呃,是的。那。
它已被替换为Like按钮/框(前一段时间),它确实采用了语言环境。
如果旧的,已弃用的插件不再使用区域设置,则它们已禁用该功能。
答案 1 :(得分:0)
好的,我懂了! 实际上,你必须将旧API与新API混合(想知道这将有多长时间;))
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({ appId: 'yourPageIdHere', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/cs_CZ/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<fb:fan profile_id="yourPageIdHere" stream="1" connections="0" logobar="0" width="280" css="your.cssfilehere?1"></fb:fan>