• The plugin works great. I had a question about changing the size (height / width) of images in the email. The response was very quick, courteous, and professional. Below is the code for functions.php in case anyone needs it:

    //
    // The woo_ca_email_template_table_style filter allows you to change the default styles of
    // product table & product image provided by WooCommerce Cart Abandonment Recovery plugin.
    //
    add_filter( ‘woo_ca_email_template_table_style’, ‘wcar_product_table_styles’, 10 );
    function wcar_product_table_styles( $style ){
    $style[‘product_image’][‘style’] = ‘height: 70px; width: auto;’; // change to custom value
    $style[‘table’][‘style’] = ‘color: #636363; border: 1px solid #e5e5e5; width:250px;’; // change if you need
    $style[‘table’][‘attribute’] = ‘align=”center” ‘;
    return $style;
    }

    Thanks.

Viewing 1 replies (of 1 total)
  • Plugin Support Aamir

    (@aamiribsf)

    Hello @kovacev,

    Thank you so much for your wonderful review and ratings.

    Reviews like these encourage us to put in more effort to serve you.

    Please feel free to get in touch if you need help with anything. 

    Thank you & Have a great day ahead!

Viewing 1 replies (of 1 total)
  • The topic ‘Great plugin, great support’ is closed to new replies.