How to remove featured images from posts?

Sandie2018

Power Member
Joined
Mar 26, 2018
Messages
699
Reaction score
338
Hi,

I want to hide featured images from all posts on my site.
I found a plugin that I can use to hide one featured image separately on each post but it would be a lot of work to manually hide all featured images from all posts.
Can anyone suggest a solution?
Thanks
 
Do you want to remove the featured image on each post?
I don't know what is your theme, maybe your theme have the setting on the 'Customize' tab
Or you can edit the template, just find the right file to edit
here is mine
 

Attachments

  • 1.jpg
    1.jpg
    13 KB · Views: 6
I use the Tribunal theme and in a free version there is no option to customise the featured images.
I tried the Quick Featured Images plug-in but when I removed all featured images (after making a backup first ), all the thumbnails were gone too. So, I just want to hide all the featured images from posts, so that the thumbnails remain.
I will read the article suggested and hopefully find the solution.
Thank you
 
If I understand right, your goal is to remove featured image from a post page, but not from homepage? So when you load the post itself you want it gone?
If that's the case:
.featured-image { display: none; }

If it doesn't work with that class, change "featured-image" to "page-header-image-single".
 
If you are using astra theme they have the option to remove featured images
 
go to theme editor and find the page of singlepost.php file and find the class of featured image, then display none it on header tag
 
Contact me at cyberseo@cyberseo.net and I'll modify any WP theme or make a https://developer.wordpress.org/themes/advanced-topics/child-themes/ (remove the featured images in single posts) for only $10.
 
If you are using wordpress, go to :: appearance => Customize => Additional CSS
Type this code:
.entry-thumbnail { display: none; }
 
WP Hide Show Featured Images plugin provides options to hide featured images from all posts and pages.
 
Back
Top