Issues getting certain product images to show in emails
-
I’ve been having difficulties getting certain product images to show in the customer-rfq emails in the latest version(s). I have this snippet that adds product images to all emails here:
function w3p_add_image_to_wc_emails( $args ) { $args['show_image'] = true; $args['image_size'] = array( 250, 250 ); return $args; } add_filter( 'woocommerce_email_order_items_args', 'w3p_add_image_to_wc_emails' );
I also use Product Configurator for Woocommerce, which allows certain products to be configured. However, customized products don’t show up with images in the email, seen here:
First two products in the table above are configured, while the third is just a stock product.
This worked back in 2023 when I last checked, so I rolled back the NP Quote Request plugin to 1.9.114 and the images work again, so something changed in one of the recent versions that broke the email product images. Any chance you could fix this?
- The topic ‘Issues getting certain product images to show in emails’ is closed to new replies.