Bastia Posted May 17, 2010 Share Posted May 17, 2010 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 More sharing options...
Divine Posted May 17, 2010 Share Posted May 17, 2010 Bonjour,Peut-être peux-tu t'inspirer de la solution donnée dans ce post:http://www.prestashop.com/forums/viewthread/51850/integration/resolu_ajouter_prix_barres_dans_bloc_produits_phares__63 Link to comment Share on other sites More sharing options...
Bastia Posted May 18, 2010 Author Share Posted May 18, 2010 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now