• Resolved lverg

    (@lverg)


    The plugin works great and has helped quite a lot building my website!

    There’s only one small problem: everytime a user arrives at my login page, a welcome message and an error message are displayed (invalid uersname or password). How do I get rid of both the welcome and the error message?

    Thanks in advance

    http://wordpress.org/extend/plugins/new-user-approve/

Viewing 5 replies - 1 through 5 (of 5 total)
  • This has been corrected in version 1.3.3. Sorry about the inconvenience.

    Thread Starter lverg

    (@lverg)

    Thanks for the fix!

    One more thing: how do I hide the welcome message from the login page?

    add this in your theme’s functions.php file to remove the welcome message from the login page:

    function remove_welcome_message() {
    global $pw_new_user_approve;
    remove_filter( ‘login_message’, array( $pw_new_user_approve, ‘welcome_user’ ) );
    }
    add_action( ‘init’, ‘remove_welcome_message’ );

    Thread Starter lverg

    (@lverg)

    Thanks a lot! Login page looks much cleaner now! 😉

    Thanks for this great plugin Picklewagon, i’m very happy with this one!

    But I would like to remove the first welcome message only.
    What I noticed now (after I change themes.php), that all the messages will be gone.

    I only want the message on the login page to be dissapeared.
    For example: when a user registers, he has to get the message “After you register, your request will be sent..” and so on.

    From now all the notification messages are gone after changing the themes file.

    Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: New User Approve] messages on login page’ is closed to new replies.