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!