Shipwire Order Status Tracking. Shipwire is a service that lets you focus on growing your business by removing the hassle of shipping and storage. You can read more about the service at how shipwire works.

In case you already have shipwire service, when shipwire ships an order, the order status can automatically be updated to Shipped on your site. That way you don’t have to manually go through every order to figure out which has been shipped and which has not. Also an order tracking link for each of the carriers (Fedex, UPS and USPS) is provided through the admin customer order interface.

Shipwire Order Status Tracking

Shipwire developer/affiliate link

For many online store administrator, there is a need to add “Shipped” to the standard list of order status. This is because non of the default order status correctly tells customers that their order has been shipped. See complete default list in admin by going to Customers/orders -> Orders -> Edit Status.

Here are steps for adding a new order status value to the order status pull down menu. The same process can be used to add additional values to order status at any time.

1. Open your database in phpMyAdmin; select `orders_status`
2. Run this command:

INSERT INTO `orders_status` (`orders_status_id`, `language_id`, `orders_status_name`) VALUES (’222′, ‘1′, ‘Shipped’);

3. In case you need to add additional values, increment order_status_id to something like 223. Also language_id used here is for ‘english’, to get the correct language_id for your installation, I suggest you check the values in your admin by going to localization -> languages.