Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Rajat Varlani

    (@the_champ)

    Hi there,
    Would you let me know the url of the page where you are having this issue?

    Thread Starter m4nu3l

    (@m4n3)

    Hi!
    https://truztruz.pt

    Plugin Author Rajat Varlani

    (@the_champ)

    To disable sharing at homepage, disable Homepage and Excerpts in Sharing Location option in Vertical Sharing section at Super Socializer > Social Sharing page in admin panel of your website.

    Thread Starter m4nu3l

    (@m4n3)

    It works if a disable the options Homepage and Pages in the Vertical Sharing section ( admin panel) , but not if a only disable Homepage and Excerpts.

    Plugin Author Rajat Varlani

    (@the_champ)

    Place following code in the “wp-content/themes/CURRENT_THEME/functions.php” and save the file back.CURRENT_THEME is your active theme.

    function the_champ_disable_sharing_homepage($post, $content){
    	if(is_front_page()){
    		return 1;
    	}
    	return 0;
    }
    add_filter('the_champ_bypass_sharing', 'the_champ_disable_sharing_homepage', 10, 2);

    Above changes will not break with future updates.

    Thread Starter m4nu3l

    (@m4n3)

    It works but this way I can not enable the Social Counter in the homepage!

    Plugin Author Rajat Varlani

    (@the_champ)

    You can enable counter at homepage by enabling Super Socializer - Counter (Vertical) widget from Appearance > Widgets section in admin panel.

    Thread Starter m4nu3l

    (@m4n3)

    not working…
    Don’t worry, I use the Shortcode and some CSS – I edited the inc/shorcode.php to “align” it to the right.

    i’ve selected to not show the social counter on any page and have disabled it specifically on the page i don’t want it to show but it still shows up. i’m using this page as a signature at the bottom of my post and inserting it. if you go to https://rondeering.com/how-to-automate-your-blog-signature-block/ you will see what i mean. please help

    Plugin Author Rajat Varlani

    (@the_champ)

    @rondeering
    HI,
    Try disabling social counter at signature page from the Super Socializer section at the bottom of the Edit section of that page.
    If you still face issue, drop me an email at lordofthechamps[at]gmail[dot]com

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Disable sharing buttons for specific Page not working’ is closed to new replies.