Woocommerce | Remove image link on thumbnails
add_filter('woocommerce_single_product_image_html','remove_link_on_thumbnail' ); function remove_link_on_thumbnail($html){ return strip_tags($html,'<img>'); }
add_filter('woocommerce_single_product_image_html','remove_link_on_thumbnail' ); function remove_link_on_thumbnail($html){ return strip_tags($html,'<img>'); }