Jump to content

Edit History

Prestag0od

Prestag0od

In prestashop 1.7 I have declared products discount in amount and not in percentage.

1429113771_.png.2e074d73bb00d32809a834c2a5fc65b1.png

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?

Prestag0od

Prestag0od

In 1.7 I have declared products discount in amount and not in percentage.

1429113771_.png.2e074d73bb00d32809a834c2a5fc65b1.png

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?

×
×
  • Create New...