OK this is how you fix it...
Open invoice.php in the admin directory and scroll down to line 199, it should look like this:
All we need to do is expand the zen_add_tax() function to also enclose the multiplication by quantity...Code:$currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']) * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) .
Like this:
Simple huh.Code:$currencies->format(zen_add_tax($order->products[$i]['final_price'] * $order->products[$i]['qty'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) .![]()



