So by now I doubt this is even possible, but I’ve added some extra fields to my registration form and I want the phone number that’s filled in there so be saved in the customers account, so that we can call them after creating an account. I’ve already used the ‘tag’ and ‘note’ place for their website and Chamber of Commerce number.
I prefer to not use a separate app for this, because all the separate subscriptions add up quite a bit monthly.
The piece of code that I’m trying now:
{%- assign formId = 'RegisterForm' -%}
{% form 'create_customer', id: formId %}
{% include 'form-status', form: form, form_id: formId %}
{%- if form.errors contains 'email' -%}
{{ 'general.accessibility.error' | t }}
{% include 'icon-error' %}
{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}.
{%- endif -%}
{%- if form.errors contains 'password' -%}
{% include 'icon-error' %}
{{ form.errors.translated_fields['password'] | capitalize }} {{ form.errors.messages['password'] }}.
{%- endif -%}
Bestellen op onze webshop is uitsluitend mogelijk voor geregistreerde samenstellers van kerstpakketten en relatiegeschenken.
Bent u een consument of bedrijf en heeft u een vraag? Dan verwijzen we u graag naar het contactformulier linksonderin op deze pagina.
{% endform %}
(but I’ve tried a lot of different things)
Which looks like this:
When an account is made, looks like this for the admins:
So the phone number I entered is stored nowhere. But I’d like it to be saved here:
I’m using the Debut theme.
If you need any more information to answer my question properly, please let me know.
Thank you in advance.


