function remove_product_image_link( $html, $post_id ) {
return preg_replace( “!<(a|/a).*?>!”, ”, $html );
}
add_filter( ‘woocommerce_single_product_image_thumbnail_html’, ‘remove_product_image_link’, 10, 2 );
I would not have found it without your help
]]>