Remove product images in the order email in WooCommerce

Remove product images in the order email in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_email_order_items_args', 'remove_product_image_from_order_email' );

function remove_product_image_from_order_email( $args ) {
    $args['show_image'] = false;
    return $args;
}

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