• Resolved alisafang

    (@alisafang)


    Hi, I very like your plugin, but there are some questions.

    Firstly, the Name in {{products.cart}} includes product name, parent product sku, variation sku, attributes. Could I just keep the product name and delete parent product sku, variation sku and attributes? Because I thinks the name is too long and customers will not care about other informations.

    Secondly, is it possible to remove the link from {{products.cart}}. There are so many links in an email, which will be regarded as spam emails. So I think it is good to remove link from the Name, the product image. If we need a checkout link, we can just add an checkout botton with link, just like your template.

    Thirdly, the image thumbnail is too small, is it possible to make it larger.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @alisafang,

    Below is the custom code that you need to add to the “functions.php” file of your currently active theme. This will hide the SKU from the Product name in the abandoned cart reminder email.

    Path: <WordPress Installation Directory> / wp-content / themes / <Your active theme folder>/ <HERE>

    The code is:

    add_filter( 'wcal_email_sku', 'hide_sku', 10, 2 ); 
    
    function hide_sku( $sku, $product_id ) {     
    $sku = '';     
    return $sku; 
    }

    Once you will add the provided code at the respective place, please check and let us know whether the provided code snippet is working fine or not.

    Currently, it is not possible to remove the variation information and the link from the product name and image in the {{products.cart}} merge tag. However, I will discuss this requirement along with the thumbnail size requirement with the development team and will get back to you with an update of the same.

    Regards,
    Priyanka

    Thread Starter alisafang

    (@alisafang)

    Hi, thanks, the code snippet works. And I hope thumbnail size requirement will update soon. Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘some questions’ is closed to new replies.