Got it!! .. Kinda
I noticed there IS an area for adding in shipping/tax but the value was hardcoded to 0.0!
I added this in to loop through the Tax_groups and grab the value's associated with the products... unfortunately it only uses one value - not sure what would happen if there were multiple tax groups (there should really only be one anyways right??)
Step 1. Open admin/edit_order.php
Step 2. Search for this code-block (line 366 for me):
Code:
if ($ot_class == "ot_shipping") {
$RunningTax += (($AddShippingTax / 100) * $ot_value);
}
Step 3. Add this Directly above the $RunningTax += Line:
Code:
foreach($order->info['tax_groups'] as $key => $value) {
$AddShippingTax = $key;
}
The updated code should be this:
Code:
if ($ot_class == "ot_shipping") {
foreach($order->info['tax_groups'] as $key => $value) {
$AddShippingTax = $key;
}
$RunningTax += (($AddShippingTax / 100) * $ot_value);
}
When you hit "UPDATE" it will correctly use the tax+Shipping. ENJOY!!