Dawn Theme 4.0, make checkbox in product page mandatory

Hi,

I have created 2 checkboxes that display in certain products. even though the code says required, I’m still able to add the product to the cart without checking the boxes. How can I make them required?

here’s my code

{% for collection in product.collections %}
{% if collection.title contains “Custom Art” %}

Yes my customisation is correct

I understand there are no refunds or exchanges for costum products

{% endif %}
{% endfor %}

1 Like

@monica22

try this code

{% for collection in product.collections %}
{% if collection.title contains "Custom Art" %}

{% endif %}
{% endfor %}

Hi @monica22 ,

Please go to sections > main-product.liquid file, find ‘novalidate’ and remove code here:

that worked thank you so much!

1 Like