Custom text box input not showing on Order page

So, I have a customizable product where the customer can input a name and an image. The image shows on my unfulfilled orders -page, but not the name field. The name field is empty, and the customer swears they put the name on there. Also, the coding for the name is a “required” field, so it can’t have been left empty. So it’s got to be something in my code. Could you please have a look at what I did wrong:?

This is from my custom product template.liquid

Pup's name    

Pup's name -2

Pup's photo

Pup's photo -optional

{% if section.settings.quantity_enabled %}

{{ 'products.product.quantity' | t }}
{% endif %}
{% if current_variant.available %} {{ 'products.product.add_to_cart' | t }} {% else %} {{ 'products.product.sold_out' | t }} {% endif %} {% if section.settings.enable_payment_button %} {{ form | payment_button }} {% endif %}
{% endform %}

TIA!

Hello @MiaH26 ,

  1. Check in your code two inputs fields have same id and name which is wrong.

  1. It’s not difficult for a technical person to bypass the basic ‘required’ validation you are using.

Thanks

1 Like

DUH!!! That’s an error, of course! Thank you very much!