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

    (@heateor)

    Hi,
    Thanks for the appreciation.

    To make Facebook icon appear, 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');

    I’m in local (MAMP) , could it be the reason ?

    It doesn’t load sometimes due to webpage load timing issues

    Thread Starter Padaben

    (@padaben)

    Awsome, it was exactly that.
    thank you very much

    Question, can I put this css directly in my style.css file ?

    Regards ??

    Plugin Author Heateor Support

    (@heateor)

    Yes, you can, but this change will be removed when you update your theme unlike the case when you place this code in your child theme.

    Thread Starter Padaben

    (@padaben)

    Yes, I do have child theme.
    thanks a lot
    regards

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Facebook doesnt show in social login’ is closed to new replies.