Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor niccolo_tapparo

    (@niccolo_tapparo)

    This is a Facebook issue, WP Social Ring doesn’t manage publishing. Try to ask to facebook support.

    BillyAtStudioPretty

    (@billyatstudiopretty)

    @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

    Michael

    (@alchymyth)

    @billyatstudiopretty

    per forum rules, please start your own topic

    BillyAtStudioPretty

    (@billyatstudiopretty)

    @alchymyth

    Ok, sorry.

    Okay.jpg

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘SR – FB Like not shown on Facebook’ is closed to new replies.