Schönen Sonntag wünsche ich.
Ich mache gerade meine ersten Schritte im JTL Template und will dabei meinem Produkt Slider Inhalt sortieren. Verantwortlich hierfür ist wohl das foreach
aus der product_slider.tpl. Kann mir jemand sagen wie ich es ergänzen muß damit nach der Artikelnummer oder der ArtikelID des Artikels sortiert wird???
Ich mache gerade meine ersten Schritte im JTL Template und will dabei meinem Produkt Slider Inhalt sortieren. Verantwortlich hierfür ist wohl das foreach
Code:
{foreach name="sliderproducts" from=$productlist item='product'}
Code:
{strip}
{if $productlist|@count > 0}
{if !isset($tplscope)}
{assign var='tplscope' value='slider'}
{/if}
<section class="panel{if $title|strlen > 0} panel-default{/if} panel-slider{if $tplscope === 'box'} box box-slider{/if}">
<div class="panel-heading">
{if $title|strlen > 0}
<h5 class="panel-title">
{$title}
{if !empty($moreLink)}
<a class="more pull-right" href="{$moreLink}" title="{$moreTitle}" data-toggle="tooltip" data-placement="right">
<i class="fa fa-arrow-circle-right"></i>
</a>
{/if}
</h5>
{/if}
</div>
<div{if $title|strlen > 0} class="panel-body"{/if}>
<div class="{if $tplscope == 'box'}evo-box-slider{else}evo-slider{/if}">
{foreach name="sliderproducts" from=$productlist item='product'}
<div class="product-wrapper{if isset($style)} {$style}{/if}">
{include file='productlist/item_slider.tpl' Artikel=$product tplscope=$tplscope}
</div>
{/foreach}
</div>
</div>
</section>{* /panel *}
{/if}
{/strip}