Effet de bord de l'affichage du prix le plus bas (pour prix dégressifs) --> on affiche TOUJOURS un prix.

This commit is contained in:
2019-11-27 14:48:09 +01:00
parent 8acb432cff
commit 355e9da24c
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<?php
return [
return array(
'%nb Item' => '%nb élément',
'%nb Items' => '%nb éléments',
'+' => '+',
@@ -260,4 +260,4 @@ return [
'update' => 'mettre à jour',
'with:' => 'avec :',
'404' => '404',
];
);

View File

@@ -71,6 +71,8 @@
{/loop}
{if $prix_mini > 0}
<span class="regular-price col-xs-12"><span itemprop="price" class="price">{intl l="From %price" price={format_money number=$prix_mini}}</span></span>
{else}
<span class="regular-price col-xs-12"><span itemprop="price" class="price">{format_money number=$BEST_TAXED_PRICE}</span></span>
{/if}
{/if}
</div>