是否可以在论坛上移除帖子的日期?

有没有办法移除论坛帖子上的日期?我的论坛有很多内容,但发帖比较零散……我不想让人们立刻被吓跑。

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;
}

Thank you! This is brilliant!