Introduction
By default, BuddyBoss displays the post categories beneath each blog post. There isn’t a built-in option to hide this, but you can remove the categories section using a simple CSS snippet. This is helpful if you want a cleaner post layout without category labels.
Custom Workaround
Follow the steps below to hide the Categories section beneath posts:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Append the following code:
.single-post .post-meta-wrapper { display: none; }- Save changes
Troubleshooting and FAQs
Q: Will this hide categories on all posts?
A: Yes, this snippet hides the categories section on all single blog posts.
Q: Can I hide the categories only on specific posts?
A: Yes, replace .single-post with a specific post ID class. Example:
.postid-123 .post-meta-wrapper { display: none; }Q: The categories are still showing, what should I do?
A: Clear your site and browser cache. If the code is not working, submit a ticket to the support team for assistance.
Q: Will this affect other meta information like author or date?
A: No, this snippet only targets the categories section beneath the post.
Q: Can this be combined with hiding tags or other post meta?
A: Yes, you can target additional elements using similar CSS selectors.