Featured image on .single-post issue

I’m using

.single-post .entry-featured {
display:none;
}

to try to hide the featured image on individual posts (with it still being visible on the main blog page in a masonry layout).

However, it doesn’t seem to be working, I can only get it to hide the featured image on both the post and the blog page itself.

The site is thinkalt.co.uk/blog

Thanks in advance for advice on how to fix this.

Hey @danmcdevitt,

Please update the code to X > Theme Options > CSS:

.single-post .entry-featured,
.blog .entry-featured {
    display: none;
}

Hope this helps.

Thanks - I’ve tried this but it’s just not working. The featured post is appearing on the individual blog post still. Is there anything specific I’m missing?

Hello Dan,

Thanks for updating the thread.

Looks like you are using default WordPress editor to create posts and the image that’s showing at the top is essentially not a featured image. However, try using following CSS under X > Theme Options > CSS:

figure.wp-block-image {
    display: none;
}

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.