テーマ仕様書 更新履歴
2026年
2026/04/15更新

2026/04/15更新

+ 更新した行
- 削除した行

クレジットカード入力フォーム(セキュリティコード)の改善

セキュリティコードを入力するフォームにtype="password"を追加し、入力内容を表示しないようにしました。

mypage > クレジットカード情報の編集画面

ec_force/shop/customer/cards/edit.html.liquid
ec_force/shop/customer/cards/edit.html+smartphone.liquid

       <!-- セキュリティコード -->
       <div id="view-input-card-cvv" style="display: none;">
         <label for="name">セキュリティコード</label>
-        <input class="validate[required]" id="cvv" name="cvv">
+        <input class="validate[required]" id="cvv" name="cvv" type="password" autocomplete="cc-csc">
       </div>
     {% endunless %}

mypage > クレジットカード情報一覧/登録画面

ec_force/shop/customer/cards/index.html.liquid
ec_force/shop/customer/cards/index.html+smartphone.liquid

             </div>
           {% endif %}
         {% else %}
-          <input class="validate[required]" id="cvv" name="cvv">
+          <input class="validate[required]" id="cvv" name="cvv" type="password" autocomplete="cc-csc">
         {% endif %}
       </div>

cart > 支払い方法(部分テンプレート)

ec_force/shop/orders/_view_payment_information.html.liquid
ec_force/shop/orders/_view_payment_information.html+smartphone.liquid

           </div>
         {% endif %}
       {% else %}
-        <input type="text" name="cvv" id="input-cc-cvv" class="validate[required]" {% if current_customer_has_card %}disabled{% endif %}>
+        <input type="password" name="cvv" id="input-cc-cvv" autocomplete="cc-csc" class="validate[required]" {% if current_customer_has_card %}disabled{% endif %}>
       {% 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

             {% endfor %}
           {% endif %}
         </select>
-        <button name="button" type="submit" id="update_button">更新</button>
+        <button name="button" type="submit" id="update_button" data-disable-with="更新中...">更新</button>
       </form>
     {% else %}
       {{ order_item.quantity }}