• Resolved Thomas

    (@goldenshawarma)


    Hi Diana,

    Thank you for your assistance on a previous matter.

    I have a question. Is it possible to change the login message during checkout?

    See Screenshot

    I want to change the text to something like:

    “If you have made an account with us, please login using your credentials. If you want to guest checkout and not make an account, choose Skip Login”

    Is this possible?

    Regards,
    Thomas

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    Hello Thomas,

    you can do that by adding the following PHP snippet to your child theme’s functions.php file, or with a plugin similar to Code Snippets:

    add_filter( 'woocommerce_checkout_logged_in_message', function($text) {
        return 'If you have made an account with us, please login using your credentials. If you want to guest checkout and not make an account, choose Skip Login';
    });
    Thread Starter Thomas

    (@goldenshawarma)

    Hi Diana,

    Thank you very much for your usual support

    See Screenshot

    Regards,
    Thomas

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