me too, I can input them, and they are applied, but where it used to say “discount amount:” or something, now is blank. no table row in cart totals or in checkout review.
same is true for cart, order view, print view, etc…
I hope I can help You with displaying discount in email, order view and print page.
You should look into *.phtml files under app/design/frontend/default/default/template/ (and maybe also somewhere else)
that contains following line:
<?php if ($_order->getDiscountAmount() > 0): ?>
try to change it to:
<?php if (((float)$_order->getDiscountAmount()) != 0): ?>
You should also find:
<?php if ($_invoice->getDiscountAmount() > 0): ?>
try to change it to:
<?php if (((float)$_invoice->getDiscountAmount()) != 0): ?>
<?php if ($_creditmemo->getDiscountAmount() > 0): ?>
try to change it to:
<?php if (((float)$_creditmemo->getDiscountAmount()) != 0): ?>
list of files under /templates/:
rss/order/details.phtml
sales/order/items.phtml
sales/order/print.phtml
sales/order/invoice/items.phtml
sales/order/print/items.phtml
email/order/items.phtml
email/order/invoice/items.phtml
email/order/creditmemo/items.phtml
I didn’t test with invoices and creditmemos. But order email, order view page and print order page now displays discount for me.
Sorry posting hear but my problem is when i try to make an shopping cart rules with a condition payment method, when i select payment method, the page is redirected to dashboard, anyone has this problem too?