• Resolved LPackman

    (@furnituresuppliesuk)


    Hello,

    We are currently testing your theme in a development site, so far we are very pleased with it as there seems to be a lot of customization options however please can you advise how to remove the slide-out gallery only on the shop loop without affecting the other hover elements.

    Or how to limit the number of images displayed in the slide-out gallery to reduce requests.

    Thank you ??

    • This topic was modified 4 years, 5 months ago by LPackman.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Please go to Appearance > Customize > woocommerce > Archive, and goto the product entry media option in the product section. From here you can change the different styles from the dropdown.

    Unfortunately, no option here to set the limit number for the image.

    If not resolved by the above, share the page URL to check the issue.

    Thread Starter LPackman

    (@furnituresuppliesuk)

    Dear @abhikr781,

    Thank you for pointing me in this direction,

    I have checked and only see product entry whilst the default product style is selected.

    I would like to use the hover style, please can you help me to remove the slide out gallery with hover option selected, is this possible please?

    Maybe you are able to provide a functions code to remove the slide-out gallery element so I am still able to use the hover option but simply without the gallery?

    many thanks for your time.

    Hi,

    I apologize for the delay.

    Please try to add the below CSS code from the Appearance > Customize, and check.

    .woocommerce ul.products li.product:not(.product-category) .woo-product-gallery {
        display: none;
    }
    .product-inner:hover .woo-product-gallery {
        left: 0 !important;
        opacity: 0;
        visibility: hidden;
    }
    .product-inner:hover::before {
    	left: 0 !important;
    }
    
    Thread Starter LPackman

    (@furnituresuppliesuk)

    No problem,

    Thank you so much for that, it’s just what I needed ??

    You are most welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Gallery on Shop Loop’ is closed to new replies.