Automated UPS Shipping for WooCommerce – HPOS supported

Description

Discover the ultimate UPS shipping solution for your WooCommerce store with our powerful UPS Shipping plugin. Seamlessly integrate UPS services to provide your customers with real-time shipping rates, streamline label printing, automate tracking number email generation, and offer shipping rate previews directly on product pages.

With the most popular UPS Shipping Plugin for WooCommerce, you ensure your customers always experience accurate shipping costs. Our premium features include label printing and a custom boxing algorithm, guaranteeing precise deliveries while saving you valuable time to focus on your business.

Our plugin offers

  1. Real-time UPS shipping rates displayed effortlessly on product pages, no login required.
  2. Integration directly with UPS systems for up-to-date shipping rates based on your UPS account.
  3. Premium label printing directly from the backoffice order page, with automatic tracking number email generation (Premium).
  4. Support for dimensional weight and negotiated rates, ensuring fair and accurate pricing.
  5. Flexible shipping options, including single-box or multiple-box configurations based on product dimensions (Premium).
  6. Free shipping settings by Product, Category, Manufacturer, or Supplier.
  7. Compatibility with all UPS services and package types, with customizable shipping options per Zone.
  8. Individual shipping method settings for Free Shipping Limit, Additional Fee, and Insurance.
  9. Smart caching system for maximum speed optimization.
  10. Easy testing mode toggle within the module configuration.

About [Shipi](https://myshipi.com)

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

  • Configuration – UPS Details.
  • Configuration – UPS Shipper Address.
  • Configuration – UPS Rate Section.
  • Configuration – UPS Available Services.
  • Output – UPS Shipping Rates in Shop.
  • Output – My Account Page Shipping Section.
  • Output – Edit Order Page Shipping Section.

Reviews

🌸4️⃣ 27, 2022
Assistance received by support was top-notch. Much appreciated!
🍂 1️⃣1️⃣ 29, 2021
Used this plugin on a client site for a while. It seemed to work pretty well (occasional plugin conflicts but mostly smooth sailing) before they did an update that required you to get a trial and account with hitshipo. Once that happened, the plugin just randomly stopped working. I assumed because of new account thing. Wouldn’t let me troubleshoot mode or save settings after that update unless I gave an email to do a free trial. No more “save” button. Tried to find out if it was still possible to use the “free” features of the plugin without signing up for the trial on the forum. One support person told me that the features we wanted were free, but features like shipping labels weren’t, so if we wanted those we’d need to pay. Didn’t need those. They sent me to an email to continue discussing. Explained myself again to that new support person, and they told me we actually couldn’t use it at all without a subscription. So kind of confusing mixed feedback for me. Okay, well fast forward, client decided to buy a subscription on hitshipo website. Gave me the integration key. When I went into the plugin to find a place to put the pro version integration key, there was none. Just that button for a free trial. Tried to add the client’s email that they signed up with. Error- already in system. Used my email to start a trial hoping a spot to activate a paid plan might show up afterwards. Nothing. Couldn’t change what account it was connected to anywhere within the actual plugin or in the hitshipo app settings. So if you’re going to sign up with them, I’d say make sure to do it with your email directly through the plugin trial button rather than on their site, or it seems like it will be a pain to switch it to a different account. We had all kinds of problems with it conflicting with things on the site once activated with the subscription. When it was active, it broke a ton of stuff in our theme (Aoki) making the site mostly unusable, and it made it so payments through the WooCommerce PayPal Payments plugin wouldn’t complete. So be sure to test a full purchase if you have that specific paypal plugin–not entirely sure it’s compatible with it. Probably fine for pretty simple sites, but we had a lot of issues.
🍃3️⃣ 18, 2021 1 reply
Note: Still testing. We are still in testing phase but the plugin shows lots of potential and could be a great time saver for those who ship a lot in a daily basis. The setup can be a little bit confusing at first but the support team goes the extra mile to get things sorted out for you fairly quick.
❄️1️⃣2️⃣ 21, 2020
Just great support! I reached many plugins and this was the only one that was working for me. But I still had a problem. I couldn’t use negotiable rates through API because UPS doesn’t provide this possibility for my country. But plugin support kindly gave me a code. And now I can use my discount. Moreover, they added a possibility to add extra costs and payment processing fees for shipping rates. I’m very thankful to the team. The best support ever! I’d leave six stars.
🍂 1️⃣1️⃣ 13, 2018
Good and smooth plugin. We are already using this plugin in my multi-store.
Read all 6 reviews

Contributors & Developers

“Automated UPS Shipping for WooCommerce – HPOS supported” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

4.3.3

> WordPress version tested

= 4.3.2=

Bug Fixed