-25%
Original price was: $19.99.Current price is: $14.99.
You save
// Source - https://stackoverflow.com/a // Posted by LoicTheAztec, modified by community. See post 'Timeline' for change history // Retrieved 2025-12-05, License - CC BY-SA 3.0 add_filter('woocommerce_single_product_image_thumbnail_html', 'remove_featured_image', 10, 2); function remove_featured_image($html, $attachment_id ) { global $post, $product; $featured_image = get_post_thumbnail_id( $post->ID ); if ( $attachment_id == $featured_image ) $html = ''; return $html; }