Magento – Magento 2: How to set custom validation message

magento2messagesvalidation

I want to change Magento 2 validation message with my custom message.
on product detail page if I click add to cart button without selecting options than its shows This is a required field. but I want to change it with my custom message like Please select size.

enter image description here

Can anyone help me with this?
Thanks for your answer in advance.

Best Answer

Just go-to that input field and add a custom attribute "data-msg-required"

data-msg-(validator name)

Like..

<input name="qty" id="qty" class="input-text" type="text" data-validate='{"required":true}' data-msg-required="Please select size."/>
Related Topic