How to hide date from Blocks but not Posts

Posted in: Newspaper
Post count: 12

Hello,

I would like to know how can I hide the date from block thumb previews here – http://imgur.com/rHiLYIa but still have it within the post. I tried to hide the date from Theme Panel> Post Settings but that removed it completely.

Thanks!

Post count: 23312

Hello mpdimitrov,

Please try the code below and place it in Theme panel->Custom CSS area.

.home .td-post-date {
display:none;
}

If you need more assistance in this regard or if the code is not applied for your website, please provide it so I will be able to provide a more accurate code.

Thanks for your understanding!

Post count: 12

Hi Catalin,

This code worked for the home page. Is there a code you can help me with to do the same for all the other category pages that you can navigate from the header menu (Market Sectors, Payments & Remittances etc.). The website is located here: http://fintechroundup.com/ and these pages are set up as category pages containing posts in the relevant category rather than custom page we have created. Thanks!

Post count: 23312

Hello mpdimitrov,

Please remove the code that I provide you above and try the below code. Now, the post date will appear only for post page.

.td-post-date {
display:none;
}
.post .td-post-dade {
display:block;
}

Hope this helps!

Thanks for your message!

Post count: 12

Brilliant! That worked. Thanks a lot for your help!

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