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

    (@heateor)

    Other similar plugins allow you to keep scrolling up so that the content at the very bottom of the page sits just above the social share buttons.

    Can you provide an example?

    Thread Starter robphat

    (@robphat)

    Sumome pushes the content up. See one of my other sites at https://preachnet.com/freeindeedhouston on a phone. You’ll see how when you scroll all the way down, you can keep scrolling until the site credits (the very bottom of the page) sit just above the sumome share buttons.

    But in Super Socializer, the page scrolls down only as far as the page content, leaving the site credits behind the social buttons on https://preachent.com/got-questions

    Plugin Author Heateor Support

    (@heateor)

    Okay, we got it.
    To fix this, add following CSS in Custom CSS option at Super Socializer > General Options page in admin area:

    .heateor_ss_bottom_div{height:40px;}
    @media screen and (min-width:641px){.heateor_ss_bottom_div{display:none}}

    And 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_sharing_div(){
    	?>
    	<script type="text/javascript">
    	jQuery(function(){
    		jQuery("body").append("<div class='heateor_ss_bottom_div'></div>")
    	});
    	</script>
    	<?php
    }
    add_filter( 'wp_head', 'heateor_ss_custom_sharing_div' );

    We will include this in next release of the plugin. So, don’t worry about losing these changes on plugin update.

    Thread Starter robphat

    (@robphat)

    Thanks for the great support, but that codes didn’t change anything. But it’s not really a big deal. It only covers my site credits, which I don’t care about. And since you’re fixing that in your next update, I can wait. When will that be?

    I really think this is a great plugin.

    Plugin Author Heateor Support

    (@heateor)

    Thanks for the great support, but that codes didn’t change anything

    It is not working because jQuery is not being loaded at your website, which was being loaded when we checked your website yesterday. You would like to check any changes you might have made, as this is breaking (OR might break) other things at your website.

    When will that be?

    Around next week.

    I really think this is a great plugin.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Social share buttons on mobile not pushing up content’ is closed to new replies.