• Hi, I am using yith gift card plugin (free version) and I would like to change the url of the call to action included in the email that the person receive. Actually the call to action “apply your gift card code” send me to a product page which is strange. Thanks !

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    In order to achieve what you need, please add the following code in the functions.php file of your active child theme:

    if ( ! function_exists( 'yith_ywgc_email_automatic_cart_discount_url' ) ) {
    function yith_ywgc_email_automatic_cart_discount_url() {
    return 'your_custom_url';
    }
    add_filter( 'yith_ywgc_email_automatic_cart_discount_url', 'yith_ywgc_email_automatic_cart_discount_url', 99 );
    }

    There you just have to replace “your_custom_url” with the link you want.

    Could you check it, please?

    Best regards.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.