We'll create fresh WordPress site with Shipment Tracker for Woocommerce installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Most comprehensive shipment tracking plugin that extends your woocommerce store with shipment related features. Keeps you & your customers informed about shipment movement.
Supported Shipping Aggregators
Easily keep track of your orders’ shipment whether you ship them manually or use a third party shipping company. Keep yourself and your customers informed about the shipment movements.
Automatic syncing of shipment tracking data is supported if you are using a shipping aggregator. This plugin currently support following shipping aggregators: Shiprocket, Shyplite and Nimbuspost to synchronize tracking information of your Woocommerce orders. Easy setup, many configurable options for sync frequency, default provider etc.
If want us to integrate any aggregator, just get in touch with us and we’ll do it for you.
Shipment data is displayed in following area to the customers:
1. My account orders list.
2. My account order details page.
3. Beautiful order tracking page (can be created via shortcode).
4. Shipment movement updates can be sent via sms through small php code.
5. Order notification emails (via emails sent after adding customer notes).
Other must-have plugin by “Bitss Techniques”:
1. Filter to add/modify Shipment Statuses defined in the plugin.
add_filter( 'bt_sst_shipping_statuses', 'bt_sst_shipping_statuses_filter', 10, 1 );
function bt_sst_shipping_statuses_filter($statuses){
$statuses["packed"] = "Order Packed";
$statuses["dispatched"] = "Order Dispatched ";
return $statuses;
}
add_filter( 'bt_sst_shipping_status_message', 'bt_sst_shipping_status_message_filter', 10, 2 );
function bt_sst_shipping_status_message_filter($status_message,$status){
if($status == "packed"){
$status_message = "Your order has been packed & will be dispatched soon.";
}else if($status == "dispatched"){
$status_message = "Our delivery agent is on the way to your location.";
}
return $status_message;
}
2. Tracking Widget Shortcode
[bt_shipping_tracking_form_2]
This shortcode accepts "order_id" parameter to show the tracking widget for a specific order.
Example: [bt_shipping_tracking_form_2 order_id="1234"]
3. Shortcodes to Print Shipment Data
1. [bt_shipment_tracking_url order_id="1234"] : Prints the tracking url.
2. [bt_shipment_status order_id="1234"] : Prints current shipment status (In Transit, Delivered etc)
3. [bt_shipment_courier_name order_id="1234"] : Prints the courier name.
4. [bt_shipment_edd order_id="1234"] : Prints estimated delivery date.
5. [bt_shipment_awb order_id="1234"] : Prints awb number.
Note: Attribute “order_id” is optional on all shortcodes. If order_id is not supplied, the plugin will try to fetch it from current post.
4. Placeholders to Print Shipment Data in Woocommerce Emails
1. {bt_shipment_tracking_url}
2. {bt_shipment_status}
3. {bt_shipment_courier_name}
4. {bt_shipment_edd}
5. {bt_shipment_awb}
5. Action for Shipment Updates
function bt_shipment_status_changed_callback( $order_id,$shipment_obj,$shipment_obj_old) {
//latest shipment tracking:
$courier_name = $shipment_obj->courier_name;
$current_status = $shipment_obj->current_status;
$awb = $shipment_obj->awb;
$tracking_url = $shipment_obj->tracking_url;
//previous shipment tracking:
$old_courier_name = $shipment_obj_old->courier_name;
$old_current_status = $shipment_obj_old->current_status;
$old_awb = $shipment_obj_old->awb;
$old_tracking_url = $shipment_obj_old->tracking_url;
// do stuff
}
add_action( 'bt_shipment_status_changed', 'bt_shipment_status_changed_callback', 10, 3 );
6. Public Functions
1. bt_get_shipping_tracking($order_id);
2. bt_force_sync_order_tracking($order_id);
3. bt_update_shipment_tracking($order_id,$courier_name,$awb_number,$shipping_status,$edd,$tracking_link);
Disclaimer: Woocommerce, Shiprocket, Shyplite, Xpressbees & Nimbuspost are registered trademarks and belong to their respective owners. This plugin is not affiliated with them in any way.