Show product images in emails in WooCommerce

Show product images in emails in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_email_order_items_args', 'wc_order_with_product_images', 9999 );
 
function wc_order_with_product_images( $args ) {
   $args['show_image'] = true;
   return $args;
}

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