Date / Author stamp in Category setting

Posted in: Newspaper
Post count: 145

I don’t find a way to category wide removal of date stamp or author name. For example, is there any way to not show post dates on all posts in a particular category?

Post count: 23312

Hello bhadrabalaram,

If you want to do not display the author name and date in a particular category, you have to use a bit of CSS to hide it and target the certain category by its ID. Please try the code below and add it in Theme panel->Custom CSS area.

The code is ->

.category-16 .td-module-meta-info {
display:none;
}

The result you should see here -> http://screencast.com/t/TSQchLWtEqx -> http://screencast.com/t/SPVvyIb1m

Hope this helps and let us know how it goes!

Thank you for the message!

Post count: 145

Ok that should help. I guess this automatically becomes a feature for the wishlist 🙂

Post count: 145

I tried it and the author/date stamp disappeared from the thumbnails ( https://gyazo.com/0f278f2a78c742cac46de89b3450a491 ) but they still appear on the posts ( https://gyazo.com/2aaac313a09f1aeadd74bcf85c500efa ) Did something go wrong?

Post count: 23312

Hello bhadrabalaram,

The code that I gave you above, are applied only for the certain category but not only for posts. If you want to hide them on posts, you have to use another CSS code.

The code is ->

.td-post-title .td-module-meta-info {
display:none;
}

Hope this helps!

If is not what you mean, please provide more details about your desired changes so I will be able to provide a more accurate response.

Thank you for the message!

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