Introduction
When displaying members by a specific profile type using a shortcode, BuddyBoss shows a notice that says “Viewing all members who are …”. BuddyBoss does not include a built-in option to hide this text. You can use a simple CSS snippet to remove the message and keep the page layout clean and focused on the member list.
Custom Workaround
- In your WordPress admin, go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Add the following CSS:
div.bp-feedback {
display: none !important;
}- Click Save Changes
Troubleshooting and FAQs
Q: The text is still visible after adding the CSS. What should I check
A: Clear your site cache, including any caching plugin or CDN. Also make sure the CSS was pasted correctly and that Enable CSS was turned on before saving
Q: Will this hide other important notices on my site
A: Yes. This CSS hides all elements using the bp-feedback class. If you rely on other BuddyPress feedback messages, you may need a more specific selector
Q: Does this affect the members directory functionality
A: No. This change only hides the informational text and does not affect filtering or displaying members
Q: Who can I contact for further help
A: You can submit a support ticket through your BuddyBoss account dashboard for personalized assistance
Screenshots
Without code
With code