I wanted to disable the zoom and also have the featured image trigger the lightbox. Someone gave me this code and it worked.
add_action( 'after_setup_theme', 'add_wc_gallery_lightbox', 100 );function add_wc_gallery_lightbox() { remove_theme_support( 'wc-product-gallery-zoom' );}