• Hello,

    Awesome Plugin! It does almost everything I need to do upon installation and activation.

    However, there is one item I need help with.

    Could you provide any code or guidance in automatically generating and saving the Autologin Link when a new user account is created in WordPress.

    Please advise. I appreciate any and all help in this matter as this is a very important function I need for the site I am working on. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello ,

    I need to do the exact same thing for my project. Did you find your answer ?

    I’m okay for paying for the prestation to implement this fonction if someone is interested.

    Please let me know

    Thank you

    Hello,

    Thanks for the great plugin!

    I also need the same thing.

    A functionality to auto create the login link on account creation but only for certain user roles.

    For a project I’m building. I already created a custom add new user back-end page based on wp_insert_user() method to add users of a specific user role only.

    Would it be possible to trigger the login link generation in this part of user creation?

    wp_create_nonce(pkg_new_user_update_nonce_name($user_id));

    
    $userdata = array(
        	'user_login' => $user_name,
    	'display_name' => $user_display_name,
    	'user_name' => $user_name,
    	'first_name' => $user_name,
    	'user_email' => $user_name.'@test.com',
        	'user_pass'  => wp_generate_password( 8, false ),
    	'user_role'  => 'subscriber'
    		);
     
    	$user_id = wp_insert_user( $userdata ) ;
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Generate Link on New User Registration / Creation’ is closed to new replies.