
Originally Posted by
rebel tech
Anybody have an answer to this?
I have noticed that Edit Order adds TAX to the Delivery Fee. So if I minus the TAX whiling editing then it is fine - but then the order (view from outside Edit Order) shows the amount minus TAX.
If case anybody is having the same problem. I found a solution (please check to make sure correct)
I went to admin/edit_order.php and found line 2053
PHP Code:
echo ' <td align="right" class="' . $TotalStyle . '">' . ENTRY_SHIPPING_TAX_RATE . "<input class='amount' name='shippingtaxrate' size='4' value='" . SHIPPING_TAX . "'> % "; /* . '</td>' . "\n"; */
I change this to:
PHP Code:
echo ' <td align="right" class="' . $TotalStyle . '">'; /* . '</td>' . "\n"; */
Please only use this if you don't want Edit-Order to add the TAX onto the delivery fee again.
Bookmarks