Nov 16, 2018 4:19 pm
Hi Team
Is there any way using css to remove the post date info that is shown on my forums?
Part of my problem is that I have cross posted over a lot of important archived content, some of which is displaying as postedΒ 7 years ago.Β Some users may view the date as indicating my forums are not very active when in reality it is.
Is there a simple way to turn this off please?
Β
1 Reply
Nov 17, 2018 9:37 am
Hi @studio500,
The following CSS should hide the date. Please navigate to Dashboard > Forums > Settings > StylesΒ >Β Custom CSS Code textarea, save it delete all caches, do CTRL+F5 on frontend.Β
.wpforo-last-topic-date {
display: none !important;
}
span.wpf-last-post-by {
display: none !important;
}
#wpforo #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top span{
display:none !important;
}