Hello,
another little problem. Is it possible to have only letters in the Namefields ?
Ehen i use the it the normal way i can send numbers i these fields. but i only want to have letters.
thank you again :-)
Hello,
another little problem. Is it possible to have only letters in the Namefields ?
Ehen i use the it the normal way i can send numbers i these fields. but i only want to have letters.
thank you again :-)
You can use the gform_pre_submission filter to ensure that only letters were entered, and if not, return a validation error. That would not prevent a user from typing in a number in their username, but the form will never be submitted successfully and entry never created if it does not pass your validation rule. Add this code to your theme's functions.php.
Adjust the form ID and the field IDs. This will ensure that only upper or lowercase letters are entered, with no spaces or any other characters allowed.