I’ve added some custom fields through the code, how can I make them required fields?


You will need to edit one of the following files:
javascript.validation.php
javascript.validationDays.php
javascript.validationEvents.php
These files are located inside of /booking/includes/ folder. Which file to edit will depend on which booking form you would like to adjust.Basically you need to add ID of the new field into
$reqFields=array(
"name",
"phone",
"email",
"captcha"
);

and make sure the field has the ID on the form.

« back to all FAQs