• Hi Jeff And I saw what you did this solution to a request:

    function tml_template_redirect() {
    	if ( Theme_My_Login::is_tml_page( 'login' ) && is_user_logged_in() ) {
    		$redirect_to = 'YOUR URL HERE';
    		wp_redirect( $redirect_to );
    		exit;
    	}
    }
    add_action( 'template_redirect', 'tml_template_redirect', 8 );

    how can direct the user to the default theme lost password?

  • The topic ‘[Plugin: Theme my Login] Redirect Default Lost Password Theme’ is closed to new replies.