Hi, I’m having an issue getting the text input area on the mobile side of our theme to work. It works perfect on a desktop though. It wouldn’t allow me to attach a picture so here’s a direct link to the contact page for your phone.
https://mtrdefense.com/pages/custom-engraving
Can anyone please help me get this sorted out? Thank you in advance.
{{ 'section-contact-form.css' | asset_url | stylesheet_tag }}
## {{ section.settings.heading | escape }}
{%- form 'contact', id: 'ContactForm' -%}
{%- if form.posted_successfully? -%}
{% render 'icon-success' %} {{ 'templates.contact.form.post_success' | t }}
{%- elsif form.errors -%}
## {% render 'icon-error' %} {{ 'templates.contact.form.error_heading' | t }}
- {{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}
{%- endif -%}
{%- if form.errors contains 'email' -%}
<small>
{{ 'accessibility.error' | t }}
{% render 'icon-error' %}{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}
</small>
{%- endif -%}
{%- endform -%}
{% schema %}
{
"name": "t:sections.contact-form.name",
"tag": "section",
"class": "spaced-section",
"settings": [
{
"type": "text",
"id": "heading",
"default": "Contact form",
"label": "Heading"
}
],
"presets": [
{
"name": "t:sections.contact-form.presets.name"
}
]
}
{% endschema %}




