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>