Remove share buttons and related articles only in some posts

Posted in: Newspaper
Post count: 18

Hi,

Is there any chance that I can remove the share buttons an the related articlesonly in a few posts and leave them in the rest?

Thanks.

Post count: 20688

Hi,

The easiest way would be to hide these elements with CSS on the posts you mention. You can use the post unique ID and create a code to remove the sharing and also related articles just for those posts. Like in this example
https://www.screencast.com/t/ux94lD9ks6
https://www.screencast.com/t/IszaczKLlZYH
https://www.screencast.com/t/TXwtMUPfB4
Use the post Ids you want in the code, and it will remove the sharing and related articles only in them. Enter the code in Theme panel->Custom CSS section

.postid-18093 .td-post-sharing,
.postid-18093 .td_block_related_posts {
display: none;
}

The post Id can be found either with the browser inspector for example, or in the WordPress posts edit screen
https://www.screencast.com/t/n7hX9419
There are also other ways.

Thanks

Post count: 18

Thank you very much for your help, the support in this theme is great.

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