Description
UPS shipping plugin, integrate seamlessly with UPS for real-time shipping rates, label printing, automatic tracking number email generation, shipping rate previews on product pages, and much more.
What this product does for you
Provides a shipping method suitable to your customers
The most popular UPS shipping Plugin for WooCommerce that offers label printing (Premium), a custom boxing algorithm (Premium), shipping rate preview (no login needed), and more, you can be sure that your customers always pay just the right amount for delivery and you’ll save enough time to focus on what really matters.
Our highly customizeable and powerful shipping modules provide consistent, easy-to-use and flexible shipping for any shop, including shipping rate previews on product pages and much more.
Features
-
Display UPS shipping rates on the product page without requiring the customer to log-in.
-
Get real time shipping rates directly from the UPS systems based on your company’s UPS account.
-
(Premium) Generate & print labels directly from the backoffice order page, and automatically send tracking number email.
-
Dimensional weight and negotiated (discounted) rates are supported.
-
Shipping rates are calculated by weight and dimensions or one of the UPS boxes:
- Single Box – Assign one box size which will be used for all products.
- (Premium) Multiple Boxes (Fixed Size) – Define how many products can fit in a box (number), or calculate only by weight.
-
(Premium) Multiple Boxes (Product Dimensions) – Define all the box sizes you use for shipping, assign dimensions to your products, and the module will automatically calculate (using an algorithm we developed) how many boxes are needed to fit all the products (always trying to use the smallest / lowest number of packages).
-
Option to set free shipping by Product, Category, Manufacturer or Supplier.
-
All UPS Services and package types are supported, and you can select which shipping options should be available per Zone.
-
Each shipping method can have its own Free Shipping Limit, Additional Fee, and Insurance.
-
Smart caching system is used for maximum speed.
-
Enable/disable testing mode in module configuration.
Plugin Tags:
UPS, UPS Shipping, UPS Shipping Method, UPS WooCommerce, ups Ground, UPS Saver, Domestic UPS, uos for woocommerce, ups for worldwide shiping, ups plugin, create shipment, ups shipping, ups shipping rates
About UPS
United Parcel Service is an American multinational package delivery and supply chain management company. The global logistics company is headquartered in the U.S. city of Sandy Springs, Georgia, which is a part of the Greater Atlanta metropolitan area.
About [HITShipo](https://hitstacks.com/hitshipo.php)
We are Web Development Company in France. We are planning for High Quality WordPress, Woocommerce, Edd Downloads Plugins. We are launched on 4th Nov 2018.
What a2Z Plugins Group Tell to Customers?
“Make Your Shop With Smile”
Useful filters:
1) Customs Rates
function ups_shipping_cost_conversion($ship_cost, $pack_weight = 0, $to_country = “”, $rate_code = “”){
$sample_flat_rates = array(“GB”=>array( //Use ISO 3166-1 alpha-2 as country code
“weight_from” => 10,
“weight_upto” => 30,
“rate” => 2000,
“rate_code” => “ups_12”, //You can add UPS service type and use it based on your’s need. Get this from our plugin’s configuration (services tab).
),
“US”=>array(
“weight_from” => 1,
“weight_upto” => 30,
“rate” => 5000,
),
);if(!empty($to_country) && !empty($sample_flat_rates)){ if(isset($sample_flat_rates[$to_country]) && ($pack_weight >= $sample_flat_rates[$to_country]['weight_from']) && ($pack_weight <= $sample_flat_rates[$to_country]['weight_upto'])){ $flat_rate = $sample_flat_rates[$to_country]['rate']; return $flat_rate; }else{ return $ship_cost; } }else{ return $ship_cost; }
}
add_filter(‘hitstacks_ups_shipping_cost_conversion’,’ups_shipping_cost_conversion’,10,4);
(Note: Flat rate filter example code will set flat rate for all UPS carriers. Have to add code to check and alter rate for specific carrier. While copy paste the code from worpress plugin page may throw error “Undefined constant”. It can be fixed by replacing backtick (`) to apostrophe (‘) )
2) To Sort the rates from Lowest to Highest
add_filter( ‘woocommerce_package_rates’ , ‘hitshipo_sort_shipping_methods’, 10, 2 );
function hitshipo_sort_shipping_methods( $rates, $package ) {
if ( empty( $rates ) ) return;
if ( ! is_array( $rates ) ) return;
uasort( $rates, function ( $a, $b ) {
if ( $a == $b ) return 0;
return ( $a->cost < $b->cost ) ? -1 : 1;
} );
return $rates;
}
Screenshots
Reviews
Contributors and Developers
“Automated UPS Shipping for WooCommerce” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Automated UPS Shipping for WooCommerce” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Change Log
= 4.1.1=
Release Date – 28 Nov 2023
Added delivery confirmation support.
= 4.1.0=
Release Date – 15 Nov 2023
Added Vendor collection support.
= 4.0.7=
Release Date – 03 Nov 2023
Fixed total value not sending with weight based pack.
= 4.0.6=
Release Date – 15 Sep 2023
Minor debug improvement
= 4.0.5=
Release Date – 15 Sep 2023
Minor bug fix
= 4.0.4=
Release Date – 07 Sep 2023
Fixed negotiated rates issue with OAuth API
= 4.0.3=
Release Date – 04 Sep 2023
Added additional customer classification options
= 4.0.2=
Release Date – 01 Sep 2023
Minor improvements
= 4.0.1=
Release Date – 09 Aug 2023
Fixed creating label automatically always
= 4.0.0=
Release Date – 24 Jul 2023
Added OAUTH API support
= 3.6.8=
Release Date – 23 Jun 2023
Reduced configurations on initial setup
= 3.6.7=
Release Date – 15 May 2023
Minor Improvements
= 3.6.6=
Release Date – 10 May 2023
Minor Improvements
= 3.6.5=
Release Date – 20 March 2023
minor bugfix
= 3.6.4=
Release Date – 09 March 2023
minor bugfix
= 3.6.3=
Release Date – 09 March 2023
minor bugfix
= 3.6.2=
Release Date – 22 February 2023
minor bugfix
= 3.6.1=
Release Date – 20 February 2023
Updated meeting link
= 3.6.0=
Release Date – 15 February 2023
Added option to link with hitshipo using integration key
= 3.5.10=
Release Date – 25 january 2023
minor improvements
= 3.5.9=
Release Date – 28 December 2022
minor improvements
= 3.5.8=
Release Date – 17 November 2022
update tested version
= 3.5.7=
Release Date – 01 November 2022
minor improvements
= 3.5.6=
Release Date – 28 October 2022
minor bug fix
= 3.5.5=
Release Date – 28 September2022
minor improvements
3.5.4
Release Date – 09 September2022
minor improvements
3.5.3
Release Date – 06 September2022
minor bug fix
3.5.2
Release Date – 25 August 2022
Security Improvements & Minor Fixes
3.5.1
Release Date – 19 August 2022
Security Improvements & Minor Fixes
3.5.0
Release Date – 19 August 2022
Security Updates
3.4.5
Release Date – 13 August 2022
minor bug fix
3.4.4
Release Date – 12 August 2022
minor bug fix
3.4.3
Release Date – 12 August 2022
Add new button,plugin name change
= 3.4.2
Release Date – 01 August 2022
minor bug fix and intergration field add
= 3.4.1
Release Date – 21 July 2022
add new button
= 3.4.0
Release Date – 19 July 2022
SHIPPING LABEL AUTOMATION
= 3.3.1
Release Date – 10 June 2022
minor bug fix
= 3.3.0
Release Date – 06 June 2022
added new password field
= 3.2.1
Release Date – 15 July 2021
WordPress Version Updated
= 3.2.0
Release Date – 12 july 2021
Return Shipment labels Added. Show shipping price in invoice
= 3.1.1
Release Date – 05 June 2021
Minor bug fix
= 3.1.0
Release Date – 08 may 2021
Added Customer Classification For US
= 3.0.5
Release Date – 06 may 2021
Minor Bug Fixes
= 3.0.4
Release Date – 13 Apr 2021
Minor Email label value Bug Fix
= 3.0.3
Release Date – 31 Mar 2021
Added Save & Start 60-day trail button
= 3.0.2
Release Date – 27 Mar 2021
Minor Bug Fix
= 3.0.1
Release Date – 24 Mar 2021
Minor Bug Fix
= 3.0.0
Release Date – 20 Mar 2021
New UI for UPS
= 2.3.9
Release Date – 19 Jan 2021
Bugfixes.
= 2.3.8
Release Date – 23 December 2020
Fixed order data not sending to Shipo while changing carrier name.
= 2.3.7
Release Date – 19 December 2020
Added surcharge flag to rate filter.
= 2.3.6
Release Date – 12 December 2020
Minor bug fixes.
= 2.3.5
Release Date – 28 November 2020
Added custom rates filter.
= 2.3.4
Release Date – 27 November 2020
Minor bug Fixes.
= 2.3.3
Release Date – 24 November 2020
Minor bug Fixes.
= 2.3.2
Release Date – 28 October 2020
Minor bug Fixes.
= 2.3.1
Release Date – 27 October 2020
Minor bug Fixes.
= 2.3.0
Release Date – 17 October 2020
Exclude Country for Rates.
= 2.2.8
Release Date – 01 Aug 2020
fixes some minor bug.
= 2.2.7
Release Date – 22 Jul 2020
fixes some minor bug.
= 2.2.6
Release Date – 16 Jul 2020
fixes for multivendor.
= 2.2.5
Release Date – 16 Jul 2020
includes Bugfixes.
= 2.2.4
Release Date – 11 Jul 2020
includes Bugfixes.
= 2.2.3
Release Date – 4 Jul 2020
includes Bugfixes.
= 2.2.2
Release Date – 3 Jul 2020
includes Bugfixes.
= 2.2.1
Release Date – 28 Jun 2020
variable product weight issue fixed.
= 2.2.0
Release Date – 17 Jun 2020
Added Feature Sending tracking number to Customer.
= 2.1.2
Release Date – 13 Jun 2020
Bugfixes.
= 2.1.1
Release Date – 13 Jun 2020
Bugfixes.
= 2.1.0
Release Date – 5 Jun 2020
Added tracking in front office.
2.0.6
Release Date – 2 Jun 2020
Multi vendor released.
2.0.5
Release Date – 9 May 2020
sent shiping price to shipo & acc_rates
2.0.4
Release Date – 22 April 2020
sent shiping price to shipo
2.0.3
Release Date – 21 April 2020
Minor Bug fixes
2.0.2
Release Date – 17 April 2020
changed weight and dim conversion
2.0.1
Release Date – 11 March 2020
changed service pack type default set to customer supplied pack
2.0.0
Release Date – 07 March 2020
Initial Version compatibility with HITShipo
1.0.0
Release Date – 11 November 2018
Initial Version