Notifications
Clear all

wpForo 1.x.x [Closed] How to hide last post by

5 Posts
2 Users
1 Likes
2,183 Views
Posts: 4
Topic starter
(@dean100)
Active Member
Joined: 6 years ago

Hi,

How can I remove or hide the ( last post by XXX, X mins ago )

Regards,

4 Replies
Sofy
Posts: 4303
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @dean100,

Use the following CSS code, put it in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, save it, delete all caches, do CTRL+F5 on the frontend. 

#wpforo #wpforo-wrap span.wpf-last-post-by > a {
display: none;
}
#wpforo #wpforo-wrap .wpf-vsep {
display: none;
}
Posts: 4
Topic starter
(@dean100)
Active Member
Joined: 6 years ago

Hi,

I'm Sorry, I'm using the Simplified Layout, and the CSS code isn't working with Simplified Layout.

Is it possible to remove all Last post date and the columns?

https://imgur.com/a/rB1OyGz

Sorry for any inconvenience caused.

 

 

Sofy
Posts: 4303
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @dean100,

Please delete the CSS code I've provided in the previews post and put this one: 

#wpforo #wpforo-wrap .cat-lastpostinfo, #wpforo #wpforo-wrap .wpforo-last-post, #wpforo #wpforo-wrap .wpforo-last-post-avatar, #wpforo #wpforo-wrap p.wpforo-topic-start-info.wpfcl-2, #wpforo #wpforo-wrap .head-stat-lastpost, #wpforo #wpforo-wrap .wpforo-topic-stat-lastpost, #wpforo #wpforo-wrap .cbleft.wpfcl-0   {
display: none;
}
Posts: 4
Topic starter
(@dean100)
Active Member
Joined: 6 years ago

Thank you 🙂