This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: blank spaces in url show %20 not –

Home Forums Product Support Forums Ajax Search Pro for WordPress Support blank spaces in url show %20 not – Reply To: blank spaces in url show %20 not –

#25757
JustinJon3sJustinJon3s
Participant

I found a work around. adding a function to not allow for usernames with spaces.

// Force no username spaces
function custom_validate_username($valid, $username ) {
if (preg_match(“/\\s/”, $username)) {
// there are spaces
return $valid=false;
}

return $valid;
}