How to Set Up Free Shipping For WooCommerce
Do you want to set a free shipping amount counter on your WooCommerce store? Here is the complete guide to all the possible steps through which you will be able to configure the free shipping for WooCommerce. If you are running an ecommerce store, you just need to boost your sales rate by setting up free shipping on the store. So, there are multiple tools but choosing the right tool for your store provides a lot of benefits in the market. WooCommerce Free Shipping Amount Counter Plugin by koala Apps is one of the best tools that helps your customers know the amount they need to spend to qualify for free shipping. You can easily encourage customers to add more products from purchase to the cart sp that they can avail free shipping. It helps you to enhance the store’s performance, build trust and satisfy customers effortlessly.
Setting up a store with free shipping requires a few easy steps. In this article, we will explain how to configure the free shipping amount counter for WooCommerce using various methods.
What is Free Shipping For WooCommerce
If you want to encourage customers to purchase more items and increase store sales, then use the Free Shipping Amount Counter plugin for WooCommerce. It offers multiple customized features that will encourage customers to spend more on the store and help you increase store revenue.
The plugin allows the customer to spend more with an amount mentioned to avail of free shipping, which results in clearing the inventory easily. You can also make customers add related products to their existing orders. Once the customer qualifies for free shipping, the plugin provides the features of custom notifications.
The custom messages display the free shipping availability note. You can also create and display custom text before or after the amount on each desired page. Using this plugin, you can restrict free shipping based on user roles and set free shipping features using the shortcode anywhere on the store/website.
Characteristics Of WooCommerce Free Shipping Amount Counter
- Showcase Free Shipping Amount Counter on various pages
- Notify customers the amount to spend to qualify for free shipping
- Display Free Shipping Counter one products are added to the cart
- Showcase custom message once customer earns free shipping
- Restrict the Free Shipping Counter based on user roles
- Demonstrate Free Shipping counter on product, shop, cart & checkout pages
- Insert custom text before/after the counter for each page
- Configure color, position, and text size on each page
- Offer free shipping cost with taxes or without taxes
- Use a short code to present the counter anywhere on the website
Benefits
- Boost customer satisfaction and interest
- Offer free shipping to customers
- Improve loyalty and brand recognition
- Less possibility of customers moving to other sites
A Complete Guide To Setup Free Shipping For WooCommerce
Here, you can find the easiest step-by-step methods for setting up WooCommerce free shipping for customers, which enhances store performance using the WooCommerce Free Shipping Amount Counter Plugin.
The following are the methods mentioned:
- By WooCommerce Free Shipping Amount Counter by koalaApps
- By WooCommerce Free Shipping Amount Counter programmatically
Method: 1 – WooCommerce Free Shipping Amount Counter by koalaApps
Following are the steps through which you can efficiently set free shipping for WooCommerce on the store easily by using the WooCommerce Free Shipping Amount Counter Plugin:
- Installation
- Configure General Settings
- Manage Free Shipping On Multiple Pages
Now, let’s examine the details of the plugin and its features, which allow the store to display free shipping for customers.
Installation
To install the Free Shipping plugin by KoalaApps, follow these steps:
- To install this plugin, search the .zip file from your WooCommerce account and begin downloading.
- Go to the WordPress Admin Panel. Select Plugins, choose Add New, and then choose the file to Upload Plugin.
- Select Install Now and then click Activate.
Configure General Settings
The WooCommerce Free Shipping Amount Counter Plugin provides multiple customization features through which you can easily configure free shipping for customers and increase store revenue. Effortlessly enable the extension, set the minimum free shipping amount for customers, and define the amount calculation before and after taxes according to your preference.
It allows you to display the custom message as always or when the product is added to the cart. Along with this, you can easily customize the message display with options including amount, font color, and size based on all or specific user roles. You can also set the custom message in the store when the minimum amount reaches for free shipping and let customers know how they can avail of free shipping after this amount.
Manage Free Shipping on Multiple Pages
If you want to set free shipping and display it on the shop, checkout, cart, and product page, then simply choose to enable visibility. Adding free shipping information for the customer enhances the store’s appearance and builds trust. Free shipping not only eases the customer’s shopping experience but also helps you clean your inventory by encouraging them to buy more to avail of free shipping.
The plugin allows you to insert text before and after the amount according to your store layout and requirements. You can choose from a few text customization features to set free shipping on the store.
Following are the text customization options:
- Choose to select the text color
- Adjust the text size
- Manage the placement of text, such as
- Before Main Content
- After Main Content
Method 2: Offer Free Shipping Using A Custom Code
As we all know, setting up a free shipping amount counter on the store is not tricky if you use the plugin, but if you go for the custom code method, then it might be a bit tricky for you to set up free shipping for WooCommerce.
Here, we are providing you with the custom code through which you can easily set up the free shipping for customers hassle-free.
add_filter( ‘woocommerce_package_rates’, ‘custom_shipping_costs’, 20, 2 );
function custom_shipping_costs( $shipping_rates, $shipping_package ) {
// New shipping cost (can be calculated)
$new_shipping_cost = 1000;
foreach( $shipping_rates as $rate_key => $shipping_rate ){
// Excluding free shipping methods
if( $shipping_rate->method_id != 'free_shipping'){
// Original rate cost
$original_rate_cost = $shipping_rate->cost;
// Set rate cost
$shipping_rates[$rate_key]->cost = $new_shipping_cost;
// Set taxes rate cost (if enabled)
$updated_taxes = array();
$taxes_exist = false;
// Loop through taxes
foreach ($shipping_rate->taxes as $tax_key => $tax_amount){
if( $tax_amount > 0 ) {
$tax_conversion_rate = $tax_amount / $original_rate_cost;
$updated_taxes[$tax_key] = $new_shipping_cost * $tax_conversion_rate; // Set tax rate cost
$taxes_exist = true;
}
}
if ( $taxes_exist ) {
$shipping_rates[$rate_key]->taxes = $updated_taxes;
}
}
}
return $shipping_rates;
}
add_filter('woocommerce_package_rates', 'custom_shipping_overwrite', 10, 2);
function custom_shipping_overwrite($shipping_rates, $shipping_package) {
echo "<h2>Can you see me</h2>";
foreach ($shipping_rates as $shipping_rate) {
// Set the price
$shipping_rate->cost = 1000;
// Set the TAX
$shipping_rate->taxes[1] = 1000 * 0.2;
}
return $shipping_rates;
}
Do try it and enhance your store while attracting customers that help you increase revenue.
Get A Successful Free Shipping For Customers
You can easily create a successful WooCommerce Free Shipping Amount Counter on the KoalaApps store by following the below tips:
- Create clear messages for the customers that will be quality to avail of free shipping, including the clarity of messages that have exceeded the minimum amount.
- Manage the placement at such a spot on cart checkout pages that it is noticeable to all customers easily
- Go through the free shipping counter customization options to match the store layout and branding
- Attract more customers by indicating the free shipping offer on the products/shop page
Conclusion
In conclusion, setting up free shipping to your store is a simple task, all you have to do is through the right tool with the right platform. Above, in this article, we have clearly guided you to the methods to configure the free shipping amount counter in the KoalaApps store using the plugin and custom code. It allows you to enhance the store performance, increase sales, satisfy the customers, and create trust in the market by attracting more customers by offering free shipping. Follow the steps to ensure customers leave satisfied and help grow your business to top-notch.
Leave a Reply