Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter digitalcam

    (@digitalcam)

    Also, I do not have Excerpts selected.

    All I have selected are Pages and Posts.

    Plugin Author Heateor Support

    (@heateor)

    Hi there,

    To disable sharing at homepage, 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_disable_sharing_homepage($post, $content){
    	if(is_front_page()){
    		return 1;
    	}
    	return 0;
    }
    add_filter('the_champ_bypass_sharing', 'heateor_ss_disable_sharing_homepage', 10, 2);
    Plugin Author Rajat Varlani

    (@the_champ)

    This issue is fixed from version 5.4.2

    Thread Starter digitalcam

    (@digitalcam)

    Fantastic!

    You guys are great!

    Plugin Author Heateor Support

    (@heateor)

    Thanks for the compliment and review 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sharing icons displayed on Homepage’ is closed to new replies.