• Resolved Valmy

    (@valmy02)


    Hello,

    How can I change the merge tag?

    When there is a name it is like this -> Hi John
    And when there is NOT a name -> Hi there

    I want to change the ‘there’ to something else, is that possible?

    Thanks,

    Valmy.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support CartFlows Team

    (@cartflows)

    Hello @valmy02,

    Thank you for reaching out to us.

    Yes, it is possible using the custom filter provided in the plugin.

    Below is the custom code snippet to update the default first name string.

    add_filter( 'woo_ca_default_first_name' , 'wcar_change_default_string');
    
    function wcar_change_default_string( $string ){
    
    $string = 'Add your string';
    
    return $string;
    
    }

    Please add the above custom code in the function.php file of the child theme.

    Let us know how it goes.

    Thread Starter Valmy

    (@valmy02)

    Hi @cartflows

    I’ll try that code snippet, thank you for the solution and fast response.

    Plugin Support CartFlows Team

    (@cartflows)

    Hello @valmy02,

    You are most welcome.

    If you have any questions please feel free to ask.

    Have a great day ahead.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Merge tags [question]’ is closed to new replies.