Jump to content

[RESOLU] Affichage du prix avant et après réduction


Recommended Posts

Bonjour à tous,

Je cherche à afficher sur mon site, dans la liste des produits (donc fichier product-list.tpl), le prix avant réduction ainsi que le prix après réduction, histoire que mes clients puissent apprécier l'aubaine !

Seulement je galère un peu...

La réduc est bien affichée sur la page produit, grâce à la ligne suivante:

{convertPrice price=$product->getPriceWithoutReduct()}



mais une fois insérée dans mon product-list.tpl, à cet emplacement:

 <!-- {if $product.new == 1}{l s='new'}{/if} -->
{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}
               {if $product.on_sale}
{l s='Green Price'}
                   <!-- On change le texte avec nos Green Price {l s='On sale!'} -->

               {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))}

#################### ICI ##############

{l s='Price lowered!'}



Non seulement le prix avant reduction ne s'affiche pas, mais en plus ça modifie l'affichage de ma page (la couleur du background disparait).

Quelqu'un saurait-il me dire comment utiliser cette fonction getPriceWithoutReduct() ?

En vous remerciant !

Link to comment
Share on other sites

Super, merci Divine.

Pour ceux qui auraient besoin, la partie de code qu'il me fallait est la suivante (trouvée sur le poste de Divine):

               {if $product.reduction_percent}

{displayWtPrice p=$product.price_without_reduction}{if $priceDisplay == 2} {l s='-Tx' mod='homefeatured'}{/if}
               {/if}



Qui permet d'afficher le prix barré =)

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...