テーマ仕様書 更新履歴
2024年
2024/08/22更新

2024/08/22更新

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

招待コード機能の改善

招待コード付きのURLを発行できるようになりました。
「設定 > ポイント > ポイントの設定 (opens in a new tab)」の以下を設定することで、マイページ招待コード付きの購入リンクを表示できます。

  • マイページ招待コード付購入リンク発行: 有効
  • 遷移先URL

マイページコード付きの購入リンクでアクセスすると、購入者は招待コードの入力を省略できます。(招待コードを保持してフォームに埋め込むことができます)

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

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

 <!-- ポイント情報 -->
       <!-- 招待コード使用上限数 -->
       {% if base_info.invite_codes_invitee_limit == 0 %}
         無制限
       {% else %}
         {{ base_info.invite_codes_invitee_limit }}
       {% endif %}
 
+      <!-- 招待コード購入リンク -->
+      {% if invite_code_end_path %}
+        {{ invite_code_end_path }}{{ invite_code.number }}
+      {% endif %}
     {% endfor %}
 
   {% endif %}

※あわせてJSタグが変更になります。

-{{ 'shop/base' | javascript_include_tag }}
+{{ 'shop/customer/base' | javascript_include_tag }}

[マイページ]定期受注の商品追加機能の改善

マイページの定期商品画面で、購入済み商品のフレーバー違い、色違いなどの別規格を追加できるようになりました。

mypage > 定期注文詳細画面 基本情報

ec_force/shop/customer/subs_orders/show.html.liquid
ec_force/shop/customer/subs_orders/show.html+smartphone.liquid

 <!-- フラッシュメッセージ -->
 {{ 'notice' | flash: 'alert alert-success', 'text' }}
 {{ 'alert' | flash: 'alert alert-danger', 'text' }}
 {{ 'error' | flash: 'alert alert-danger', 'text' }}
 
+{% if base_info.variant_bulk_changeable_on_mypage? %}
+  <!-- 商品の一括編集リンク -->
+  <a href="/shop/customer/subs_orders/{{ subs_order.number }}/variant_bulk_changes/edit">商品の一括編集</a>
+{% endif %}
+
 <!-- 状態 -->
 {{ subs_order.human_state_name }}

mypage > 定期注文詳細画面 商品の追加

ec_force/shop/customer/subs_orders/variants/show.html.liquid
ec_force/shop/customer/subs_orders/variants/show.html+smartphone.liquid

 <div id="product-show-view">
   <input id="subs-order-number" type="hidden" value="{{ params['id'] }}">
   <input id="variant-sku" type="hidden" value="{{ product.master.sku }}">
 
+  <!-- 定期注文詳細画面 定期商品の一括編集用 -->
+  <input name="redirect_to_page" type="hidden" value="{{ redirect_to_page }}">
 
   <!-- 商品画像 -->

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

ec_force/shop/customer/subs_orders/variant_bulk_changes/edit.html.liquid
ec_force/shop/customer/subs_orders/variant_bulk_changes/edit.html+smartphone.liquid

※新規追加ファイルです。