• Hi, can you please provide me with the CSS code for hiding the featured image from all Woocommerce pages on my site?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Typically you could add something like this to your Child Theme style.css file, or by using a Custom CSS plugin.

    .single-product .entry-thumbnail {
        display: none;
    }

    Please provide a link to your site so I can inspect further to see which images need hiding from view.

    Thanks.

    Thread Starter jason1984

    (@jason1984)

    Which image do you want to hide, the image under the “Descrizione prodotto” heading?

    #tab-description img {
        display: none;
    }
    Thread Starter jason1984

    (@jason1984)

    Guys, my apologies: I messed it all up. What I’m actually trying to hide from the woocommerce pages is the sidebar. Can you please provide a css code for my site that will allow me to hide the sidebar from woocommerce pages?

    .woocommerce-page .mh-sidebar {
        display: none;
    }
    .woocommerce-page #main-content {
        width: 100%;
    }
    .woocommerce-page.mh-right-sb #main-content {
        margin-right: 0;
    }

    This will make all WooCommerce pages to be full-width with no sidebar present.

    Hope this helps.

    Thread Starter jason1984

    (@jason1984)

    Thank you SO much!

    You’re very welcome.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Hide featured image from Woocommerce pages in MH Magazine Lite’ is closed to new replies.