Remove featured image from posts

  • Unknown's avatar

    Hello, I need to remove the featured image that is automatically appearing at the top of all my blog posts, while still preserving it in the query loop listing of published posts on my homepage. If there’s a way to do that, I would thank you forever! (CSS ideal)

    My blog is at https://jonellepatrick.me and I am using the Morden theme.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,
    Below CSS might work for you.

    figure.post-thumbnail {
        display: none;
    }

    Happy blogging :)

  • Unknown's avatar

    As upper code will hide all the featured image on your website, you can use below CSS which will hide the featured image on the post only.

    .has-post-thumbnail .post-thumbnail{
        display: none;
    }

    Thank you.

  • Unknown's avatar

    You are a genius! That second piece of code did exactly what I hoped it would do (and it’s good of you to put the other one up there for people who want to suppress all the featured posts.) Thank you SO MUCH!

  • Unknown's avatar

    I am having this same issue with the Byrne template. Can you tell me where I would paste either of those codes? I copied it into the Customizing Additional CSS but neither did anything to my post pages. Do I have to insert it into every post page somewhere?

    Thanks. 🙂

  • The topic ‘Remove featured image from posts’ is closed to new replies.