• Resolved neoextratang

    (@neoextratang)


    I set featured images for posts and pages to have the preview on the landing page.
    But the image is showing in a weird size and I cannot customize the position of the image.
    Is there a way to hide the featured images on pages and posts?
    I tried a plugin called “hide featured images”, but it did not work.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @neoextratang

    You can’t move the featured image without creating a child theme off of Go. You can easily hide the featured image on pages and posts using CSS to just hide the images on single pages and posts.

    You can add the following to the ‘Additional CSS’ section of the customizer. You can navigate there from the dashboard by going ‘Appearance > Customize > Additional CSS’ and adding the following:

    body.singular.page .post__thumbnail,
    body.singular.post .post__thumbnail {
       opacity: 0;
    }

    Setting the opacity to 0 will hide the image and ensure the rest of the markup on the page displays correctly.

    The above snippet will hide the featured image on post and page single templates. They should still be visible on the blog list page and other locations.

    Let us know if that helps or if you need additional help!

    Hi @neoextratang

    If you are still encountering any issues, feel free to post back here and we can reopen this support thread and help out the best we can.

    Evan

    Hi
    I experienced the same problem as neoextratang, I tried to apply the change to CSS as you explained but nothing occurred.

    I need to remove the narrow banner which is a little section of the featured image only in the article page.

    It’s ok that this image appears as an icon for example in hp where I have a carousel of articles.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to hide the featured image on page or post’ is closed to new replies.