• Resolved tunixtunix

    (@tunixtunix)


    Hi there,
    I’m trying to edit the message which shows up, after someone registered. The message says “registration completed. Please check your emails an go to login site” (or something like that, I have a german insatllation).

    Where can I edit this sentence?

    Thanks a lot
    Andy

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

    (@jfarthing84)

    add_filter( 'wp_login_errors', function ( $errors ) {
        if ( $errors->get_error_message( 'registered' ) ) {
            $errors->remove( 'registered' );
            $errors->add( 'registered', 'Your new message here' );
        }
        return $errors;
    } );
    Thread Starter tunixtunix

    (@tunixtunix)

    great, thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Where can I edit login messages?’ is closed to new replies.