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

    (@heateor)

    Hi Nacho,

    Yes, from this version sharing bar appears on mobile too and it has an slide in/out icon to hide/show it.
    If you do not want to show vertical sharing on mobile devices, 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">
    	@media screen and (max-width:783px){.the_champ_vertical_sharing, .the_champ_vertical_counter{display:none}}
    	</style>
    	<?php
    }
    add_action('wp_head', 'heateor_ss_custom_css');
    Thread Starter callandride

    (@callandride)

    Hello Heator,

    Thank you very much for your help!

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable Super Socializer for mobil devices’ is closed to new replies.