Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Heateor Support

    (@heateor)

    Hi there,

    It happens sometimes intermittently.
    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_custom_css(){
    ?>
    <style type="text/css">
    .theChampFacebookLogin{
         display: block !important
    }
    </style>
    <?php
    }
    add_action('wp_head', 'heateor_ss_custom_css');
    add_action('login_head', 'heateor_ss_custom_css');
    Thread Starter jpospina

    (@jpospina)

    Thanks so much!

    This code seems to have some errors: it broke my functions.php file, thus my site.

    After resetting everything and analyzing the code (which I failed to do before), I realized that a less invasive fix might be adding the following to the css:

    .theChampFacebookLogin{
         display: block !important
    }

    It worked for me! Please, let me know what you think.

    Thanks again for this awesome free plugin and your quick support.

    Plugin Author Heateor Support

    (@heateor)

    We tested that code before posting here. You might have posted at wrong place.
    If you have child theme, preferred way is to place the code in functions.php file or any CSS file in child theme folder. Else, what you have done is fine.

    Thread Starter jpospina

    (@jpospina)

    You’re right! I must have pasted it incorrectly the first time.

    Thanks for your guidance!

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Firefox Update erases Facebook Login (Icon)’ is closed to new replies.