while adding products in cart - I can see the appropriate discounts.
but when clicking on checkout review page -
the discounts are shown in cart pane, and not in the total payment pane.

if from the checkout review page I click on 'back' button,
and then click on "Checkout Review" again -

it all seems fine, and discounts are shown also in the total payment.

Comments

panvera’s picture

I am having similar problems. The discount show up until the very end and when the customer hits submit, they are charged for the full amount and no sign of the discount in the bottom payment information.

kscheirer’s picture

I'm seeing this problem as well. Except even when following the instructions in #1 (hit back, and then checkout review again) the discount is always missing from the total payment pane.

gabble’s picture

+1

Anonymous’s picture

gabriel.achille’s picture

StatusFileSize
new921 bytes

Hi
I spend almost a day somewhere around this issue (Discounts not shown in Checkout Review page). The solution mentioned in #4 wasn't working for me. Until I found an explanation in a bad initialization of variable: the attribute variable uc_discounts_is_fully_discounted stay set to true during repetitive call to functionget_discounts_for_order in
But I'm running Apache on Windows XP SP3 - PHP 5.3.8 (Drupal 6.26) so It might be specific to my environment.
Here is the patch that work for me.

giorgosk’s picture

I had this problem when disabling discount pane
admin/store/settings/checkout/edit/panes

and following this issue #1067440: Discounts not carried through to checkout review and order if discount pane not displayed realized it might be the disabled pane was the problem but did not want to try the patch as it was not clear that it was going to be accepted by the module maintainer

I reenabled the discount pane and all was working fine

I ended up hidding the pane using CSS since I was not using any CODES

#uc_discounts-pane {
	display: none;
}
retiredpro’s picture

thanks gabriel.achille. I had the same issue with checkout review page not properly apply discount and your patch from post #5 fixed it for me.