Remove article date on homepage

Posted in: Newspaper
Post count: 181

Hello,

How do i remove the date displayed on the homepage under each article?

I only want it disabled for the homepage – I still want the date showing on the article/post itself.

Any custom CSS for this?

Thanks,

Post count: 23312

Hello Gee95,

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

The code is ->

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

Thanks.

Post count: 181

Thank you, works a treat 🙂

Post count: 181

Is it possible to also remove this in the sidebar and category pages too?

Just so it only shows the date on posts?

Thanks,

Post count: 6535

Hi

Try this code:

.category .td-module-date, .td-main-sidebar .td-module-date {
display:none;
}

Thanks!

Post count: 181

Thanks for this, it’s working! 🙂

Although, the is still showing after the author?

Anyway to remove it from homepage, sidebar and category?

Post count: 22421

Hi,
To remove the line, please add this code:
.td-post-author-name span{
display:none!important;
}

Thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.