Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
No, it's an email field so it has email validation attached to it that can't be disabled.Is there any way at least i can disable the "Please enter a valid email address" check? So that the users might put words inside, like "none" or "/" whatever...
No, the email address must always be unique. You could use CB Auto Actions on the registration form display trigger with a Code action and Method of jQuery to generate a random email address using JS functions then pushing that value to the input.Second option would be to put default value for the email for some dummy address like " user@domain.com", but then again the system asks for unique e-mail address for each user, is there override for this?
Validation would reject it before you could do this. You could try the before registration trigger and populate email field using a Code action with Method set to PHP then populating the POST global, but I've no idea if that'll work.Third option, perhaps there's a way i can automatically fill the email field with username (from the username field) @domain.com?? Maybe with ab auto actions or cb query?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.