Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

5 Posts
2 Users
1 Reactions
2,462 Views
Posts: 4
Topic starter
(@dean100)
Active Member
Joined: 7 years ago

Hi,

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

Regards,

4 Replies
Sofy
Posts: 5483
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 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: 7 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: 5483
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 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: 7 years ago

Thank you 🙂Â