定数

ウィジェット固有定数
$this_widget . refid ウィジェットID
. name ウィジェット名
. cart_url カートURL
. order_url 注文画面URL
. subtotal_price カート内小計金額
カート内容
. cart . {i} . id ID
. name バリエーション名
. cnt 数量
. price 単価
. subtotal_price 小計金額(数量×単価)
商品レコード
. record . title 商品レコードタイトル

プロトタイプ

<section>

<table class="width-100 striped">

<thead>

<tr>
<th>商品名</th>
<th>単価</th>
<th>数量</th>
<th>小計</th>
</tr>
</thead>

<tbody>

{?foreach from=$this_widget.cart item=value?}
<tr>
<td>{?$value.record.title?} {?$value.variation_name?}</td>
<td>¥{?$value.price|number_format?}</td>
<td>{?$value.cnt?}個</td>
<td>¥{?$value.subtotal_price|number_format?}</td>
</tr>
{?/foreach?}

<tr>
<td colspan="4" class="subtotal_price"><label class="label">小計</label>¥{?$page.subtotal_price|number_format?}</td>
</tr>

</tbody>

</table>

<div><a href="{?$this_widget.cart_url?}" class="btn">カートへ移動</a><a href="{?$this_widget.order_url?}" class="btn">注文確定</a></div>

</section>