1

I want to add the discount after apply the coupon code in the cart page.I'm having the output as follows:

enter image description here

Now I want to add the Dsicount with its corresponding amount after subtotal

Thank in advance! Guide me!

PHP Learner
  • 111
  • 2
  • 4
  • 15

1 Answers1

0

If you are using discount in amount in add to cart form :

<input type="hidden" value=".50" name="discount_amount">
<input type="hidden" value=".50" name="discount_amount2">

If you are using discount in rate in add to cart form:

<input type="hidden" value="50" name="discount_rate">
<input type="hidden" value="50" name="discount_rate2">

You can try this solution.

Regrads,

shahana

shahana
  • 41
  • 8