Hide certain tags on post page

Posted in: Newspaper
Post count: 13

Hi,

I would like to check if it’s possible to hide the display of a specific tag on the post’s page. For example, I have yahoo as one of the tags but I would like to hide the display of that specific tag named “Yahoo”.

Thanks!Yahoo tag

Post count: 22421

Hello jethron.

The theme’s tag list does not have CSS classes to target a specific list element. It can be done using this code:

.td-tags li:nth-child(8){
display:none;

But it will always hide your 8th tag, weather it’s yahoo or something else. You can change this number to the tag you want (the first one, the second one, etc.) You cannot target a tag by it’s name. The easiest way is to remove the tag completely from WordPress.

I hope this helps.
Thank you!

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