Hi,
Sorry. Meant to post this last night,
The fix for the disparity between the line item and sub total in Admin Orders can be fixed by editing admin/orders.php
circa line 521
change
PHP 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']) .
to
PHP 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']) .
HTH