Viewing 1 replies (of 1 total)
  • Plugin Author adispiac

    (@adispiac)

    Hi,

    We actually have a filter in place which you can use to set the username the same as the email address, in case you login with Email only: wppb_generated_random_uername.

    function wppb_same_username_as_email($username, $email){
        $username = sanitize_email($email);
        return $username;
    }
    add_filter('wppb_generated_random_username', 'wppb_same_username_as_email',10, 2);

    Make sure to place this code in an empty plugin or your active theme’s functions.php file.

    P.S. Thank you for your kind words regarding the plugin.
    You can always support our work by leaving a review :).

Viewing 1 replies (of 1 total)

The topic ‘username’ is closed to new replies.