①ご注文手続き画面で表示
◯商品ごとの「追加ポイント」を表示する場合
以下のタグを「ページ管理>商品購入」の310行目以降に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
{% if BaseInfo.isOptionPoint and Order.Customer is not null %}
{% if orderItem.fixed_point is defined and orderItem.fixed_point is not null %}
<p>{{ 'joolenfixedpointsforproduct4.product.fixed_point.label' | trans }}:{{ orderItem.fixed_point * orderItem.quantity |number_format }}pt</p>
{% endif %}
{% endif %}
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
◯ご注文内の「追加ポイント合計」を表示する場合
以下のタグを「ページ管理>商品購入」の430行目以降に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
<dl class="ec-totalBox__spec">
<dt>{{ 'joolenfixedpointsforproduct4.product.fixed_point.order.edit.total'|trans }}</dt>
<dd>{{ Order.TotalFixedPoint|number_format }} pt</dd>
</dl>
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
②ご注文内容確認画面で表示
◯商品ごとの「追加ポイント」を表示する場合
以下のタグを「ページ管理>商品購入/ご注文確認」の103行目以降に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
{% if BaseInfo.isOptionPoint and Order.Customer is not null %}
{% if orderItem.fixed_point is defined and orderItem.fixed_point is not null %}
<p>{{ 'joolenfixedpointsforproduct4.product.fixed_point.label' | trans }}:{{ orderItem.fixed_point * orderItem.quantity |number_format }}pt</p>
{% endif %}
{% endif %}
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
◯ご注文内の「追加ポイント合計」を表示する場合
以下のタグを「ページ管理>商品購入/ご注文確認」の227行目以降に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
<dl class="ec-totalBox__spec">
<dt>{{ 'joolenfixedpointsforproduct4.product.fixed_point.order.edit.total'|trans }}</dt>
<dd>{{ Order.TotalFixedPoint|number_format }} pt</dd>
</dl>
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
③ご注文履歴画面で表示
◯商品ごとの「追加ポイント」を表示する場合
以下のタグを「ページ管理>MYページ」の69行目以降に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
{% if BaseInfo.isOptionPoint %}
{% if OrderItem.fixed_point is defined and OrderItem.fixed_point is not null %}
<p>{{ 'joolenfixedpointsforproduct4.product.fixed_point.label' | trans }}:{{ OrderItem.fixed_point * OrderItem.quantity |number_format }}pt</p>
{% endif %}
{% endif %}
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
④購入履歴詳細画面で表示
◯商品ごとの「追加ポイント」を表示する場合
以下のタグを「ページ管理>MYページ/購入履歴詳細」の109行目と110行目の間に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
{% if BaseInfo.isOptionPoint %}
{% if orderItem.fixed_point is defined and orderItem.fixed_point is not null %}
<p>{{ 'joolenfixedpointsforproduct4.product.fixed_point.label' | trans }}:{{ orderItem.fixed_point * orderItem.quantity | number_format }}pt</p>
{% endif %}
{% endif %}
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
◯ご注文内の「追加ポイント合計」を表示する場合
以下のタグを「ページ管理>MYページ/購入履歴詳細」の54行目と55行目の間に追加してください。
<!-- ここから 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->
{% if Order.TotalFixedPoint is defined and Order.TotalFixedPoint != 0 %}
<div class="ec-definitions">
<dt>{{ 'joolenfixedpointsforproduct4.product.fixed_point.order.edit.total'|trans }}</dt>
<dd>{{ Order.TotalFixedPoint|number_format }} pt</dd>
</div>
{% endif %}
<!-- ここまで 商品追加ポイント設定プラグイン for EC-CUBE 4.0〜4.1 -->