Great, thank you for your help!
Yes, that’s correct.
The product gallery did start working again, but it opens the image in a light box. This is acceptable, but the ideal would be that when they click the image it becomes the ‘main’ image.
Since the gallery images are working again, my problem is technically solved. If it’s possible to do it that way I described above, I’d love to know how!
I do have this code snippet in place:
function sv_remove_product_page_skus( $enabled ) {
if ( ! is_admin() && is_product() ) {
return false;
}
return $enabled;
}
add_filter( 'wc_product_sku_enabled', 'sv_remove_product_page_skus' );