Prestag0od Posted January 25, 2021 Share Posted January 25, 2021 (edited) In prestashop 1.7 I have declared products discount in amount and not in percentage. But in product page i want to show the corresponding percentage instead of the discount amount. The lines of code that show a percentage or amount of discount depending on what you put in the admin are: <!-- {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} --> Any idea how i can calculate the discount rate from the discount amount and show it in place of discount amount? Edited January 25, 2021 by Prestan0ob (see edit history) Link to comment Share on other sites More sharing options...
Inter Svetainė Posted May 13, 2021 Share Posted May 13, 2021 Did You try just simple math in templates with price_with_vat and price_without_vat ? 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