在Shopify的弹出窗口中创建表单(回调函数)

时间:2016-07-18 11:24:34

标签: forms shopify

我将表单添加到按钮(标题左上角)https://en.partizanstore.eu/

我在页面中检查了表单并且它有效,但是当我将表单添加到代码段和按钮时,它不起作用,不发送信件。

有人可以帮忙吗?

顺便说一句,我可以在任何地方创建表单,除了页面吗?

{% capture contact_form %}
<div class="contact">
  {% form 'contact', class: 'contact__form' %}
    {% if form.posted_successfully? %}
      <div class="alert alert--success">
        <span class="alert-title">{{ 'contact.form.successfully_sent' | t }}</span>
      </div>
    {% endif %}

    {% if form.errors %}
      <div class="alert alert--error">
        <span class="alert__title">{{ 'general.forms.errors' | t }}</span>
        {% include 'form_errors' %}
      </div>
    {% endif %}

    <div class="form__control">
      <label class="form__label" for="contact__name">{{ [ 'contact.form.name' | t }}</label>
      <input type="text" id="contact__name" name="contact[name]">
    </div>

    <div class="form__control">
      <label class="form__label" for="contact__phone">{{ 'contact.form.phone' | t }}</label>
      <input type="text" id="contact__phone" name="contact[phone]">
    </div>

    <input type="submit" class="button button--primary" value="{{ 'contact.form.submit' | t }}">
  {% endform %}
</div>

{%endcapture%}

0 个答案:

没有答案