Is there a token for order subtotal similar to the one for order total?
The order total one is (!ORDERTOTAL!) but ordersubtotal does not work.
Is there a token for order subtotal similar to the one for order total?
The order total one is (!ORDERTOTAL!) but ordersubtotal does not work.
****************************************
Abandoned Cart Notification System Now Available
All versions of ASPDNSF supported - $99/site
VB.NET source code included for $129/site
http://www.slashzero.org/ACN
Is this for analytics / conversion tracking? If you open /web/orderconfirmation.aspx.cs in Notepad, you can see the string replacement for "(!ORDERTOTAL!)". Just copy/paste those three instances, and substitute "subtotal" for "total":Code:... Replace("(!ORDERSUBTOTAL!)", Localization.CurrencyStringForGatewayWithoutExchangeRate(ord.SubTotal(true))) ...
Jon Wolthuis
Thanks for the information. Just updated the code ... hopefully it works.