I would like to find that out as well.
Hey,
You can use a filter in Woocommere to control this, this can be added in a child theme or in a code snippet plugin. For example:
function custom_change_woo_email_image_size( $args ) {
$args['image_size'] = array( 160, 160 );
return $args;
}
add_filter( 'woocommerce_email_order_items_args', 'custom_change_woo_email_image_size', 20 );
Ben
Thanks so much. Amazing plugin!
Hi, how are you getting product images in your emails? Is there an option for this on the Kadence WooCommerce Email Designer plug-in?
Hey,
There isn’t an option, you would have to filter the standard output from woocommerce.
For example the code I posted above.
You can add that using a codesnippet plugin like this: https://wordpress.org/plugins/code-snippets/