Introduction
BuddyBoss does not provide a built in option to hide specific menu items on a group page. Hiding group menu items requires custom CSS and may affect both the appearance and functionality of the group navigation. If you are comfortable applying custom code, you can use the workaround below to hide selected menu tabs such as Photos, Albums, Documents, and Videos from group pages.
Custom Workaround
Follow the steps below to hide specific menu items on the group page:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Add the following CSS code:
.groups-nav li#photos-groups-li,
.groups-nav li#albums-groups-li,
.groups-nav li#documents-groups-li,
.groups-nav li#videos-groups-li {
display: none !important;
}- Click Save changes
This will hide the selected menu items from the group navigation while leaving the rest of the group tabs intact.
Troubleshooting and FAQs
Q: Which group menu items does this code hide?
A: This snippet hides Photos, Albums, Documents, and Videos from the group navigation.
Q: Will this delete group content such as photos or documents?
A: No. This only hides the menu links. All content remains available in the database and can be restored by removing the CSS.
Q: Can I hide only one specific menu item instead of all of them?
A: Yes. You can remove the corresponding line for the menu item you want to keep visible.
Q: Will this affect private or hidden groups differently?
A: No. The CSS applies equally to public, private, and hidden groups.
Q: Can this break future updates?
A: Since this relies on CSS selectors, future BuddyBoss updates that change class or ID names may require adjusting the code.