How do I turn off author and date on category.

Posted in: Newspaper
Post count: 6

hey,

How do I turn off author and date on category.

Post count: 22421

Hi,
The author and date are added on the post itself and then grabbed by the other theme elements. If you want to hide it from a certain place, please provide more details to where you want the date removed from.
If a category page is what you are after, you can use this code to remove the author and date from all category pages:
.category .td-module-meta-info{
display:none!important;
}

Thank you!

Post count: 6

Hi, I would like to remove them from my homepage which is built with VC.

Post count: 22421

Hi,
If you want to remove them from the homepage, use this code:
.home .td-module-meta-info{
display:none!important;
}

Thank you!

Post count: 6

Hi, I figured it out, but when I use your CSS it removes padding-bottom and the tile sits at the bottom of the picture ie. Big Grid 1 and Block 14 it removes everything. If I may suggest, such things should be a turn on/off rather than custom CSS.

  • This reply was modified 10 years by yosoftware. Reason: typo
Post count: 22421

Hi,
The code removes the entire container. If you want to keep the container itslef and the padding for it, pleawse use this code:
.home .td-post-author-name, .home .td-post-date {
display:none!important;
}

Thank you!

Post count: 6

Hi,

seems we are getting there, one more thing, how do I remove comments count from Block 16?

Thank!

Post count: 22421

Hi,
The comment count can be removed with this code:
.td_block_16 .td-module-comments{
display:none!important;
}

Thank you!

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