[Resolved] Hide pictures from blog

Home Forums Support [Resolved] Hide pictures from blog

Home Forums Support Hide pictures from blog

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #268054
    Dominic

    Hi there,

    I’m using WP Show Posts to display my latest blog articles on my homepage, see: https://dominicpratt.de/

    Is it possible to hide the picture from the article on the homepage, without removing it from the article? Just to make clear, what I mean: I want to remove these pictures only from the homepage of my website:

    #268058
    Tom
    Lead Developer
    Lead Developer

    Inside the WP Show Posts options you can uncheck the “Images” checkbox in the Images section.

    #268060
    Dominic

    Well… this would be to easy – it doesn’t work.

    Yes, I cleared the autoptimize-cache.

    #268064
    Tom
    Lead Developer
    Lead Developer

    That doesn’t look like the images section?

    It might be inside your actual content, in which case you could do this:

    .wp-show-posts-inner img {
        display: none;
    }
    #268074
    Dominic

    Damn, sorry, wrong screenshot. Yes, the pictures are inside my content, so I had to add the CSS snippet.

    Thank you so much! πŸ™‚

    #268086
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

    #274203
    Dominic

    Howdy Tom,

    somehow that’s not working anymore on one of my blog articles: https://dominicpratt.de/

    The other articles (e.g. Tutorial: Bloonix mit Let’s Encrypt-Zertifikaten) are shown correct without picture… strange!

    #274205
    Dominic

    Huh, the problem seems to be the picture description. When I remove the description it’s correctly removed from the homepage… any idead how to solve this also? πŸ™‚

    #274261
    Tom
    Lead Developer
    Lead Developer

    This should do it:

    .wp-show-posts-inner img,
    .wp-show-posts-inner .wp-caption {
        display: none;
    }
    #274578
    Dominic

    That works, thank you!

    #274621
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.