1. 商品詳細
  2. $item.group.name

$item.group.name

サンプルコード

<{if $item.group.has_item}>
    <div>
    <h2><{$item.group.name}></h2>
    <ul>
        <{section name=i loop=$item.group.list max=8}>
        <li>
            <div>
            <{if $item.group.list[i].is_soldout}>
                <p>SOLD OUT</p>
            <{elseif $item.group.list[i].is_sale}>
                <p>SALE</p>
            <{/if}>
            </div>

            <div>
                <a href="<{$item.group.list[i].url}>"><img src="<{$item.group.list[i].image_L}>" alt="<{$item.group.list[i].name}>"></a>
            </div>
            <{if $item.group.list[i].base_category.url}>
                <p><a href="<{$item.group.list[i].base_category.url}>"><{$item.group.list[i].base_category.name}></a></p>
            <{/if}>
                <p><a href="<{$item.group.list[i].url}>"><{$item.group.list[i].name}></a></p>
            <{if $item.group.list[i].is_sale}>
                <p>¥<{$item.group.list[i].original_price|number_format}><span>(税込)</span></p>
                <p>¥<{$item.group.list[i].price|number_format}><span class="tax">(税込)</span>
                <span>[<{$item.group.list[i].sale_rate}>%OFF</span>]</p>
            <{else}>
                <p>¥<{$item.group.list[i].price|number_format}><span>(税込)</span></p>
            <{/if}>

            <div>
                <{if $item.group.list[i].is_soldout}>
                    <div>売り切れ</div>
                <{else}>
                    <a href="<{$item.group.list[i].cart_entry_url}>">カートに入れる</a>
                <{/if}>
            </div>
        </li>
        <{/section}>
    </ul>
    </div>
<{/if}>

HTML出力イメージ

<div>
    <h2>商品グループ名</h2>
    <ul>
        <li>
            <div>
                <a href="/view/item/商品URL"><img src="商品画像URL" alt="商品名"></a>
            </div>
                <p><a href="/view/item/商品URL">商品名</a></p>
                <p>¥販売価格<span>(税込)</span></p>
            <div>
                <a href="#makeshop-item-cart-entry-url:商品URL番号">カートに入れる</a>
            </div>
        </li>
    </ul>
    </div>