• Hi there!
    Is there a way I can hide the featured images from appearing on my main posts page (titled “Blog”)? I have a plugin that lets me hide them individually within the post, but I dont want them to show up on my recent blog posts page.
    Thanks so much!
    website is https://www.thehouseofyum.com

Viewing 1 replies (of 1 total)
  • Try adding this custom CSS. In addition to hiding the featured image you also need to add a margin to the read more link so the next post title doesn’t overlay it:

    /* hide post featured images on Blog page */
    .blog .post-thumbnail {
        display: none;
    }
    /* add margin to Read More link */
    p:last-child {
        margin-bottom: 10px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Hide Featured Images from Main Posts Page’ is closed to new replies.