Is it possible to remove the dates of posts on the forum?

Is there a way to remove the dates on forum posts? My forum has a lot of content, but posts are more sporadic… I don’t want to scare people away instantly

Something like this should work:

.post-info.post-date {
    display: none;
}

The timeline on the right will be still visible, but you will not see the date at the top right of the various posts

If you want to remove also the Activity column from the homepage (if the homepage is Latest) you can also add:

.activity.sortable.num, .num.age.activity {
    display: none;
}

If it’s Categories:

.topic-last-activity {
    display: none;
}
12 Likes

Thank you! This is brilliant!

3 Likes