by AdvancedCreation
4.8 (10 reviews)
ShipWorks Connector for Woocommerce
Our plugin ShipWorks Connector allows Woocommerce to synchronize with Shipworks.
Compatible with WP 7
vtrunk
Current Version vtrunk
Updated 1 month ago
Last Update on 17 Dec, 2025
Synced 6 hours ago
Last Synced on
Rank
#11,345
-13 this week
Active Installs
300+
—
No change
KW Avg Position
2
—
No change
Downloads
44K
+4 today
Support Resolved
0%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(10 reviews)
Next Milestone 400
300+
400+
982
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 85 more installs to reach 400+
Rank Changes
Current
#11,345
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.8
10 reviews
Overall
96%
5
9
(90%)
4
0
(0%)
3
1
(10%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| shipworks | 2 | — | Tag | 7 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Dec 17, 2025
- Requires WP
- 3.0.1+
- Tested Up To
- 7
- PHP Version
- N/A
- Author
- AdvancedCreation
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 10
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Google Analytics for WooCommerce
200K+ installs
#275
FiboSearch – Ajax Search for WooCommerce
100K+ installs
#285
YITH WooCommerce Compare
100K+ installs
#312
Frequently Asked Questions
Common questions about ShipWorks Connector for Woocommerce
In ShipWorks go into the menu in Manage -> Actions. A window opens and there should be an action that is running when "A shipment is processed" and which task is "Upload the shipment details". If not create one with the appropriate store. So the details of that shipment are automatically updated online when you ship your orders. I have an error "Reference to undeclared entity 'lsaquo' This error is most of the time a redirection on your website, it could be www to no www or http to https, to find out tape your URL website in a browser and your module URL should start by that, per example for adv.design: https://adv.design/
Error 406 is meaning your hosting have a mod_security module on their server. So you have to contact your hosting to ask them to remove it for your account. Sometimes they will need your IP to unlock it only for your computer.
Please deactivate all plugin that could block an external direct connection like a plugin firewall or the plugin query monitor. You can also try to whitelist our IPs and your IPs where Shipworks is installed.
Please contact us at contact@advanced-creation.com, we will fix the bug as soon as possible. (Most of the time we are fixing bugs in less than 24h) If you have any questions or issues about the plugin don't hesitate to contact us : contact@advanced-creation.com. We also have an online chat on our website Website I have an error wrong credentials Your username and password don't match between your website and your Shipworks * Open your Store Connection in Shipworks (Manage -> Stores -> Edit -> Store Connection) * Go in your website dashboard -> Shipworks Connector -> Settings * And modify your username and password, it should be the same on both side
Please whitelist our IP to fix this issue: 147.135.15.26
You can find it on internet by clicking on this link: http://www.whatismyip.com/ Wordpress Multi Site Instructions. Please do not activate the plugin network-wide. Activate the plugin on each instance new sub website and the plugin will work correctly. Woocommerce Order Delivery To add columns Shipping and Delivery by date, click right in Shipworks on Columns label, check Ship By Date (for the Shipping by Date) and check Custom Field 1 (For the Delivery by Date) Add Meta(s) on orders To add a meta on an order, you can add and update this function (to add in functions.php in your theme) //this function add a custom fiel on all orders, you might want to specify all order containing a specific product, or a specific delivery add_action( 'woocommerce_new_order', 'shipAdv_add_custom_order_meta', 10, 1 ); function shipAdv_add_custom_order_meta( $order_id ) { // Get the WC_Order object $order = wc_get_order( $order_id ); // Replace 'Value ...' by your meta value // You can add up to 5 Custom Fields, please use this meta for it _shipworks_custom_1 / _shipworks_custom_2 etc. $order->update_meta_data( '_shipworks_custom_1', 'Value from checkout field' ); $order->save(); } Add Meta(s) on items To add a meta on items in an order, you can add and update this function (to add in functions.php in your theme) //this function add a meta on the product/item with the product id 143 of each new orders add_action( 'woocommerce_new_order_item', 'shipAdv_add_custom_item_meta', 10, 3 ); function shipAdv_add_custom_item_meta( $item_id, $item, $order_id ) { // Get the product ID associated with the order item $product_id = $item->get_product_id(); // Replace "143" by any Product id if ( $product_id == 143 ) { // Add your custom meta data here // Replace shipworks_item_custom_1 by any meta you want, but do not start by "_" or it won't display in Shipworks $item->update_meta_data( 'shipworks_item_custom_1', 'Test meta on the item or the order number '.$order_id ); $item->save(); } } Other Filters We added a filter to modify the notes with the tracking number. Important, status changed in Shipworks append after the tracking number is sent, so if you want to interact with the status of the order, the status will need to be changed before. Example: function modify_tracking_notes($string, $carrier, $tracking, $orderid){ $order = wc_get_order($orderid); if($order){ if($order->get_status() == "split-order"){ return sprintf(("Part of your order %s was shipped on %s via %s. Tracking number is %s."),$order->get_order_number(), $order->get_date_modified(), $carrier, $tracking); } } return sprintf(("Your order %s was shipped on %s via %s. Tracking number is %s."),$order->get_order_number(), $order->get_date_modified(), $carrier, $tracking); } add_filter("adv_tracking_note", "modify_tracking_notes",10, 4);