Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #730083

    Hi there!

    Is it possible to keep the Featured Image from displaying on the individual product page, but still show on the product grid on my main Shop page?

    Thanks in advance!

    #730219

    Hey kellymarie2001,

    Could you post a link to an example of your single product page so that we can take a closer look please?

    Best regards,
    Rikard

    #730242

    It’s a basic woocommerce setup. For our purposes, I want to be able to keep the Featured Image on the main Shop page like here:

    http://kriesi.at/themes/enfold/shop/

    But when you click on the product, like the link below that featured image isn’t a part of the product gallery.

    This request basically allows me to manage the thumbnail size of all my products on the main shop page so there’s a nice pretty product grid, then choose what photos display on the product detail page itself.

    Thanks!

    #730351

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .single-product-main-image a.woocommerce-main-image {
        display: none;
    }
    

    If that does not help, please post a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Best regards,
    Yigit

    #956603

    Is it possible to remove the featured image only for a specific product(s)?

    #956734

    Hey francisdelhaye,

    This should be possible, however depending on the amount of products, it could be quite tedious in execution.

    Best regards,
    Jordan Shannon

    #956741

    I just need to remove the featured image and gallery from one product.

    #956745

    Hi,

    How did you hide the images via css?

    Best regards,
    Jordan Shannon

    #958881

    Yes. used this code:
    .single .single-product-main-image.alpha {
    display: none;
    }

    #959189

    Hi francisdelhaye,

    Is it just one page where you need to remove the image and the gallery? Please remove the code given before and give us the link to just that one page, where you want those hidden.

    Best regards,
    Victoria

    #961568

    is this the info you need?

    #962176

    Hi francisdelhaye,

    You should be running at least php5.6.3 for the code to work properly. Please consider upgrading your php version.

    Best regards,
    Victoria

    #962748

    I just Updated to php version 7.2. Does that help?

    #963704

    Hi,

    Thanks for the update. The product image is already set to not display.

    .single .single-product-main-image.alpha {
        display: none;
    }

    Best regards,
    Ismael

    #963705

    Hi,

    Thanks for the update. The product image is already set to not display.

    .single .single-product-main-image.alpha {
        display: none;
    }

    Best regards,
    Ismael

    #963780

    Thank you. I am trying to hide the featured image in one product. This code hides the image from all products. How can I remove the featured image from a single specific product?
    Thank you

    #963830

    Hi,

    Please link us to the exact product you want to hide the image on.

    Best regards,
    Jordan Shannon

    #963839

    Product to hide featured image

    #963846

    Hi,

    You can target using product ID as following

    #product-522 .single-product-main-image.alpha {
        display: none;
    }

    Best regards,
    Yigit

    #966654

    Works PERFECT!! Thank you

    #966665

    Hi,

    I’m glad you got this corrected. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 21 posts - 1 through 21 (of 21 total)
  • The topic ‘Remove featured image on individual Product page’ is closed to new replies.