Byrong Posted July 20, 2020 Share Posted July 20, 2020 (edited) Bonjour, j'ai un petit soucis dans l'affichage des prix... Voici le code {if (floatval($product.price) > 0)} <div class="product-price-and-shipping"> {if $product.has_discount} {hook h='displayProductPriceBlock' product=$product type="old_price"} <span class="sr-only">{l s='Regular price' d='Shop.Theme.Catalog'}</span> <span class="regular-price">{$product.regular_price}</span> {if $product.discount_type === 'percentage'} <span class="discount-percentage discount-product">{$product.discount_percentage}</span> {elseif $product.discount_type === 'amount'} <span class="discount-amount discount-product">{$product.discount_amount_to_display}</span> {/if} {/if} {hook h='displayProductPriceBlock' product=$product type="before_price"} <span class="sr-only">{l s='Price' d='Shop.Theme.Catalog'}</span> <span itemprop="price" class="price">{$product.price}</span> {hook h='displayProductPriceBlock' product=$product type='unit_price'} {hook h='displayProductPriceBlock' product=$product type='weight'} </div> {else} <div class="product-price-and-shipping"> <span itemprop="price" class="price">{l s='To discuss' d='Shop.Theme.Catalog'}</span> </div> {/if} En gros, si le prix est à 0, on remplace le prix de la miniature par "A discuter". SI je suis sur le site en français, pas de soucis, il remplace bien les montants 0 par "A discuter" par contre si je bascule le site en anglais... il indique "To discuss" sur tous les produits... Je ne pense pas avoir fait d'erreur et je ne prend pas en compte la langue dans ma condition donc pourquoi ce changement? Merci pour votre aide Edited July 20, 2020 by Byrong (see edit history) Link to comment Share on other sites More sharing options...
Byrong Posted July 20, 2020 Author Share Posted July 20, 2020 J'ai trouvé mon problème. Je dois utilisé la variable $product.price_amount plus que $product.price Bonne journée 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