Remove magnifying glass

Hi, I was wondering how I could disable the magnifying glass on product images.

Thanks

Hi There,

Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

Thank you.

Hi, I typed a secure not with that info. Please let me know if you have any questions.
Thanks

Hi There,

Please add this on Theme Options > CSS

.woocommerce-product-gallery__trigger {
	display: none;
}

Make sure to clear your caching plugin before previewing the site to apply the changes immediately.

Thanks,

Hi, that worked to remove the image, how can I disable the actually magnifying effect of the image.
Thanks

Hi there,

Please try this code:

img.zoomImg {
    display: none !important;
}

Hope this helps.

1 Like

Perfect. Thank you.

You’re welcome.