Linux 软件免费装
Banner图

ShipWorks Connector for Woocommerce

开发者 AdvancedCreation
更新时间 2026年8月19日 02:40
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 7.1.0
版权: GPLv2 or later
版权网址: 版权信息

标签

woocommerce woocommerce shipping order manager shipworks shipping manager

下载

5.4.1 5.4.2 5.1.13 5.1.15 5.3.2 5.3.3 5.4.0

详情介绍:

Our plugin ShipWorks Connector allows Woocommerce to synchronize with Shipworks. Your orders in Woocommerce will be download in Shipworks with all information from your customer for the shipping and manage fully your orders in Shipworks. Once you ship it from Shipworks, orders status will be modified in Woocommerce along with the tracking number. Our plugin is free for any website then have less than 30 orders per month, after that, you will need to take a subscription on our website. Subscribe for Unlimited Orders [youtube https://youtu.be/MsE3js5Fd_s] Links Installation Guide Subscribe for Unlimited Orders Compatible E-Commmerce software Minimum Requires: Plugins Compatible With Ship faster with integrated shipping tools With the most complete shipping integrations available, your shipments get done faster so you can focus your time on other aspects of your business. Save time and enhance your customer service ShipWorks includes support for viewing rates and transit times and printing live shipping labels from within ShipWorks. With direct integrations to Endicia, Express1, Fedex, Stamps.com, UPS, and USPS, ShipWorks is your one-stop solution for generating shipping labels for your orders with any of the major carriers. And since tracking numbers are automatically imported and saved, sending tracking emails and responding to customer calls is a snap. Reduce costs by simplifying order processing ShipWorks has proven itself to save hours per day in real world order fulfillment tasks. From the moment you begin using ShipWorks you will notice an intuitive interface that reduces order management to point and click. With its low learning curve and multi-computer networking support, you and your employees will be able to start taking advantage of ShipWorks right away. Every element of ShipWorks has been designed with an emphasis on time savings and usability, which ultimately translates into reduced costs for your business. Work smarter with tools designed to make your life easier ShipWorks offers unparalleled support for your computer peripherals. ShipWorks supports all standard inkjet and laser printers, as well as Eltron thermal printers. ShipWorks allows you to specify which printer and tray each print job should go to, greatly simplifying your printing process. And with zero-configuration support for most scales, weighing your packages is always fast and accurate.

安装:

屏幕截图:

  • Shipworks Software window - Click on download to download your orders
  • Our website to purchase a subscription

升级注意事项:

5.4.2 Removes support for Shopp, WP eCommerce, Cart66, Jigoshop and ShopperPress. Requires WordPress 5.5 or later. WooCommerce users are unaffected. 5.4.1 Fixes a fault that could stop ShipWorks downloading orders on PHP 8.1 and newer. Your settings and your ShipWorks connection are not affected. 5.4.0 Security and reliability update for the licence connection. We recommend updating. Your settings and your ShipWorks connection are not affected. 5.3.3 Security release. We recommend updating. Your settings and your ShipWorks connection are not affected.

常见问题:

When you ship an order, the status is not modified in 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/

What to do if I have an error 406 ?

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.

What to do if I have an error 500, 404 or 403 ?

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.

What to do If I have a bug in my orders (in Shipworks) ?

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

You have an error "The server couldn't be reach, please try again later"?

Please whitelist our IP to fix this issue: 147.135.15.26

Where can I find my IP ?

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);

更新日志:

5.4.2 Maintenance and clean-up release. 5.4.1 Maintenance release with one download fix. Updating is recommended if your host runs PHP 8.1 or newer. * The plugin's internal translation identifier now matches its name in the WordPress plugin directory. This is required for WordPress.org to deliver translations, and it clears the errors reported by the WordPress Plugin Check tool. * The bundled French and Spanish translations were renamed to match. If you added a translation file of your own, rename it from shipworks-connector-XX_XX to shipworks-e-commerce-bridge-XX_XX so it keeps loading. * The stated minimum WordPress and PHP versions now reflect what the plugin actually needs: WordPress 4.7 and PHP 7.4. The old figure of WordPress 3.0.1 was long out of date. * Fixed a fault that could stop ShipWorks downloading orders on PHP 8.1 and newer. An order with an empty field, such as a blank second address line, produced a harmless PHP notice; on a site with debugging switched on that notice was written into the order file itself, so ShipWorks refused the whole download with "There are multiple root elements". Empty fields are now handled properly, and the order file is protected so that no notice of this kind can corrupt it again. 5.4.0 Security and reliability update for the link between your store and our licence server. * Your site now identifies itself using the website address saved in WordPress rather than the address supplied with each incoming request, so a visitor can no longer influence which site is checked. * Licence requests are now signed and can only be used once, so a copied request cannot be replayed by someone else. * The answer from our server is verified before it is trusted. A temporary network or server problem can no longer place a paying site on the free version by mistake. * Repeated failed connection attempts from the same address are slowed down, which protects your store against password guessing on the ShipWorks connection. * The plugin's admin pages now confirm you are an administrator before they load. 5.3.3 Security release. Updating is recommended for all sites. * Stronger protection of the connection between your store and ShipWorks: the connection is now refused when the plugin username and password have not been set up yet, and the password check is stricter. * The order information sent by ShipWorks (order number, status, dates, tracking number, carrier) is now verified and cleaned before it is used, which better protects your store database. * Removed a file included with the plugin that could weaken the security protections of your web server. * The plugin Options page now confirms that a change was really made by a logged-in administrator from that page, so settings cannot be altered by an outside request. * Errors are no longer hidden from your server log, so your host can diagnose a problem more easily. Nothing changes in the way you use the plugin: your settings and your existing ShipWorks connection are kept as they are. 5.3.2 5.3.0 5.2.9 5.2.8 5.2.7 5.2.6 5.2.5 5.2.4 5.2.3 5.2.2 5.2.1 5.2.0 5.1.15 5.1.11 5.1.10 5.1.9 5.1.8 5.1.7 5.1.6 5.1.5 5.1.4 5.1.3 5.1.2 5.1.1 5.1.0 5.0.8 5.0.6 5.0.5 5.0.4 5.0.3 4.9.3 4.9.2 4.9.1 4.9.0 4.8.9 4.8.7 4.8.6 4.8.5 4.8.4 4.8.3 4.8.2 4.8.1 4.8.0 4.7.2 4.7.1 4.7.0 4.6.9 4.6.8 4.6.7 4.6.6 4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.12 4.5.9 4.5.6 4.5.3 4.5.2 4.5.1 4.5.0 4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.2 4.4.1 4.4.0 4.3.10 4.3.7 4.3.6 4.3.5 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.2.4 4.2.3 4.2.2 4.2.1 4.1.13 4.1.12 4.1.9 4.1.8 4.1.7 4.1.6 4.1.5 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.0.11 4.0.10 4.0.9 4.0.8 4.0.7 *Call query limit to 100 to avoid timeout on large database 4.0.5 Add connection to check if payment need to be updated Fix bug on plugin Woocommerce Shipping Tracking 4.0.4 PHP 7.0 compatible. 4.0.3 Add Customer ID send to Shipworks (only woocommerce for now) 4.0.0 Update notes "customer notes" in woocommerce 3.9.11 Remove a notice 3.9.10 Fix subscription page for trial member 3.9.9 Add notice to indicate to create username and password in dashboard 3.9.8 Fixed bug on Bulk Discount plugin, they created an update and add fixed and flat discount type 3.9.7 Add cost of item with plugin WooCommerce Cost of Goods 3.9.6 Add notice payment failed on dashboard 3.9.5 Update error message when customer as a failed credit card 3.9.2 Fix status code 3.9.1 Fix bug woocommerce multiple shipping, some orders with multi shipping was cut 3.9.0 Fix bug log 3.8.9 Fix ajax updates conflict 3.8.8 Fix error database, that creating error on shipworks 3.8.4 Add option display Variation id or sku 3.8.3 Fixed bug empty item information was creating error on Shipworks 3.8.2 Fixed error sku 3.8.1 Add sku number or orders and variation id for variation item for woocommerce 3.8.0 Remove spacing on Username/password on the settings page 3.7.9 Make it compatible with WooCommerce Dynamic Pricing 3.7.8 Add Free Trial version, Free for a month unlimited orders 3.7.7 Fixed bug on subscription page 3.7.6 Fixed bug control last connection 3.7.5 Modification on show notes/private message/customer message 3.7.4 Update on custom addon 3.7.3 Modify all Classes to avoid conflict with other plugins 3.7.2 Cleanup tables + add a security for windows hosting, fixed issue with windows hosting looping 3.7.1 Updates for addon Woocommerce Tracking Number for version < 1.3.0 and now compatible with version >= 1.3.0 3.7.0 Fixed error on shipwork when tracking number is sent 3.6.9 Fixed bug free orders 3.6.8 Fixed bug with link on extension Woocommerce Shipment Tracking - add links 3.6.7 Fixed bug id tracking number 3.6.6 Fixed unit price bug 3.6.5 Fixed issue with Special Character 3.6.4 Add plugin extension Woocommerce Shipping Multiple addresses compatible 3.6.3 Not display Module URL if primary url is https already 3.6.2 Fixed date bug with modify date shipworks, it was created issue with last modify order and fix time issue 3.6.1 Fixed bug on Shopp version 3.6.0 Download orders 10 per 10 instead of 100 per 100. 3.5.9 Added custom plugin addon. 3.5.8 Added SSL info in admin. 3.5.7 Added adjustment for https / http. 3.5.6 Added special character fix for other fields in XML. 3.5.5 Fixed update shipping method 3.5.2 Fixed if customer message is empty 3.5.1 Added new settings to set which messages are sent. Fixed issue with special character in the message. 3.4.10 Added customer message from order. 3.4.9 Fixed issue with premium subscription not working if no internet connection. Is valid for 1 week, since last check. 3.4.7 Fixed looping page settings on windows hosting 3.4.5 Fixed bug on downloadable function / could skip some orders 3.4.1 All orders are download, even canceled order 3.3.9 Compatible with TM Extra Procut Options. 3.3.5 Bugs were fixed, and compatible with Shipment Tracking plugin. 3.1 Bugs were fixed, and better support for notes and comments from ShipWorks. Better display for tracking informations. 2.9.16 Support for addons and variable products on Shopp. 2.9.11 Coupons can now appear on invoices. 2.9.11 This new version runs better on Bluehost servers. 2.9.7 Some issues were fixed on variable products attributes. 2.9.2 This new version supports variable products in Woocommerce including attributes. It also converts the weight in lbs for ShipWorks on Woocommerce. 2.9.1 This new version supports variable products in Jigoshop, and some issues were fixed. 2.9 This new version supports variable products in Woocommerce. 2.8 2.7.5 2.7.4 2.7.3 2.7.2 2.7 2.6 2.5.2 2.5.1 2.5 2.4 2.3 2.2 2.1 2.0 1.0