Topic starter
01/08/2019 10:38 pm
I am using bbPress forum in my website. It works good but it looks bad with unneccessary columns “VOICES” “POSTS” and “FRESHNESS” columns. It will be good to display only the topic title in the forum as designed in the WPMU DEV support forum.
Is there any option in bbPress settings panel to do this or give me the way by which i can do this?
Topic starter
01/08/2019 10:40 pm
Copy the below code and add it to your website’s child theme stylesheet or custom CSS. If you have any cache plugins, please clear the cache and refresh the page.
// To hide VOICE, REPLY and FRESHNESS columns in bbPress - by SpyTM.com li.bbp-topic-voice-count { display: none !important; } li.bbp-topic-reply-count { display: none !important; } li.bbp-topic-freshness { display: none !important; } // End
Topic starter
13/08/2024 10:55 pm