I have a customer level that receives a 10% discount. I want the customers to see how much they are saving with their discount when they check out. Is there a way to show the subtotal before the discounts are applied? All the items in the shopping cart show their already discounted price, and the subtotal shows the discounted price. I want to at least get the original subtotal before discounts, something like:
Code:
Total Before Savings: $19.99
Member Discount: -$2.00
Subtotal: $17.99
I tried setting the ShoppingCart.SubTotal() function's includeDiscount variable to false, but I get the same value no matter what I put. Any Help?