guberish Posted October 15, 2013 Posted October 15, 2013 Hello, I hope someone can help me, when I deactivated my Paypal IPN payment module any orders that came are listed twice in the admin side, but if the order is selected both of the orders are highlighted at the same time, when I view the order, sub-total, shipping, tax and total are displayed twice but the total shows correctly, it's not calculating the costs twice. The customer can also see these "doubles" from there end too. I removed the code for the PayPal IPN module from all files thinking maybe that had something to do with it to no avail. I would really appreciate any type of assistance. Thank you in advance. Jane N. Quote
guberish Posted March 10, 2014 Author Posted March 10, 2014 In case anyone comes across this problem here's the fix, in catalog/admin/orders.php (around line 295 for me) replace $orders_history_query = tep_db_query("select orders_status_history_id, orders_status_id, date_added, customer_notified, comments from " . TABLE_ORDERS_STATUS_HISTORY . " where orders_id = '" . tep_db_input($oID) . "' order by date_added"); with //$orders_history_query = tep_db_query("select orders_status_history_id, orders_status_id, date_added, customer_notified, comments from " . TABLE_ORDERS_STATUS_HISTORY . " where orders_id = '" . tep_db_input($oID) . "' order by date_added"); $orders_history_query = tep_db_query("select orders_status_id, date_added, customer_notified, comments from " . TABLE_ORDERS_STATUS_HISTORY . " where orders_id = '" . tep_db_input($oID) . "' order by date_added"); Jane N. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.