• Hi, I want to change the text that displays on the Reset Password page (new in 4.3) under the text entry box. The text currently reads:

    Hint: The password should be at least twelve characters long…

    Can someone help me?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Here is a function I use to change the password hint for protected pages:

    /* change password message for protected page/s */
    add_filter('the_content','change_pw_text'); /* modcheck moved to here from below return $content; */
    function change_pw_text($content) { $content = str_replace( 'This content is password protected. To view it please enter your password below:',
    'Hint: Tell our system to show you, and it will.', $content); return $content; }

    To do what you want, you will need to do something similar with this:

    https://core.trac.www.ads-software.com/changeset/33023/trunk/src/wp-includes/user.php

    Thread Starter mkb1967

    (@mkb1967)

    Thank you so much, you made it very easy for me!

    Hello,
    I have exactly same issue.
    mkb1967, could you please tell me what you did so solve this.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Lost Password Hint text’ is closed to new replies.