Shopify注册时添加字段,收集额外的客户信息

释放双眼,带上耳机,听听看~!

Shopify注册时收集添加字段,收集额外的客户信息

shopify注册模板名字一般是“register.liquid

请找到这个模板并且编辑,下面是额外字段的例子,额外的字段命名示例 name="customer[note][字段名]",额外的字段本质上是备注,所以前面都是customer[note] 。html请根据自己的主题进行调整

<div class="birthday">
    <label for="birthday">Birthday</label>
    <input id="birthday" type="date" name="customer[note][Birthday]" />
</div>

下面是一个完整的示例。下面的注册表单额外加入了生日等其他信息,具体代码请根据你自己的主题进行调整。

{% form 'create_customer' %}
  {{ form.errors | default_errors }}

  <div class="first-name">
    <label for="first-name">First name</label>
    <input id="first-name" type="text" name="customer[first_name]" />
  </div>

  <div class="last-name">
    <label for="last-name">Last name</label>
    <input id="last-name" type="text" name="customer[last_name]" />
  </div>

  <div class="email">
    <label for="email">Email</label>
    <input id="email" type="email" name="customer[email]" />
  </div>

  <div class="password">
    <label for="password">Password</label>
    <input id="password" type="password" name="customer[password]" />
  </div>

  <div class="password">
    <label for="password-confirmation">Password</label>
    <input id="password-confirmation" type="password" name="customer[password]" />
  </div>

  <div class="birthday">
    <label for="birthday">Birthday</label>
    <input id="birthday" type="date" name="customer[note][Birthday]" />
  </div>

  <div class="allergies">
    <label for="allergies">Allergies</label>
    <input id="allergies" type="text" name="customer[note][Allergies]" />
  </div>

  <div class="submit">
    <input type="submit" value="Create" />
  </div>
{% endform %}

 

参考官方文档 https://shopify.dev/docs/themes/customer-engagement/additional-customer-information

 

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
Shopify主题开发

shopify调取支付方式图标

2023-3-16 16:48:24

Shopify主题开发Shopify功能开发独立站教程

Shopify登录后显示产品价格或登录后显示特殊信息

2023-3-17 18:25:23

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索