• Hello guys,

    i’m trying to hide the blogposts featured image in the post itself.
    Do you have any suggestions?

    Thanks in advance!

    Cheers,
    Carsten

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Do you want to hide the post featured image on blog page or single blog page ?

    If it is for blog page then don’t add featured image or want to hide only on single blog page then use the following CSS.

    .single-thumb {
        display: none;
    }

    Let me know if you need help with anything else!

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello carstenlux,

    => Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
    => If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_active_theme/ folder.


    /* Hide Post thumbnail on posts list */
    .entry-thumb {
    display: none;
    }
    /* Hide Post thumbnail on single post */
    .single-thumb {
    display: none;
    }

    Note : All Changes you done in style.css or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hiding Featured Image’ is closed to new replies.