I need to remove the mouseover effect and the magnifying glass that links to the full size image. I’m using Beaver Beaver Builder’s Themer Product Image Module to insert the product image into a template.
I have attempted to remove per Woocommerce documentation, but it is not working, when I disaable GP Premium this code does work, so it must be a conflict somewhere with GP Premium:
add_action( ‘after_setup_theme’, ‘remove_wc_gallery_etc’, 20 );
function remove_wc_gallery_etc() {
remove_theme_support( ‘wc-product-gallery-zoom’ );
remove_theme_support( ‘wc-product-gallery-lightbox’ );
remove_theme_support( ‘wc-product-gallery-slider’ );