How to add DownloadProduct images to WooCommerce order emails
-
Hello.
I want to display the product image thumbnail in the email sent when purchasing the downloaded product.I want to display the product image thumbnail before the product name in the download table.
I want to know how to display it in the download table. I know the following method ↓
add_filter (‘woocommerce_email_order_items_args’, ‘iconic_email_order_items_args’, 10, 1);
function iconic_email_order_items_args ($ args) {
$ args [‘show_image’] = true;
return $ args;
}
Please tell me how.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to add DownloadProduct images to WooCommerce order emails’ is closed to new replies.