Hi,
It says in the KB -
{tag_productsubtotal} = Total price of all products excluding tax in the cart
But when the items are discounted it's the wrong price that is displayed. It only shows the prediscounted total which is super confusing and incorrect as that is not what the customers are paying.
Ie there is a bug not letting the {tag_productsubtotal} show the real total price excl tax.
There are several tags to use in the ecommerce.
Sub total is a "Pre discount" value.
You should use the _invoice tag variations.
Here is a cart summary snippet I do for example:
| <table> | ||||||
| <tr class="product-amount"> | ||||||
| <td class="shead">Cart items:</td> | ||||||
| <td class="sprice">{tag_totalunits}</td> | ||||||
| </tr> | ||||||
| <tr class="product-pricing"> | ||||||
| <td class="shead">Product Total:</td> | ||||||
| <td class="sprice">{tag_productgrandtotal}</td> | ||||||
| </tr> | ||||||
| <tr class="gift-pricing"> | ||||||
| <td class="shead">Gift Saving:</td> | ||||||
| <td class="sprice">{tag_giftvoucheramount}</td> | ||||||
| </tr> | ||||||
| <tr class="discount-pricing"> | ||||||
| <td class="shead">Discounts:</td> | ||||||
| <td class="sprice">{tag_invoicediscountamount}</td> | ||||||
| </tr> | ||||||
| <tr class="shipping-total"> | ||||||
| <td class="shead">Shipping Cost:</td> | ||||||
| <td class="sprice">{tag_shippingtotal}</td> | ||||||
| </tr> | ||||||
| <tr id="total-cost"> | ||||||
| <td class="shead">Total Cost:</td> | ||||||
| <td class="sprice">{tag_invoicetotal}</td> | ||||||
| </tr> | ||||||
| </table> |
Tags are outlined here:
http://helpx.adobe.com/business-catalyst/kb/tags---quick-reference.htm l
In terms of the invoice - Yes the totals shown there do not currently show discount code stuff etc which is a known bug and due to be fixed soon.
North America
Europe, Middle East and Africa
Asia Pacific