Hi guys! I have Debutify theme. I added few sections of liquid into my custom contact form (radio field, text, checkbox, upload file).The problem is the data doesn’t send through to my email in the end. Here is my code
# {{ page.title }}
{%- unless page.content == blank -%}
{{ page.content }}
{%- endunless -%}
{%- form 'contact', class:'form-vertical' -%}
{%- if form.posted_successfully? -%}
{{ 'contact.form.post_success' | t }}
{%- endif -%}
{%- if form.errors -%}
{{ form.errors | default_errors }}
{%- endif -%}
Ship To My Address
Pick Up At Warehouse
Select Your Garment Types
Upload Your Design
{%- endform -%}
{%- section 'map' -%}
These are the parts I added in:
Ship To My Address
Pick Up At Warehouse
Select Your Garment Types
Upload Your Design
What am I doing wrong here? Please help me fix these codes. I’m new to liquid. Thank you so much!!!