• Resolved marsawp

    (@marsawp)


    Hi, I’d like to change the names of the form fields created for the YITH gift card product. I want to make it clearer for the user. For example, for the email field, I’d like it to say “Email of the lucky person .” Do you know where these forms can be modified? I’ve searched for the file via FTP in YITH and can’t seem to find it. Thanks a lot!

    The page I need help with: [log in to see the link]

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

    (@juaancmendez)

    Hello there,
    thanks for contacting us!

    To change this form label, please add the following code in the functions.php file of your active theme:

    if (!function_exists('ywgc_recipient_email_label_custom')) {
    function ywgc_recipient_email_label_custom() {
    return 'Your custom email label';
    }
    add_filter( 'ywgc_recipient_email_label', 'ywgc_recipient_email_label_custom', 99 );
    }

    Could you check it, please?

    Best regards.

    Thread Starter marsawp

    (@marsawp)

    Thank you so much, Juan ?? It works perfectly. Big hug!

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