Hi, I used to display the product image thumbnail of the ordered items in the order confirmation mails by use of a snippet in the functions.php. For example:
function sww_add_photos_to_wc_emails( $args ) {
$args[‘show_image’] = true;
$args[‘image_size’] = array( 100, 100 );
return $args;
}
add_filter( ‘woocommerce_email_order_items_args’, ‘sww_add_photos_to_wc_emails’ );
With this snippet, the space of 100x100px is displayed in the confirmation email, but no image.
I tried several different snippets, also the snippet recommended by wordpress.org but none is working.
I was using the Avada theme before and here it was working fine.