How can I change text error messages and "Reset Email" button in the email validation widget?

  • alonzo_llamas
    Asked on September 26, 2019 at 9:13 PM

    Hello,


    Quick question, is there a way to change the actual messages from the error scenarios with this widget?

    And for the "Reset Email" button, found no way to alter this text :(


    Thanks for the help.

  • jherwin
    Replied on September 26, 2019 at 9:35 PM

    For error messages, you can change that to form warnings settings. Please refer to this guide: How-to-Change-Form-Warnings

    For the reset email button, can you please show us a screenshot of the button you are referring? Also, please mention the form URL of the form you're working so we can check it.

    Guide: Where-to-Find-My-Form-URL

    Looking forward to your response.

  • alonzo_llamas
    Replied on September 26, 2019 at 10:01 PM

    Thanks.


    This is the form

    https://www.jotform.com/build/92687923851875

    I just want to customize the error messages for a missing email or incomplete email.

    This on the email validator widget.


    Thanks

  • roneet
    Replied on September 26, 2019 at 10:50 PM

    Are you referring to the following error message?

    How  can I change text  error messages and Reset Email button in the email validation widget? Image 10

    It is not possible to change both the error message.

    A workaround that we can suggest is that we can inject code on the class of the error to change the content of the error message but that would be the same for both the error.

    Please try injecting this CSS code:

    #error {
    color: white;
    }
    .negative::after {
     content: 'hi this is test'!important;
     position: relative;
     color: blue;
     left: -80px;
    }

    Please the code here as shown:

    How  can I change text  error messages and Reset Email button in the email validation widget? Image 21

    Result:

    How  can I change text  error messages and Reset Email button in the email validation widget? Image 32

    Let us know if you were referring to something else.

    Thanks.