Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi there!

    You can try using the filter: password_hint

    In a functionality plugin you can do something like:

    add_filter( 'password_hint', function( $text ){
        return __( 'Hint: a good password is a good phrase', 'text-domain' );
    });

    Do note that if you are going to be using the code above that you are at least running PHP version 5.3 or higher so you don’t break the site.

    Thread Starter TheRealCJ96

    (@therealcj96)

    Thanks a lot for the help Jose. I copied that into the functions.php file, and it works perfectly now.

    Hi there,

    I have tried this too and it does work, however I see an error in my functions.php file saying there is a syntax error. Any thoughts on what that might be?

    Kitka

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