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

Что-то вроде этого должно сработать:

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

Лента справа останется видимой, но вы не увидите дату в правом верхнем углу различных сообщений.

Если вы хотите скрыть также колонку «Активность» на главной странице (если главная страница — «Последние»), добавьте следующее:

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

Если это «Категории»:

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

Thank you! This is brilliant!