2017-05-09 11 views
0

shopifyのデフォルト機能にはアカウントを作成するためのパスワードが必要だと私は思っています。 shopifyストアのために。私はパスワード要求を回避したい。私はこれまでのことを貼り付けましたが、どんな助けも素晴らしいでしょう。Shopifyでパスワードフィールドを必要としないCreate Customer Form

{% form 'create_customer' %} 
    {{ form.errors | default_errors }} 
     {% if form.posted_successfully? %} 
     <script> 
      window.location = "https://www.thankyoupage"; 
      </script> 
     {% endif %} 

    <div class="clearfix large_form"> 
     <label for="email" class="login">Email Address</label> 
     <input type="email" value="" name="customer[email]" id="email" class="large" size="30" /> 
    </div> 
    <div class="clearfix large_form"> 
     <label for="goal">Goal </label> 
     <select name="customer[note][Goal]" id="goal"> 
      <option value=""></option> 
      <option value="Lose Weight">Goal 1 </option> 
      <option value="Eat Healthy">Gaol2</option> 
      <option value="Peak Performance">Goal 3</option> 
     </select> 
    </div> 
    <div class="clearfix large_form" style="display:none;"> 
     <label for="password" class="login">Password</label> 
     <input type="password" value="" name="customer[password]" id="password" class="large password" size="30" is_required="0" /> 
     </div> 
     <button type="submit" value="Create">Get Started</button> 
{% endform %} 
+0

パスワードは必須ではありませんが、ユーザーがいなければ、アカウントにログインすることはできません。彼は顧客データベースに追加されますが、それだけです。 – drip

答えて

0

フィールドにデフォルト(ランダム)値を事前に入力する場合は、フォームチェックの要件を満たす必要があります。

関連する問題