How can I modify the warning messages of the Terms & Condition widget?

  • proba1
    Asked on September 8, 2015 at 5:45 AM

    I could customize the "I agree..." text, but I can't find where the warning messages can be replaced. I tried Preferences > Advanced Settings > Edit Form Warnings, but no luck.

    Jotform Thread 656927 Screenshot
  • proba1
    Replied on September 8, 2015 at 7:12 AM

    Thank you for your quick response.

     

    If someone else got the same problem:

    I solved this issue with a Check Box field with only 1 option, deleted the label, set the field as required, and I inserted the following text as the only 1 option:

    I agree to the <strong><a href="http://www.example.com">Terms & Conditions.</a></strong>

  • Ashwin JotForm Support
    Replied on September 8, 2015 at 9:18 AM

    Hello proba1,

    Thank you for sharing your workaround with users.

    Please be noted that it is possible to change the validation message of the "Terms & Conditions" widget by injecting the following custom css code in your form:

    .required:hover .requiredtxt {

        display:none;

    }

    .required .requiredtxt {

        display:none;

    }

    .required:after{

       content: "Your custom validation message" !important;   

    }​

    Please check the screenshot below on how to inject custom css code in the widget:

    How can I modify the warning messages of the Terms & Condition widget? Image 1 Screenshot 20

     

    Hope this helps.

    Do get back to us if you have any questions.

    Thank you!