Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-product-images-order-email.txt
2023-05-04 14:40:31 -06:00

6 lines
205 B
Text

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