Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi kacper3355,
    Please go to Dashboard > wpDiscuz > Colors and Background Tab
    And put this code in Custom CSS Code textarea:

    .share_buttons_box a:nth-last-child(2),
    .share_buttons_box a:last-child{ display:none; }
    Thread Starter kacper3355

    (@kacper3355)

    Thanks! That almost did the trick – I mean, after implying that code there’s a wide space between buttons and edit link. Maybe there’s some css to eliminate it?

    Here’s what I mean – http://i.imgur.com/8mp54SC.jpg

    [ No bumping please. ]

    Thread Starter kacper3355

    (@kacper3355)

    Can you help me with that?

    Plugin Author gVectors Team

    (@gvectors-team)

    Hi kacper3355,
    Put this in Custom CSS Code textarea as well:

    .share_buttons_box a:nth-last-child(3){ padding-right:10px; }

    Also put a small jQuery code in footer.php before <?php wp_footer(); ?> template tag like this:

    <script>
    jQuery(document).ready(function(){
        var span = jQuery('.share_buttons_box').html();
        span = span.replace(/&nbsp;/g, ' ');
        jQuery('.share_buttons_box').html(span);
    });
    </script>
    <?php wp_footer(); ?>

    We’ll make all share buttons optional in next wpDiscuz 3.0 version

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove VK and OK share buttons’ is closed to new replies.