Remove Post Data and View Count from Some Categories

Posted in: Newspaper
Post count: 16

hi how to remove Post Data and View Count from Some Categories.

not just the whole content but just some.

thx for this cool theme

Post count: 3343

Hello,

Can be hidden via CSS and some code.
You can inspect a category page and take the selector http://screencast.com/t/IHu1zoRfx for each category and use like here:

add this to style.css to hide data on Fashion category.

.category-fashion .entry-date {
visibility: hidden !important;
}

to hide the view count edit td_module.php file located in \includes\content_builder folder and add this code:

&& get_the_category() == 7

like here where 7 is the ID of the Fashion category.
http://screencast.com/t/F0Nb5etqx

Post count: 16

thx will give a go

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