In the code, you'll see that the taxTotal variable is updated and the orderTotal variable never gets touched.
The fix is simple, just edit the /ConLib/GoogleAnalyticsWidget.ascx.cs file and find this code:
Code: Select all
switch (item.OrderItemType)
{
case OrderItemType.Shipping:
case OrderItemType.Handling:
shippingTotal += extendedPrice;
break;
case OrderItemType.Tax:
taxTotal += extendedPrice;
break;
default:
break;
}
taxTotal += extendedPrice;
Code: Select all
taxTotal += extendedPrice;
Code: Select all
orderTotal += extendedPrice;
