Support » Plugin: Kadence WooCommerce Email Designer » Product Images are not showing for Customer Processing Order email

  • Resolved mangtum

    (@malavikaprav)


    Hello,

    Product Images are not showing for Customer Processing Order email, they are showing for New Order Email.

    Thank you,
    Malavika

Viewing 15 replies - 1 through 15 (of 23 total)
  • Hey,
    Are you not seeing the images in the when you preview in the admin or are you creating an order on your site and not seeing there?

    Thanks!

    Thread Starter mangtum

    (@malavikaprav)

    Hi,

    When a customer places an order, he gets an email about his order which is regarded as ‘customer processing order’ email in woocommerce – that email does not have the images.
    When the customer places an order, the admin also gets an email which is regarded as “New Order” email in woocommerce. This email which the admin gets has the images.
    I have another plugin in which the store owner also gets an email about the new order, even that email does not have the images.

    I don’t see an option for attachment here, else I would have attached how the three emails look for the same order – one has the images, other two do not. (I understand if the other plugin email is out of your scope).

    Thank you

    Thread Starter mangtum

    (@malavikaprav)

    I wanted to add, when I view the email in the email customizer, I can see the images for ‘Customer Processing Order’ emails but when the customer actually gets the email there is none.

    Thanks

    Thanks for the information, I think after your comments and a couple tests I know what’s going on and should have a way to resolve it with the next update which should be out by tomorrow.

    Ben

    Thread Starter mangtum

    (@malavikaprav)

    Thank you Ben, appreciate your support.

    Thread Starter mangtum

    (@malavikaprav)

    Hi Ben,

    I am working on a multi-vendor site, in which the vendor also gets an email about their new order. After the recent update the Customer Processing Order email is getting the images but the email which the vendor gets still does not contain images. All the other settings of the designer are getting carried over to this email, except the image and that the content of the email is in a box as oppose to without box in other default woocommerce emails.

    If this is out of your scope, I understand.

    Thanks

    Which plugin is creating this email? Can you link to it? Is it open to see the code?

    Ben

    Thread Starter mangtum

    (@malavikaprav)

    I can provide access to the code. How do I send the credentials?

    Thanks

    Wordpress.org forum rules you can’t send access to your site.

    Can you tell me which multi-vendor plugin?

    Thread Starter mangtum

    (@malavikaprav)

    The plugin is WC Vendors.

    I looked at the plugins code. It’s using its own order details function to output for vendor emails.

    You would need to add this function to a child theme to enable images for that vendor email:

    add_filter( 'wcvendors_vendor_order_items_args', 'custom_add_wc_order_email_images', 10 );
    function custom_add_wc_order_email_images( $args ) {
    $args['show_image'] = true;
    $args['image_size'] = array( 100, 50 );
    return $args;
    }

    Ben

    Thread Starter mangtum

    (@malavikaprav)

    Sorry Ben, did not get a chance to test this and reply earlier. Thank you so much for the above code, it works.

    Thread Starter mangtum

    (@malavikaprav)

    Hello Ben,

    I added the code mentioned in https://wordpress.org/support/topic/product-images-not-aligned-correctly/ to make the name of the product appear beside the image in New Order email. Can the same be done for the vendor new order email output by wc vendors plugin?
    Also the vendor new order email has vertical columns separating the product, quantity and price values whereas the actual email template does not have these columns . All the emails, except the vendor email. do not have this vertical column and follow the template chosen.

    Thank you,
    Malavika

    I don’t use this plugin and don’t know all that it’s doing with emails. Can you send me a screen shot of what you are seeing?

    Ben

    Thread Starter mangtum

    (@malavikaprav)

    Ben, here is the screen shot.

    Thank you

Viewing 15 replies - 1 through 15 (of 23 total)
  • The topic ‘Product Images are not showing for Customer Processing Order email’ is closed to new replies.