2024/02/20更新
+ 更新した行
- 削除した行
定期複数配送サイクル対応
機能や設定の詳細は「ecforce FAQ: 一部商品の定期配送サイクル変更 (opens in a new tab)」をご確認ください。
mypage > 定期注文詳細画面 基本情報の編集
ec_force/shop/customer/subs_orders/edit.html.liquid
ec_force/shop/customer/subs_orders/edit.html+smartphone.liquid
<!-- 次回配送予定日をサイクルに合わせる -->
- {% if base_info.scheduled_to_be_delivered_at_based_on_last_order? %}
+ {% if base_info.scheduled_to_be_delivered_at_based_on_last_order? and subs_order.last_order != null %}
mypage > 定期注文詳細画面 商品情報
ec_force/shop/customer/subs_orders/order_items/index.html.liquid
ec_force/shop/customer/subs_orders/order_items/index.html+smartphone.liquid
+<!-- 一部商品の配送サイクル変更 -->
+{% if changeable_subs_order %}
+ <a href="/shop/customer/subs_orders/{{ subs_order.number }}/delivery_cycles">一部商品の配送サイクル変更</a>
+{% endif %}
+
<!-- 商品一覧 -->
mypgage > 定期注文詳細画面 一部商品の配送サイクル変更
ec_force/shop/customer/subs_orders/delivery_cycles/edit.html.liquid
ec_force/shop/customer/subs_orders/delivery_cycles/edit.html+smartphone.liquid
※新規追加ファイルです。
同時購入可能グループ機能対応
機能や設定の詳細は「同時購入グループを利用した購入制限 – ecforce faq (opens in a new tab)」をご確認ください。
pages > トップページ
ec_force/shop/base/index.html.liquid
ec_force/shop/base/index.html+smartphone.liquid
<!-- イチオシ商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[hot_product.master.id] or delivery_group_badge_flg_hash[hot_product.id] %}
+ {% if pre_order_badge_flg_hash[hot_product.master.id] or delivery_group_badge_flg_hash[hot_product.id] or concurrent_purchase_group_badge_flg_hash[hot_product.id] %}
<!-- イチオシ商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[hot_product.master.id] %}
予約商品
{% endif %}
{% for delivery_group_name in hot_product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- イチオシ商品同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in hot_product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 新着商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 新着商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- 新着商品配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 新着商品同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- セール商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- セール商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- セール商品配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- セール商品同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- ランキング商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[sale_ranking.product.master.id] or delivery_group_badge_flg_hash[sale_ranking.product.id] %}
+ {% if pre_order_badge_flg_hash[sale_ranking.product.master.id] or delivery_group_badge_flg_hash[sale_ranking.product.id] or concurrent_purchase_group_badge_flg_hash[sale_ranking.product.id] %}
<!-- ランキング商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[sale_ranking.product.master.id] %}
予約商品
{% endif %}
<!-- ランキング商品配送温度帯ラベル(任意) -->
{% for delivery_group_name in sale_ranking.product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- ランキング商品同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in sale_ranking.product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
cart > カート画面
ec_force/shop/carts/show.html.liquid
ec_force/shop/carts/show.html+smartphone.liquid
<!-- カート内商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[order_item.variant.id] or delivery_group_badge_flg_hash[order_item.product.id] %}
+ {% if pre_order_badge_flg_hash[order_item.variant.id] or delivery_group_badge_flg_hash[order_item.product.id] or concurrent_purchase_group_badge_flg_hash[order_item.product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[order_item.variant.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in order_item.product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in order_item.product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 関連商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[related_product.master.id] or delivery_group_badge_flg_hash[related_product.id] %}
+ {% if pre_order_badge_flg_hash[related_product.master.id] or delivery_group_badge_flg_hash[related_product.id] or concurrent_purchase_group_badge_flg_hash[related_product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[related_product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in related_product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in related_product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 閲覧履歴商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[browsing_history.master.id] or delivery_group_badge_flg_hash[browsing_history.id] %}
+ {% if pre_order_badge_flg_hash[browsing_history.master.id] or delivery_group_badge_flg_hash[browsing_history.id] or concurrent_purchase_group_badge_flg_hash[browsing_history.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[browsing_history.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in browsing_history.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in browsing_history.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
cart > サンクスクロスセル(部分テンプレート)
ec_force/shop/orders/_form_cv_xsell.html.liquid
ec_force/shop/orders/_form_cv_xsell.html+smartphone.liquid
{% for delivery_group_name in cv_xsell_product.delivery_group_names %}
{% assign delivery_group_names = delivery_group_names | append: delivery_group_name | append: "," %}
{% endfor %}
+ {% assign concurrent_purchase_group_names = '' %}
+ {% for concurrent_purchase_group_name in cv_xsell_product.concurrent_purchase_group_names %}
+ {% assign concurrent_purchase_group_names = concurrent_purchase_group_names | append: concurrent_purchase_group_name | append: "," %}
+ {% endfor %}
<div>
<input type="hidden" name="delivery_group_names" value="{{ delivery_group_names }} ">
+ <input type="hidden" name="concurrent_purchase_group_names" value="{{ concurrent_purchase_group_names }} ">
<input type="hidden" name="list-price" value="{{ cv_xsell_product.master.list_price | number_to_currency }}">
<!-- 配送温度帯マーク(任意) -->
<span class="delivery-group-badge-zone"></span>
+ <!-- 同時購入グループバッジ(任意) -->
+ <span class='concurrent-purchase-group-badge-zone'></span>
</div>
product > 商品一覧画面
ec_force/shop/products/index.html.liquid
ec_force/shop/products/index.html+smartphone.liquid
<!-- 商品名 -->
<a href="/shop/products/{{ product.master.sku }}">{{ product.name }}</a>
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 販売価格(任意) -->
product > 商品詳細画面
ec_force/shop/products/show.html.liquid
ec_force/shop/products/show.html+smartphone.liquid
<!-- 商品詳細(任意) -->
{{ product.parsed_description }}
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 予約関連情報(任意) -->
<!-- 関連商品名 -->
<a href="/shop/products/{{ related_product.master.sku }}">{{ related_product.name | truncate: 35 }}</a>
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[related_product.master.id] or delivery_group_badge_flg_hash[related_product.id] %}
+ {% if pre_order_badge_flg_hash[related_product.master.id] or delivery_group_badge_flg_hash[related_product.id] or concurrent_purchase_group_badge_flg_hash[related_product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[related_product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in related_product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in related_product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 販売価格 -->
product > キーワード検索結果商品一覧画面
ec_force/shop/searches/show.html.liquid
ec_force/shop/searches/show.html+smartphone.liquid
<!-- 商品名 -->
<a href="/shop/products/{{ product.master.sku }}">{{ product.name }}</a>
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 販売価格(任意) -->
product > 商品カテゴリー詳細画面
ec_force/shop/product_categories/show.html.liquid
ec_force/shop/product_categories/show.html+smartphone.liquid
<!-- 販売価格 -->
{{ product.first_price | number_to_currency: format: '%n %u' }}
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] %}
+ {% if pre_order_badge_flg_hash[product.master.id] or delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 説明 (PC) -->
{{ product.parsed_description | simple_format }}
selection > セレクション画面
ec_force/shop/selections/show.html.liquid
ec_force/shop/selections/show.html+smartphone.liquid
+ <!-- 同時購入グループバッジ(任意) -->
+ {% if concurrent_purchase_group_badge_flg_hash[product.id] %}
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
+ {% endif %}
<!-- 販売価格(任意) -->
sale_ranking > ランキング画面
ec_force/shop/sale_rankings/show.html.liquid
ec_force/shop/sale_rankings/show.html+smartphone.liquid
<!-- ランキング商品名(任意) -->
<a href="/shop/products/{{ sale_ranking.product.master.sku }}">{{ sale_ranking.product.name }}</a>
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[sale_ranking.product.master.id] or delivery_group_badge_flg_hash[sale_ranking.product.id] %}
+ {% if pre_order_badge_flg_hash[sale_ranking.product.master.id] or delivery_group_badge_flg_hash[sale_ranking.product.id] or concurrent_purchase_group_badge_flg_hash[sale_ranking.product.id] %}
<!-- ランキング商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[sale_ranking.product.master.id] %}
予約商品
{% endif %}
<!-- ランキング商品配送温度帯ラベル(任意) -->
{% for delivery_group_name in sale_ranking.product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- ランキング商品同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in sale_ranking.product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- ランキング商品説明(任意) -->
mypage > 定期注文詳細画面 商品情報
ec_force/shop/customer/subs_orders/order_items/index.html.liquid
ec_force/shop/customer/subs_orders/order_items/index.html+smartphone.liquid
{% assign options = options | append: product.id | append: "," | append: subs_order.times %}
{% assign options_array = options | split: "," %}
<p>販売価格:<span>{{ options_array | liquid_recurring_time_price | number_to_currency: format: '%n %u' }}</span></p>
<!-- 追加商品バッジ(任意) -->
- {% if delivery_group_badge_flg_hash[product.id] %}
+ {% if delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<a href="/shop/customer/subs_orders/{{ subs_order.number }}/order_items/add?product_number={{ product.number }}">
<button>追加する</button>
</a>
mypage > 定期注文詳細画面 商品の追加
ec_force/shop/customer/subs_orders/variants/show.html.liquid
ec_force/shop/customer/subs_orders/variants/show.html+smartphone.liquid
<!-- 商品バッジ(任意) -->
- {% if delivery_group_badge_flg_hash[product.id] %}
+ {% if delivery_group_badge_flg_hash[product.id] or concurrent_purchase_group_badge_flg_hash[product.id] %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 通常価格(任意) -->
mypage > お気に入り一覧画面
ec_force/shop/customer/favorites/index.html.liquid
ec_force/shop/customer/favorites/index.html+smartphone.liquid
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_hash[favorite.product.master.id] or delivery_group_badge_flg_hash[favorite.product.id] %}
+ {% if pre_order_badge_flg_hash[favorite.product.master.id] or delivery_group_badge_flg_hash[favorite.product.id] or concurrent_purchase_group_badge_flg_hash[favorite.product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_hash[favorite.product.master.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in favorite.product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in favorite.product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
shared_partial > cart_modal
ec_force/shop/shared/_cart_modal.html.liquid
ec_force/shop/shared/_cart_modal.html+smartphone.liquid
<!-- 商品名(任意) -->
<a href="/shop/products/{{ order_item.product.master.sku }}">{{ order_item.product.name }}</a>
<!-- 商品バッジ(任意) -->
- {% if pre_order_badge_flg_cart_modal_hash[order_item.variant.id] or delivery_group_badge_flg_cart_modal_hash[order_item.product.id] %}
+ {% if pre_order_badge_flg_cart_modal_hash[order_item.variant.id] or delivery_group_badge_flg_cart_modal_hash[order_item.product.id] or concurrent_purchase_group_badge_flg_cart_modal_hash[order_item.product.id] %}
<!-- 商品予約マーク(任意) -->
{% if pre_order_badge_flg_cart_modal_hash[order_item.variant.id] %}
予約商品
{% endif %}
<!-- 配送温度帯ラベル(任意) -->
{% for delivery_group_name in order_item.product.delivery_group_names %}
{{ delivery_group_name }}
{% endfor %}
+ <!-- 同時購入グループバッジ(任意) -->
+ {% for concurrent_purchase_group_name in order_item.product.concurrent_purchase_group_names %}
+ {{ concurrent_purchase_group_name }}
+ {% endfor %}
{% endif %}
<!-- 規格(任意) -->
<!-- 規格(任意) -->
【不具合修正】キーワード検索結果商品一覧画面でのページネーションリンク
2024/01/23 更新の「商品のフリーワード検索結果が0件のときにおすすめ商品を表示する」で発生した「ページネーションリンクが正常に表示されない不具合」への対応です。
product > キーワード検索結果商品一覧画面
ec_force/shop/searches/show.html.liquid
ec_force/shop/searches/show.html+smartphone.liquid
<!-- ページネーション -->
<!-- 「ショップ管理 > 各種設定 > ショップの機能設定」にある「キーワード検索後の商品一覧画面の1ページあたりの表示件数」で設定している表示件数と同じ数字を入力してください -->
-{% if paginate.items > 0 %}
- {% paginate products_all by 10 %}
+{% paginate products_all by 10 %}
+ {% if paginate.items > 0 %}
<!-- 件数表示(任意) -->
<a href="{{ paginate.next.url }}">次へ</a>
{% endif %}
- {% endpaginate %}
-{% endif %}
+ {% endif %}
+{% endpaginate %}
軽微な更新
auth > パスワードリセット案内画面
ec_force/shop/customers/passwords/new.html.liquid
ec_force/shop/customers/passwords/new.html+smartphone.liquid
<!-- メールアドレス -->
- <input class="validate[required], custom[email]]" name="customer[email]" autocomplete="email" id="customer_email" />
+ <input class="validate[required, custom[email]]" name="customer[email]" autocomplete="email" id="customer_email" />
baseinfo.use_pre_order → enabled_pre_order に変更
記述の簡易化・処理の見直しに伴い「予約機能有効」を判別する変数を作成いたしました。
変更前の記述(baseinfo.use_pre_order)のままでも継続してご利用可能です。
記述の変更内容は baseinfo.use_pre_order?
の箇所を enabled_pre_order
と変更するのみです。
変更例は以下です。
- {% if base_info.use_pre_order? and order.pre_order_variants? %}
+ {% if enabled_pre_order and order.pre_order_variants? %}
対象ファイルは以下です。
- cart > カート画面
- ec_force/shop/carts/show.html.liquid
- ec_force/shop/carts/show.html+smartphone.liquid
- cart > 注文情報確認画面
- ec_force/shop/orders/confirm.html.liquid
- ec_force/shop/orders/confirm.html+smartphone.liquid
- cart > サンクスオファー確認画面
- ec_force/shop/orders/cv_confirm.html.liquid
- ec_force/shop/orders/cv_confirm.html+smartphone.liquid
- cart > サンクスクロスセル(部分テンプレート)
- ec_force/shop/orders/_form_cv_xsell.html.liquid
- ec_force/shop/orders/_form_cv_xsell.html+smartphone.liquid
- product > 商品詳細画面
- ec_force/shop/products/show.html.liquid
- ec_force/shop/products/show.html+smartphone.liquid
- selection > セレクション画面
- ec_force/shop/selections/show.html.liquid
- ec_force/shop/selections/show.html+smartphone.liquid
- mypage > 会員情報変更画面
- ec_force/shop/customer/base/edit.html.liquid
- ec_force/shop/customer/base/edit.html+smartphone.liquid
- mypage > 購入履歴詳細画面 基本情報
- ec_force/shop/customer/orders/show.html.liquid
- ec_force/shop/customer/orders/show.html+smartphone.liquid
- mypage > お届け先情報フォーム(部分テンプレート)
- ec_force/shop/customer/shipping_addresses/_form.html.liquid
- ec_force/shop/customer/shipping_addresses/_form.html+smartphone.liquid
- mypage > 定期注文一覧画面
- ec_force/shop/customer/subs_orders/index.html.liquid
- ec_force/shop/customer/subs_orders/index.html+smartphone.liquid