Oct 11, 2018 2:10 pm
Hi,
How can I remove or hide the ( last post by XXX, X mins ago )
Regards,
4 Replies
Oct 11, 2018 2:22 pm
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;
}
Oct 12, 2018 7:38 am
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?
Sorry for any inconvenience caused.
Â
Â
Oct 12, 2018 9:07 am
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;
}
Oct 12, 2018 11:27 am
Thank you 🙂Â