Hi. I appreciate the option to not display the featured image on single posts. But how can I hide the featured image on all pages? (I have a child theme I can alter as needed…)
How to Hide Featured Image on Pages?
Hi David
Thanks for posting.
You can add to Customize > Additional CSS or the alternative CSS location of your choice:
.page .entry-thumbnail {
display: none;
}Thank you! That worked perfectly.
Oh wait. OK, it worked, but it then hid featured images on my home page, in the post loop widget.
I would only like to hide featured image on the single page – if that makes sense.
.page:not(.home) .entry-thumbnail {
display: none;
}?
No, that did not work, unfortunately.
Here is a page with the top red image being a featured image that is automatically placed on the page – I would like this featured image to not display: http://www.petful.net/pet-food-recall-center/
And here is the home page with other “teasers” to posts. I would like the featured images to remain there (and in the sidebar carousel if possible): http://www.petful.net/
Thanks.
body.page:not(.home) .entry-thumbnail {
display: none;
}Thanks!
Super 🙂 Glad to hear that did the trick.
All the best.