• Resolved meshaun

    (@meshaun)


    When I open the post on the Homepage, it first opens the Feature image which is unnecessary for my routine. How can I disable it?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @meshaun

    Can you please post in your site URL or theme you are currently using? It would be helpful for us to debug.

    Thank You!!
    CHEERS!!!!

    Thread Starter meshaun

    (@meshaun)

    Hello!
    Yes, my website is: meshaun.com | theme: Hitchcock

    As you can see, for all the posts with the feature image, as soon you get the post, the feature image is displayed too. I don’t want this to be displayed on the post page.

    Hi! I used the same theme so i can help you!

    You must go to css style and change code:

    .flexslider {
    	position: relative;
    	overflow: hidden;
    }

    to this:

    .flexslider {
            display: none;
    	position: relative;
    	overflow: hidden;
    }

    That’s all!

    Hi @meshaun

    You can try this CSS:

    .featured-media img {
        display: none;
    }

    Note: Please create and customize files of child theme, so your changes will not overwrite on theme update.

    CHEERS!!

    Thread Starter meshaun

    (@meshaun)

    @ migochi : Thank you for the reply but this still displays the image.
    @ sanjog: Many thanks because this worked 🙂

    I will now learn about Child Themes because I only edited the main theme for now.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove Feature Image showing up on posts’ is closed to new replies.