Introduction
By default, BuddyBoss does not provide an option to hide the texts “Sub Forums” and “This forum category has …” on forum pages. Using a simple CSS snippet, you can remove these texts to make the forum layout cleaner and less cluttered.
Custom Workaround
Follow the steps below to hide these texts:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Append the following:
.bp-feedback.info,
.bb-sub-forum-title {
display: none;
}- Save changes.
Troubleshooting and FAQs
Q: Will this remove the subforums themselves?
A: No. Only the headings/texts are hidden. The subforums will still be accessible.
Q: The texts are still visible after adding the CSS. What should I do?
A: Clear your site cache and browser cache. If the texts still appear, submit a ticket to the support team for assistance.
Q: Can I hide these texts for specific forums only?
A: Yes. You can target a specific forum by using its unique forum ID in the CSS selector, for example:
#forum-123 .bp-feedback.info, #forum-123 .bb-sub-forum-title { display: none; }Q: Will this work on mobile devices?
A: Yes. This CSS snippet applies to all screen sizes.
Screenshots
Without code