@niccolo_tapparo
I am having a similar problem, cause by facebook’s all.js returning this to the console:
FB.getLoginStatus() called before calling FB.init().
This is most likely because you aren’t loading the SDK asnchronously.
Can I suggest you try replacing
<div id="fb-root"></div><script src="https://connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1"></script>
in library.php (function add_footer_js()) with
<div id="fb-root"></div><script type="text/javascript">
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true
});
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = \"//connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1\";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
I would like to have done this myself but I cannot find an app ID anywhere.
Also, in function add_footer_js(), you should only load the scripts that are necessary – using
if($this->options['social_X_button'] == 1) {
//load script
}
Thanks in advance,
Billy
P.S please try and get back to me asap, thanks