商品画像10枚表示 モバイル版有料テンプレート用

このページでは、レギュラーより上のプランにプランアップした際に、
レギュラーより上のプランで標準機能である商品画像10枚表示を行う為の、既存テンプレートの修正方法を説明しています。

商品画像10枚表示は、レギュラーより上のプランをご利用のショップ様のみとなります。それ以外のプランをご利用いただいているショップ様が、本修正を行いましても、
商品画像10枚表示は行えません。ご了承ください。

2013年5月13日以降にダウンロードされたショップテンプレートには、本修正を行う必要はございません。

商品画像10枚表示用タグ追加方法 … モバイル版有料テンプレート用

対応方法は以下の2通りございます。どちらかの対応をお願いします。

■ 対応方法1:再度テンプレートを追加する 【※推奨】

■ 対応方法2:テンプレートの該当箇所を修正、または追加する

テンプレートの編集を行う場合は、【商品詳細】HTMLを編集します。
使用するテンプレートを確認し、編集を行ってください。
» 各テンプレート修正内容へのリンク一覧はこちら


※修正タグを変更する位置が不明な場合は、ご利用中のテンプレートと同じテンプレートを追加していただき、
修正用タグが記述されている位置をご確認ください。

商品画像10枚表示用タグ追加手順

使用しているテンプレートを確認

【商品詳細】HTML に追加するタグは各テンプレート毎に異なります。対象のテンプレートをご確認ください。

タグの挿入箇所を確認

【テンプレート別挿入タグ一覧表】の、 <!-- 黄色いマークの文字列 --> が挿入箇所の目安となりますので、
文字列を【商品詳細】HTML 内にて検索します。

指定タグをコピー、挿入

・検索後、各テンプレートの追加位置をご確認いただき、 ピンクエリアの追加タグ を挿入してください。

・テンプレートによっては、一部タグを削除していただいた後、タグを追加していただく必要がございます。
削除する必要のタグがある場合、 削除該当部分を グレーエリア で表示しています。
 グレーエリア 部分のタグを削除後に、 ピンクエリアの追加タグ 部分のタグを挿入してください。

・追加するHTMLタグには、画像を1枚ずつ追加するタグと、画像をまとめて出力するタグの2通りがございます。
どちらのタグをご利用いただいても、商品画像は表示されますので、
テンプレートのカスタマイズなど行っている場合は、カスタマイズに合ったHTMLタグをご利用ください。

■ Paper and Wood

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ Unknown(pink)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ Unknown(green)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ Unknown(red)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ Unknown(yellow)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ JapanStyle

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ fluffy

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ オフィススタンダード(RED)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ オフィススタンダード(BLACK)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ オフィススタンダード(BLUE)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ComfortableTime

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ JIGGY

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ハリウッドヒルズ

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ジュエリー&ウォッチ(グレー)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ジュエリー&ウォッチ(ブラック)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ファッション(ブルー)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ファッション(ホワイト)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ファッション(オレンジ)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ファッション(ピンク)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ カスタム(ピンク)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ カスタム(オレンジ)

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

■ ファッションサテライト

商品詳細HTML - 画像を1枚ずつ追加する場合のタグ
    追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $product.ot4_url != ""}>l<a href="<{$product.ot4_url}>">4</a><{/if}>
<{if $product.ot5_url != ""}>l<a href="<{$product.ot5_url}>">5</a><{/if}>
<{if $product.ot6_url != ""}>l<a href="<{$product.ot6_url}>">6</a><{/if}>
<{if $product.ot7_url != ""}>l<a href="<{$product.ot7_url}>">7</a><{/if}>
<{if $product.ot8_url != ""}>l<a href="<{$product.ot8_url}>">8</a><{/if}>
<{if $product.ot9_url != ""}>l<a href="<{$product.ot9_url}>">9</a><{/if}>
<{/if}>

商品詳細HTML - 画像をまとめて出力するタグ
    削除タグ         追加タグ

<!-- その他画像 -->
<{if $product.ot_num > 0}>
画像 
<{if $product.ot1_url != ""}><a href="<{$product.ot1_url}>">1</a><{/if}>
<{if $product.ot2_url != ""}>l<a href="<{$product.ot2_url}>">2</a><{/if}>
<{if $product.ot3_url != ""}>l<a href="<{$product.ot3_url}>">3</a><{/if}>
<{if $otherimg_num != 0}>
画像<{section name=num loop=$otherimg}><{if $otherimg[num].url != ""}>|<a href="<{$otherimg[num].url}>"><{$smarty.section.num.index+1}></a><{/if}><{/section}>
<{/if}>

この記事は役に立ちましたか?
  • はい (233)
  • いいえ (8)
2018.02.26