Jump to content

Edit History

Manu-41

Manu-41


1

j'ai réussi à afficher le prix le plus bas avec ce code:

{assign var="lowest_price_formatted" value=""}
{assign var="lowest_price_amount" value=-1}

{foreach from=$listing.products item=product}
    {if $product.price_amount < $lowest_price_amount || $lowest_price_amount == -1}
        {$lowest_price_amount = $product.price_amount}
        {$lowest_price_formatted = $product.price}
    {/if}
{/foreach}

<p class="hidden">Prices starting from {$lowest_price_formatted}</p>

 

Manu-41

Manu-41

j'ai réussi à afficher le prix le plus bas avec ce code:

{assign var="lowest_price_formatted" value=""}
{assign var="lowest_price_amount" value=-1}

{foreach from=$listing.products item=product}
    {if $product.price_amount < $lowest_price_amount || $lowest_price_amount == -1}
        {$lowest_price_amount = $product.price_amount}
        {$lowest_price_formatted = $product.price}
    {/if}
{/foreach}

<p class="hidden">Prices starting from {$lowest_price_formatted}</p>

par contre, je n'arrive pas à afficher celui le plus grand.

J'ai tenté de remplacer lowest par highest, mais ça ne fonctionne pas.

×
×
  • Create New...