テーマ仕様書 更新履歴
2022年
2022/06/14更新

2022/06/14更新

+ 追加した行
- 削除した行

連携用顧客番号を会員登録画面で利用できるようにする

auth > 会員ログイン/会員登録画面 ・ 会員登録画面

テーマ管理のファイルパス
ec_force/shop/customers/sessions/new.html.liquid
ec_force/shop/customers/sessions/new.html+smartphone.liquid
ec_force/shop/customers/registrations/new.html.liquid
ec_force/shop/customers/registrations/new.html+smartphone.liquid

   <label for="customer_password">パスワード</label>
   <input class="validate[required,minSize[8]]" placeholder="半角英数字8文字以上" type="password" name="customer[password]" id="customer_password" />
 
+  <!-- 連携用顧客番号 -->
+  {% if shop_form_settings['link_number'] %}
+    <label>{{ shop_form_settings['link_number_label'] }}</label>
+    <label for='check_toggle_text'>
+      <input id="check_toggle_text" name="customer[link_number]" type="checkbox">
+      {{ shop_form_settings['link_number_checkbox_label'] }}
+      <div class="toggle_text" style="display: none">
+        {{ shop_form_settings['link_number_description'] }}
+        <input name="customer[link_number]" placeholder="{{shop_form_settings['link_number_placeholder']}}">
+      </div>
+    </label>
+  {% endif %}
+
   <!-- オプトイン -->

その他軽微な追加・修正

mypage > 定期注文詳細画面 商品の編集

テーマ管理のファイルパス
ec_force/shop/customer/subs_orders/order_items/edit.html.liquid
ec_force/shop/customer/subs_orders/order_items/edit.html+smartphone.liquid

+  <!-- 次回スキップ -->
+  {% if order_item.skip? %}
+    (次回スキップ)
+  {% endif %}
+
   <!-- 価格(交換に必要なポイント) -->

mypage > ポイント履歴一覧画面

テーマ管理のファイルパス
ec_force/shop/customer/points/index.html.liquid
ec_force/shop/customer/points/index.html+smartphone.liquid

   {% unless is_point_expired_date_taken_each_history %}
     <!-- 有効期限 -->
-    {{ max_point_expiration | date: "%Y/%m/%d %H:%M:%S" }}
+    {% if latest_point_expiration == null %}
+      無制限
+    {% else %}
+      {{ latest_point_expiration | date: "%Y/%m/%d %H:%M:%S" }}
+    {% endif %}
   {% endunless %}
 
   <!-- 付与予定ポイント -->