H hellboy78 Active member May 19, 2021 #1 how to void, during users registration, to use spaces and special characters in username field? thats will make all easier into my payment system
how to void, during users registration, to use spaces and special characters in username field? thats will make all easier into my payment system
P Paul B XenForo moderator Staff member May 19, 2021 #2 Use user name regex validation and set it to use alphanumeric characters only - /^[a-z0-9]+$/i. Upvote 0 Downvote
H hellboy78 Active member May 19, 2021 #4 Admin CP -> Home -> Options -> Users and Registration -> User Name Match Regular Expression that will exclude all special characters and spaces ? /^[a-z0-9]+$/i Upvote 0 Downvote
Admin CP -> Home -> Options -> Users and Registration -> User Name Match Regular Expression that will exclude all special characters and spaces ? /^[a-z0-9]+$/i
H hellboy78 Active member May 19, 2021 #5 how to edit this phrase during registration? "Please enter a name that is at least 3 characters long" and how to change this setting to 4 characters? Upvote 0 Downvote
how to edit this phrase during registration? "Please enter a name that is at least 3 characters long" and how to change this setting to 4 characters?
L Lawrence Well-known member May 19, 2021 #6 hellboy78 said: how to edit this phrase during registration? "Please enter a name that is at least 3 characters long" and how to change this setting to 4 characters? Click to expand... Admin CP -> Options -> User registration -> Username length limit Set the minimum to 4 (this will update the phrase so you do not need to edit it). Upvote 0 Downvote
hellboy78 said: how to edit this phrase during registration? "Please enter a name that is at least 3 characters long" and how to change this setting to 4 characters? Click to expand... Admin CP -> Options -> User registration -> Username length limit Set the minimum to 4 (this will update the phrase so you do not need to edit it).
H hellboy78 Active member May 19, 2021 #7 Lawrence said: Admin CP -> Options -> User registration -> Username length limit Set the minimum to 4 (this will update the phrase so you do not need to edit it). Click to expand... thanks, but I also need to translate that phrase in "italian" where is it? Upvote 0 Downvote
Lawrence said: Admin CP -> Options -> User registration -> Username length limit Set the minimum to 4 (this will update the phrase so you do not need to edit it). Click to expand... thanks, but I also need to translate that phrase in "italian" where is it?
L Lawrence Well-known member May 19, 2021 #8 hellboy78 said: thanks, but I also need to translate that phrase in "italian" where is it? Click to expand... The phrase is please_enter_name_that_is_at_least_x_characters_long Upvote 0 Downvote
hellboy78 said: thanks, but I also need to translate that phrase in "italian" where is it? Click to expand... The phrase is please_enter_name_that_is_at_least_x_characters_long
H hellboy78 Active member May 19, 2021 #9 Lawrence said: The phrase is please_enter_name_that_is_at_least_x_characters_long Click to expand... perfect. thank you Upvote 0 Downvote
Lawrence said: The phrase is please_enter_name_that_is_at_least_x_characters_long Click to expand... perfect. thank you
H hellboy78 Active member May 20, 2021 #10 hellboy78 said: Admin CP -> Home -> Options -> Users and Registration -> User Name Match Regular Expression that will exclude all special characters and spaces ? /^[a-z0-9]+$/i Click to expand... on xenforo 2.2 this doesn't allow also spaces. and it's good but on xenforo 2.1 spaces are still allowed, I don't understand why Upvote 0 Downvote
hellboy78 said: Admin CP -> Home -> Options -> Users and Registration -> User Name Match Regular Expression that will exclude all special characters and spaces ? /^[a-z0-9]+$/i Click to expand... on xenforo 2.2 this doesn't allow also spaces. and it's good but on xenforo 2.1 spaces are still allowed, I don't understand why
nocte Well-known member May 20, 2021 #11 hellboy78 said: but on xenforo 2.1 spaces are still allowed, I don't understand why Click to expand... I don't see any reason why this could happen. Bear in mind: This only affects newly registered users. I had a similar RegEx on XF 2.1 and it worked well (no spaces allowed). Upvote 0 Downvote
hellboy78 said: but on xenforo 2.1 spaces are still allowed, I don't understand why Click to expand... I don't see any reason why this could happen. Bear in mind: This only affects newly registered users. I had a similar RegEx on XF 2.1 and it worked well (no spaces allowed).