We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 35111
    • 6 Posts
    Hi, I wanted to know what the syntax was to string multiple custom validators in the FormIt call. I tried this, but it did not work.

    &customValidators = `ValidEmail:ValidPhone`

    I wanted to add that I did also had this in my FormIt call:

    &validate=`contact_name:required:minLength=`2``, `contact_email:ValidEmail:required`,
    contact_phone:ValidPhone:required`

    Thanks in advance for you help!
      • 28215
      • 4,149 Posts
      &customValidators=`ValidEmail,ValidPhone`


      and

      &validate=`contact_name:required:minLength=^2^,
      contact_email:ValidEmail:required,
      contact_phone:ValidPhone:required`
        shaun mccormick | bigcommerce mgr of software engineering, former modx co-architect | github | splittingred.com
        • 35111
        • 6 Posts
        Thank you! I also did find my problem.