activityshopper,
No, this is not a current feature. Good idea though, maybe I'll add this for the next major version.
To do this, you'll want to find this:
Code:
o.orders_status != 3
Keep in mind when you search that sometimes I put a space between the s and the ! and the = and the 3, and sometimes I don't, and sometimes I put it on one side. (Sorry...sloppy coding...)
Right after this (not the next line...literally right after this) add:
Code:
AND o.orders_status != 9
Just change the 9 to whatever other status id number you want to remove from the tracking page.
You'll find this in these files:
admin/confirm_track.php -- This one will fix your problem on the enter tracking page.
admin/send_pos.php -- This file is the send pos/resend po page so it will affect how orders are treated here. You might not need to change it here if your only problem is the tracking page.
If you decide to buy version 4, the code you'll look for is slightly different, but the code you add would be the same. Here's what to look for:
Code:
o.orders_status != '$status_shippedorder'
That should solve your problem. :)
Bookmarks