Remove Featured Image from the Product Gallery in WooCommerce

Remove the featured image from the product gallery if using WooCommerce on your child site.

Snippet Type

Execute on Child Sites

Snippet

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;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.