I'm making a WordPress petition site, my first WordPress site, using a theme I bought. The theme has a form that allows users to sign up to the petition, but all fields in the form are required. As far as I can tell the validation is being done in PHP, I've located what I believe to be the relevant PHP-file, this has some of my own additions as well.
The relevant PHP file is long, but I'm not sure what parts to post so I'll post a link to the whole file
I tried commeting out line 837-840 to see if I could register a user without filling out email, but that failed.
/*
if( ! is_email( $email ) )
$return->add( 'email', $validation_message_email );
*/