Jump to content

Edit History

Hello @Carpe_diem,

To show the current total discount on the cart page above the total price, follow the below steps:

Step 1: First, locate the discount coupon generated in the PrestaShop back office.
Step 2: Next, replace the existing code with the following Smarty code instead of "$cart.totals.discount":

{if $cart.vouchers.added}
  {foreach from=$cart.vouchers.added item=voucher}
    <span class="label">Discount</span>
    <span>{$voucher.reduction_formatted}</span>
  {/foreach}
{/if}

By using this code, the total discounts will be printed on the cart page.
 

Hello,

To show the current total discount on the cart page above the total price, follow the below steps:

Step 1: First, locate the discount coupon generated in the PrestaShop back office.
Step 2: Next, replace the existing code with the following Smarty code instead of "$cart.totals.discount":

{if $cart.vouchers.added}
  {foreach from=$cart.vouchers.added item=voucher}
    <span class="label">Discount</span>
    <span>{$voucher.reduction_formatted}</span>
  {/foreach}
{/if}

By using this code, the total discounts will be printed on the cart page.
 

×
×
  • Create New...