I have the following input field:
<input id="name" name="real_name" type="text" placeholder="ie. Your full name or company name" class="form-control input-lg parsley-validated"
data-required="true" parsley-error-message="Please insert your name" >
However, when I press my submit button, I only get the standard This value is required.
message.
Can anyone tell me why?
According to Parsley Documentation in their version 2, they already supported this features, just add "data-parsley-errors-messages-disabled" attribute to the <form> tag. Save this answer.
Parsley is a javascript form validation library. It helps you provide your users with feedback on their form submission before sending it to your server. It saves you bandwidth, server load and it saves time for your users.
Try
data-parsley-required-message="Please insert your name"
Try this attribute instead of parsley-error-message
:
data-parsley-required-message="Please insert your name"
It's not a custom error message for custom validator. You need to override the default 'required' error message with your one.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With