Social media sharing bar

Hello, i have added the code i found on this forum in functions php for social media sharing buttons:
function x_add_social_sharing() {
if ( is_single() ) {
echo do_shortcode(’[x_share title=“Share this Post” facebook=“true” twitter=“true” google_plus=“true” linkedin=“true” pinterest=“true” reddit=“true” email=“true”]’);
}
}
add_action(‘x_before_the_content_end’, ‘x_add_social_sharing’);

It works but i have a funny e-mail icon, please check this post: https://jittysamsterdam.com/een-gesprek-met-angela/

Thanks!

found it! It is in my CSS because i need it somewhere else. Can i hide the e-mail icon in this social media sharing bar? Same goes for google+ share, starting april google+ is not active anymore. Can i hide it from the social media sharing bar?
Thanks

Hi there,

TO do that, you will just have to edit the shortcode that you added in the functions.php file and set the items to false if you want them no included like this:

[x_share title="Share this Post" facebook="true" twitter="true" google_plus="false" linkedin="true" pinterest="true" reddit="true" email="false"]'

Hope this helps.

Thanks!!! Works just fine

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.