• I have placed the auto login script as per Jeff’s example. But the “New User Notification” emails aren’t being delivered to either admin or users. I have tried several hours to fix it, but it doesn’t work. When I omit the exit; from the code it did login the new user as well as send the notification e-mail, but the redirection was not happened at all. Could any one have any suggestion to solve that ? Thanks in advance.

    function auto_login_after_user_registration( $user_id ) {
        wp_set_auth_cookie( $user_id, false, is_ssl() );
        wp_redirect( get_option('siteurl') . '/after-registration/' );
        exit;
    }
    add_action( 'tml_new_user_registered', 'auto_login_after_user_registration', 11 );

    http://wordpress.org/extend/plugins/theme-my-login/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Did you figure this out? If so then can you please tell me? I’m also having trouble with this…

    Thread Starter dassoubarna

    (@dassoubarna)

    I don’t figure it out. I go for a different approach to resolve that problem without using “Theme My Login” plugin.

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Are you using any of TML’s modules?

    learningmind

    (@learningmind)

    I have the opposite problem: I would like to disable new user registration notifications and I can’t, I have already tried many things but I continue recieving the notification emails. The problem is that too many spammers register on my website every day and I get about 30-40 emails a day!!!
    Does everyone know how to stop it?
    Thanks!

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Moderators, please? See here and here.

    esmi

    (@esmi)

    @learningmind: Please post your own topic and stop tagging onto old topics.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Theme My Login] Something strange with Auto-Login script’ is closed to new replies.