Jump to content

[Résolu] Affichage prix barré sur liste produit


Recommended Posts

Bonjour,

J'ai activer l'option pour avoir les prix barré (Réduction dans fiche produit)
Cela me met bien le prix barré et le prix final sur ma fiche produit!!

Or je voudrais aussi avoir le prix barré dans la liste de tous les produits aussi.

Voir image jointe

24214_Q9f0RToKq6eCHMelJm5E_t

Link to comment
Share on other sites

Apres plusieur recherche, je suis arrivé au résultat en modifiant la page product-list.tpl

Voici le code à remplacer:


div class="right_block">
               {if $product.on_sale}
{l s='On sale!'}
{convertPrice price=$product.price_without_reduction} 
{convertPrice price=$product.price}    
               {elseif ($product.reduction_price != 0 || $product.reduction_percent != 0) && ($product.reduction_from == $product.reduction_to OR          ($smarty.now|date_format:'%Y-%m-%d' <= $product.reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product.reduction_from))} 
{convertPrice price=$product.price_without_reduction}  
{convertPrice price=$product.price}
               {else}
{convertPrice price=$product.price}

               {/if}
               {if ($product.allow_oosp OR $product.quantity > 0) && $product.customizable != 2}
{l s='Add to cart'}
               {else}
{l s='Add to cart'}
               {/if}
{l s='View'}




Post modifié avec balises 'code' pour une meilleure lisibilité -yoya971

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...