Great plugin, great support
-
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.
- The topic ‘Great plugin, great support’ is closed to new replies.