When my store sends out an order confirmation, the email shows a line for the tax, but the word "Tax" is missing. I get something like:
Sub-Total: $1.00
Shipping: $4.95
: $0.09
Total: $6.04
It's like this for both the text and HTML versions. If I go into /includes/languages/english/checkout_process.php, the value for tax is set:
define('EMAIL_TEXT_TAX', 'Tax: ');
(There are a whole bunch of spaces after the colon that you can't see in this post.)
It's also set in /includes/languages/english/order.php, if that's what's being used:
define('ENTRY_TAX', 'Tax:');
I've been trying to step through the code, and I can't even find where this is being used. (Searching the files turns up nothing.) The closest I've been able to come is to see that the value should be set in $order_totals in /includes/classes/order.php when it's creating the email, but I can't figure out WHERE it's getting set.
Any clues? This is driving me insane!![]()




