Remove some social icons from share section in post

Posted in: Newspaper
Post count: 7

Is there a way to remove only google plus or pinterest icon from the share section that appears either at the bottom or top of the post/blog page? So that when user is reading a particular article i only want the user to share it to facebook or twitter.

Post count: 20688

Hi,

There is no theme option to do this in the post page, however you can find the file responsible in the theme here
https://www.screencast.com/t/IKwGM5T2
Then in the same file you can find the social sharing bottom for the post if you want to modify it as well
https://www.screencast.com/t/XW15bBKQE
You can remove the links pointing to these socials in that file for both the social sharing top and bottom.
Or you could hide them with css, like this – https://www.screencast.com/t/VfEllwfJwz
This is the code used in the example if you choose to use it, it must be entered in Theme panel->Custom Css

.td-default-sharing .td-social-google,
.td-default-sharing .td-social-pinterest {
display: none;
}

Thanks

Post count: 1

Thank you very much for for your answer Simion.

It would be great to add a way in the template settings to chose which media buttons to display inside our posts so that we avoid editing source files or adding custom CSS code.

many thanks again.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.