Edit this file:
wp-content\plugins\restrict-usernames-emails-characters\classes\classe_val.php
and in line 203 replace this:
if ( preg_match('/^[0-9]+$/i', $login ) || preg_match( '/^\+?\d+$/', $login ) || preg_match( '/^[0 -9]+$/i', $login ) && $this->options('p_space') != 'on' ) {
if ( $__valid && $this->options('p_num') ) {
$this->valid_num = true;
return $_valid;
}
}
by:
if ( !preg_match('/^[0-9]+$/i', $login ) ) {
if ( $__valid ) {
$this->valid_num = true;
return $_valid;
}
}