Ugly text in customer email when product image is shown
-
Hi, I’m using follwoing code to add product images to customer emails:
function my_code_modify_wc_order_emails( $args ) { $args['show_image'] = true; $args['image_size'] = array( 100, 100 ); return $args; } add_filter( 'woocommerce_email_order_items_args', 'my_code_modify_wc_order_emails' );
Resulting emails look not that good. Product name is displayed to the right of product image, while product attributes are shown below product image. This already looks suboptimal. But if product name is rather long things get even worse because second row of product name is shown under product image as well although there’s plenty of space to the right of image. Please have a look at this screenshot – https://gyazo.com/dc2dd22751ea38e95ebc6c5690f7f9b0
Please help me to make this look better. Placing all the text to the right of product image would be an ideal solution.
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Ugly text in customer email when product image is shown’ is closed to new replies.