Weight based shipping methods for WooCommerce. Flexible shipping with table rate rules by cart weight and orde...
UPS plugin: Real-time rates, label printing, auto tracking emails, previews on product pages, and more. Seamless integration.
Automated UPS Shipping for WooCommerce is a WordPress plugin designed to integrate UPS shipping services into WooCommerce stores. It provides features such as real-time shipping rates, label printing, and automated tracking number email generation. This plugin is aimed at WooCommerce store owners who want to streamline their shipping processes and ensure accurate shipping costs for their customers.
The plugin supports various UPS services and package types, allowing for flexible shipping options and configurations based on product dimensions. It also includes features for free shipping settings and a smart caching system for speed optimization.
Best for: This plugin suits WooCommerce store owners looking for efficient UPS shipping integration.
What it does well
Where it falls short
Automated UPS Shipping for WooCommerce offers essential shipping functionalities for online stores. It is a practical choice for those needing reliable UPS integration without extensive features.
Aarsiv Groups's own description of Automated UPS Shipping for WooCommerce, lightly tidied.
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.
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.
“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;
}
Other plugins for shipping.
Weight based shipping methods for WooCommerce. Flexible shipping with table rate rules by cart weight and orde...
Auto-generate and attach WooCommerce PDF invoices and packing slips to order emails with customizable template...
Best WooCommerce coupons plugin to create advanced coupons and discount codes with auto-apply, BOGO, free ship...
The #1 WooCommerce shipment tracking plugin. Add tracking, auto-update order status, send branded emails. 1010...
Modern Cart gives your store a side cart and free shipping bar so shoppers stay on the page, spend more to unl...
Weight Based Shipping is a flexible and widely-used solution to calculate shipping costs based on the total ca...