• Resolved faceof

    (@faceof)


    is there code can be use for Register User=mail lower and upper case characters
    on my form USER=Mail, i want mail become auto lower case

Viewing 1 replies (of 1 total)
  • Plugin Support Yurii

    (@yuriinalivaiko)

    Try to use a hook um_add_user_frontend_submitted

    Example:

    // Make a username the same as email in lower case.
    add_filter( 'um_add_user_frontend_submitted', function( $args ) {
    	if ( empty( $args['username'] ) && array_key_exists( 'user_email', $args ) && is_email( $args['user_email'] ) ) {
    		$args['username'] = strtolower( $args['user_email'] );
    	}
    	return $args;
    } );
Viewing 1 replies (of 1 total)

The topic ‘Register User=mail lower and upper case characters’ is closed to new replies.