How to hide category from homepage?

Posted in: Newspaper
Post count: 36

Hi, I like to hide Category and autor from post in homepage and archives and maybe also Date. Please how to do it?
IMG

  • This topic was modified 11 years by Kusi.
Post count: 6600

Hi,

You can hide them via css, if you want to hide the whole meta info you can use this custom css into the custom css field in theme panel:

.archive .meta-info, .home .item-details .meta-info  {
display: none;
}

or you can target the category/author/date/views & comments count individual like this and hide them:

.archive .meta-info .td-category, .archive .meta-info .td-block-author, .archive .meta-info .entry-date, .archive .meta-info .entry-comments-views,
.home .item-details .meta-info .td-category, .home .item-details .meta-info .td-block-author, .home .item-details .meta-info .entry-date, .home .item-details .meta-info .entry-comments-views {
display: none;
}

Hope this helps!
Thanks

Post count: 36

Thank you. It works 🙂

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