Hi @codeflex,
Currently, it is not directly possible to hide SKU from the reminder emails. However, we have created a custom hook using which you can hide the SKU from the reminder email.
?
Kindly add the below code in the “functions.php” file of your currently active theme. So the SKU will not be added with the Product name in the abandoned cart reminder email?.
Path to the file: <WordPress Installation Directory>/wp-content/themes/<Your active theme>/<HERE>
The code is:
function wcal_product_sku_callback( $wcal_product_sku ) {
return false;
}
add_filter( ‘wcal_product_sku’, ‘wcal_product_sku_callback’, 10 , 2 );
Once you add the code at the respective place, please check and let us know whether the provided code snippet is working fine or not.
Regards,
Priyanka