É possível remover as datas dos posts no fórum?

Existe alguma maneira de remover as datas nas postagens do fórum? Meu fórum tem muito conteúdo, mas as postagens são mais esporádicas… Não quero assustar as pessoas instantaneamente.

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!