Remove Featured Image From Post Page

Is there a way to remove the featured image from the top of each post page? we have added the following:

.wp-post-image {
    display: none !important;
}

And it works, however it causes issues with our blog plugin where it then does not display the featured image for posts in the main blog’s page, we only want to remove it from the single post page.

Thanks in advance.
-Eli

Hi there

Try this code:

.single-post .wp-post-image {
display: none !important;
}

and your code will work only in single post

That worked, thanks a lot @Noda! I really appreciate it.

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support