Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter ChEeTaH182

    (@cheetah182)

    and the FB Login Button is not displayed on the profile page

    Plugin Author Heateor Support

    (@heateor)

    When opening the profile page, Googles DevConsole says:
    Uncaught ReferenceError: theChampFbIosLogin is not defined connect.facebook.net/de_DE/sdk.js:88

    Thanks for reporting it. We will look into it and fix it in upcoming release.

    and the FB Login Button is not displayed on the profile page

    It happens due to load timing issues related to Facebook API. To fix it, place following code at the end of “wp-content/themes/CURRENT_THEME/functions.php” before ?> (if ?> is not there, simply place the code at the end of the file) and save the file back. CURRENT_THEME is your active theme/child theme.

    function heateor_ss_facebook_linking_css(){
    	?>
    	<style type="text/css">
    	.theChampFacebookLogin{
    		display: block !important;
    	}
    	</style>
    	<?php
    }
    add_action('admin_notices', 'heateor_ss_facebook_linking_css');

    Regards

    Thread Starter ChEeTaH182

    (@cheetah182)

    Thanks, it worked!
    But now i can’t disconnect my Facebook Account from my profile. It is the only one connected with my wp profile. Is ist possible to delete all links to social accounts?

    Plugin Author Heateor Support

    (@heateor)

    You cannot disconnect the social account you used to register (first social login) at website.

    Thread Starter ChEeTaH182

    (@cheetah182)

    I created the user by registering via wp with email and pw. So it is still not possible to unlink from facebook, although the user wasn’t created with a social registration?

    Plugin Author Heateor Support

    (@heateor)

    No, it is not possible to unlink the first social account user links to their profile. We will improve this in upcoming releases.

    Thread Starter ChEeTaH182

    (@cheetah182)

    Ok, thank you for your help and this awesome Plugin! ??

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Uncaught ReferenceError: theChampFbIosLogin is not defined’ is closed to new replies.