Site logo

Archived topic

Remove featured image from home page

6 replies · Started by Anonymous on December 10, 2015

Viewing posts 1–7 of 7

Hi! I recently switched to this theme for a comic site I'm making. The site uses a plug in called Comic Easel to handle all of the comic stuff, but it's causing a problem with featured images. Comic Easel uses the featured image of each post as the comic page, but the theme was putting a second instance of the comic image in the blog post below on each page.

I saw this code recommend several times for people wanting to hide featured images:

.page-header-image-single {
display: none;
}

And that fixed the issue perfectly for my single pages, but my main page is still displaying two images. I'm a complete Wordpress beginner, so I'm not really sure what to change to make it work for the main page too?

Oh, and the website is here sorry. I thought it would include it since it was in the required info box to post.

Hi there,

This will hide it on all pages:

.page .page-header-image {
    display: none;
}

Let me know if that works for you or not :)

Never mind, I found this and it worked:

.home .wp-post-image {
display: none;
}

That would remove all content images on the home page - but it won't remove the featured image.

Oh, haha looks like you were already replying when I fixed it. Whoops.

Out of curiosity I tried the one you posted instead and it didn't work. I'm not sure why.

In that case the problem may be the images inside the content which you want to remove, so that block of code you posted will work great for that :)

This archived topic is closed to new replies.