Comments Bence started the conversation 1,573Uroš repliedFebruary 6, 2024 at 9:44pmHello Bence,Thank you for reaching out to us.Here is a custom validation script for new booking form <script> window.ameliaActions = { customValidation: function (success = null, error = null, data) { console.log('customValidation HOOK') console.log('------------') //you can check existing rules here console.log(data.rules) const customValidator = (rule, value, callback) => { if (!value.includes('@health-check.at')) { callback(new Error()) } else { callback() } } // this example is for email input field data.rules.email.push({required: true, message: 'CUSTOM MESSAGE', validator: customValidator, trigger: 'submit'}) }, } </script>Please let me know if that helped you.Kind Regards, Uros Jovanovic[email protected] Rate my supportTry our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/ wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community You can try wpDataTables add-ons before purchasing on these sandbox sites: Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables Sign in to reply ...
Hello Bence,
Thank you for reaching out to us.
Here is a custom validation script for new booking form
Please let me know if that helped you.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables