Hide Tag posts

Posted in: Newspaper
Post count: 34

There are two tags that I want to hide from the posts: “Games Videos” and “Entertainment Videos”.

Here you can see the tag Games Games: http://leveltoday.com/elite-dangerous-coming-ps4-ps4-pro-support-2017/5897/

And here’s the other tag Entertainment Videos: http://leveltoday.com/new-star-wars-rogue-one-footage-premieres/5924/

I could provide a CSS code to achieve it, looking for the forum I found the following code, but it did not work:

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

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

Post count: 22421

Hello,

That code will not work in tour case. The thing is, css will not be able to recognize which tag is which. You can remove a tag just by it’s position in the list. The first one, the second one, the third one, and so on…but what if the tag you want to remove is not always in that position? CSS cannot remove a tag by it’s name because tags do not have particular classes to be removed particularly.
If you want ohide tags it;s best to simply hide them from the theme panel: http://screencast.com/t/l6fHvuYVIl or remove the tag from the specific post.
You cannot remove the tags using css as it will affect all posts and it will remove the position not the tag. ANy tag that will be in that particular position will be removed.

Thank you!

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