• Resolved manticarodrigo

    (@manticarodrigo)


    It would be great to be able to add product thumbnails to the order quote & invoice. Is this currently possible?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author pinal.shah

    (@pinalshah)

    Hi @manticarodrigo,

    Thank you for the review ??

    Currently, the plugin email templates do not add product images for the products. However, if you wish to add the images, it is fairly simple to achieve the same.

    These email templates can be customized the same as any of the WooCommerce email templates.

    Please copy the email template using the WooCommerce->Settings->Emails->Send Quote->Copy file to theme button into your theme folder. Once done, you can customize the email template as desired.

    Updating the plugin to future versions will ensure that the customized copy is not overwritten.

    I hope this helps. Please let me know in case if you have any further queries.

    Thanks,
    Pinal

    Thread Starter manticarodrigo

    (@manticarodrigo)

    Thanks @pinalshah, that should do the trick!

    Thread Starter manticarodrigo

    (@manticarodrigo)

    If anybody else is wondering how to achieve this, all you need to do is find the places that call echo $order_obj->email_order_items_table( $args ); and add to the $args object like so:

    
    $args = array( 
    'show_download_links' => $downloadable,
    'show_sku' => false,
    'show_purchase_note' => true,
    'show_image' => true,
    'image_size' => array( 50, 50 )
    );
    
    Plugin Author pinal.shah

    (@pinalshah)

    Thanks for adding the code here @manticarodrigo.

    Pinal

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Email Templates’ is closed to new replies.