I have a Shopify website that i am working on and it use Minimog theme. I have modified the theme’s default sign up page to add more fields such as Notes, Phone, Tags etc. But somehow, i am unable to capture address fields.
I want to create sign up form so it accepts all of these fields and registers the user.
this is what i have tried at the moment
# {{ 'customer.register.title' | t }}
{% form 'create_customer' %}
{% render 'form__error', form: form %}
{{ 'customer.register.description' | t }}
{% assign show_terms = false %}
{% if settings.agree_text != blank and settings.show_agree_on_register %}
{% assign show_terms = true %}
{% endif %}
{{ 'customer.login.title' | t }}
{% endform %}
