I found this thread about the single product page lightbox –> https://www.8theme.com/topic/lightbox-disable/#post-57521
1. deleted the following code from woo.php.
2. turned off the lightbox option in the theme options
3. turned on the lightbox option in the woocommervce
yet the lightbox is still not functioning properly, and also a little picture appears inside of the product picture?
// **********************************************************************//
// ! Remove Default STYLES
// **********************************************************************//
add_filter( ‘woocommerce_enqueue_styles’, ‘__return_false’ );
add_filter( ‘pre_option_woocommerce_enable_lightbox’, ‘return_no’); // Remove woocommerce prettyphoto
function return_no($option) {
return ‘no';
}