Introduction
By default, BuddyBoss does not provide an option to hide the List Filter on the Courses page. You can use a simple CSS snippet to remove the filter dropdown or list, which can help simplify the Courses page layout and improve user experience.
Custom Workaround
Follow the steps below to hide the List Filter:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Append the following:
#bb-course-list-grid-filters { display: none; }- Save changes.
Troubleshooting and FAQs
Q: Will this remove courses from the page?
A: No. The courses will still appear. This only hides the filter UI element.
Q: The filter is still visible after adding the CSS. What should I do?
A: Clear your site cache and browser cache. If the code is still not working, submit a ticket to the support team for assistance.
Q: Can I hide only certain filter options instead of the entire list?
A: Not with this snippet. Hiding specific filter options would require additional custom coding.
Q: Will this affect mobile view or only desktop?
A: This CSS affects all screen sizes. For mobile-specific changes, you may need to use a media query.