@rthur Posted March 22, 2021 Share Posted March 22, 2021 Bonjour, J'ai un souci lorsque je mets en mode debug. Ce souci vient du fait que lorsque je mets une reduction sur un produit j'affiche cette réduction sur la miniature dans product-grid-view.tpl. Voici le code qui pose problème : <div class="jhpproduct-image"> <div class="jhpproduct-image-inner"> {if $product.has_discount} {if $product.discount_type === 'percentage'} <span class="discount-percentage-grid-fond"> <span class="discount-percentage-grid-font">-{l s='%percentage%' d='Shop.Theme.Catalog' sprintf=['%percentage%' => $product.discount_percentage_absolute]}</span></span> {else} <span class="discount-percentage-grid-fond"> {***** Cette ligne pose probleme *****} <span class="discount-percentage-grid-font">Économisez {($product.discount_amount_to_display/1.20)|string_format:"%d"|replace:"-":""|replace:".":","} €</span></span> {/if} {/if} </div> </div> Je comprends l'erreur mais je ne vois pas comment faire pour afficher le montant de la réduction sans le "-", avec une virgule au lieu d'un point et le signe €. Voici l'erreur : Merci de votre aide Prestashop 1.7.5 Link to comment Share on other sites More sharing options...
doekia Posted March 22, 2021 Share Posted March 22, 2021 La division (/) n'existe pas en smarty, il faut passer par la fonction {math } Link to comment Share on other sites More sharing options...
@rthur Posted March 22, 2021 Author Share Posted March 22, 2021 6 minutes ago, doekia said: La division (/) n'existe pas en smarty, il faut passer par la fonction {math } Merci. J'essaie ce code mais ca n'affiche aucun résultat : {math equation = "x/y" x=$product.discount_amount_to_display y="1.20"|string_format:"%d"|replace:"-":""|replace:".":","} 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