Introduction
Hiding featured image in blog posts is not available as a built-in option in BuddyBoss. If you prefer a cleaner blog layout without featured images on blog archives or single posts, you can achieve this using a simple CSS workaround in BuddyBoss.
Custom Workaround
Follow the steps below to hide featured photos in blog posts.
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Add the following CSS code:
.blog .post .entry-img,
.single-post .post .entry-img {
display: none;
}- Click Save changes
If this is a feature you would like to see added natively, you can submit your suggestion on our roadmap page:
https://buddyboss.com/roadmap
Troubleshooting and FAQs
Q: The featured image is still showing after adding the CSS. What should I do?
A: Clear your site cache, browser cache, and any CDN cache. Also confirm the CSS was added under BuddyBoss Theme Options and that CSS is enabled.
Q: Will this hide featured images on both the blog list and single post pages?
A: Yes. This CSS hides featured images on both blog archive pages and individual blog posts.
Q: Can I hide featured images only on single posts or only on the blog list?
A: Yes. You can remove either .blog .post .entry-img or .single-post .post .entry-img depending on where you want the images hidden.
Q: Does this affect uploaded images inside the post content?
A: No. This only hides featured images. Images added inside the post content will still display normally.
Screenshots
Without code

With code
