• Resolved jikanv

    (@jikanv)


    Hi. How do a person who registers gets a confirmation. Right now when I register there is no pop up notification of “please check your email” or anything, the page just go back to the homepage after the registration button is clicked on.

    An email is sent to the person’s email address with the password link, but if he is not checking it he just stands there at the door not knowing why isn’t opening for him even though he had just registered. When he clicks the login button he gets a notification “only logged in users can access this page”.

    The email is OK, but there has to be a pop up notification or something that tells him to go and check his email to complete the login process.
    thanx very much

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    where do you register on your site? The only registration page i found is the page here http://petandstuff.com/wp-login.php?action=register, is that the one?

    If so then i allowed my self to test the registration (i registered as user with login “test” please delete this account), it looks like you have some plugin which redirects the user to home page after registration you would need to disable this redirect, although i cannot tell where to do that as this is not a default WordPress behavior.

    The default registration would show you a “successful registration” message on success and would not redirect you anywhere.

    One last thing i noticed you are using LoginPress plugin it allows setting redirections, so i would start looking for a place to disable the registration in this plugin settings.

    Thread Starter jikanv

    (@jikanv)

    Hi Greg
    Thanx very much for this excellent support. It was indeed a plugin called -Login Logout Register Menu plugin. Now it properly displays to the “Please check your email” after registration.
    Would you be able to tell me why the login redirects to site/wp-admin instead of the home page?
    thank you

    Thread Starter jikanv

    (@jikanv)

    Ok found solution by using this code in function.php

    /*
    *@title: Redirect to HomePage after Login
    */
    function redirect_user_homepage() {
    if ( is_user_logged_in() && is_admin() && !current_user_can( ‘administrator’ ) ) {
    wp_redirect( home_url() );
    exit;
    }
    }
    add_action( ‘init’, ‘redirect_user_homepage’ );

    Plugin Author Greg Winiarski

    (@gwin)

    Hi, ok thanks for the feedback, i am marking this thread as resolved then, maybe someone else will find it useful in the future as well.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Registration confirmation’ is closed to new replies.