Notifications
Clear all

wpForo 1.x.x [Closed] Removal of post date indicator for freshness?

2 Posts
2 Users
1 Likes
31.4 K Views
NSH
Posts: 96
 NSH
Topic starter
(@studio500)
Estimable Member
Joined: 7 years ago

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?

 

Topic Tags
1 Reply
Sofy
Posts: 4233
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

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