Hallo,
The “Enable lightbox” does not appear in the settings of Woocommerce (in Woocommerce/Settings/General). It does if I use for example the Twenty Thirteen theme.
I would like to disable the lightbox on product single page. Can I somehow add a filter in functions.php?
Or get the “enable”-checkbox to appear in the settings…
Best regards, Staff
I should mention that I tried Phil C’s solution to disable the lightbox:
http://wordpress.org/support/topic/replacing-woocommerce-lightbox
It works when using the Twenty Thirteen theme, but not with Enfold.
Best regards, Staff
Hi!
You can add this on your custom.css or Quick CSS to disable the lightbox on product image.
.woocommerce-main-image.zoom {
pointer-events: none;
}
Regards,
Ismael
Easier of course… Thanks!
Staff