Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.


guberish

Recommended Posts

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.

Link to comment
Share on other sites

  • 4 months later...

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...