Black Friday & Cyber Monday SUPER SALE ALL WEEK:
Grab 40% OFF on plugins
Days
Hours
Minutes
Seconds

How to Change the Word Shipping to Delivery in WooCommerce cart?

If you want to change the shipping label of your cart page, then you can modify the shipping label displayed to your customers. By changing the default label from “Free Shipping” to “Free Delivery,” you can make it more understandable for your customers.

add_filter('woocommerce_shipping_package_name', 'ts_change_shipping_text_to_delivery', 20, 3 );

function ts_change_shipping_text_to_delivery( $sprintf, $i, $package ) {
    $sprintf = sprintf( _nx( 'Delivery', 'Delivery %d', ( $i + 1 ), 'delivery packages', 'woocommerce' ), ( $i + 1 ) );
    return $sprintf;
}

Output

By implementing this snippet, you can effectively improve the checkout process by clearly indicating the purpose of each shipping package. Replacing generic “Free Shipping” labels with informative “Free Delivery” labels on the cart page.

How to Change the Word Shipping to Delivery in WooCommerce cart?

Similarly, You can also customize the “Shipping to” text on the WooCommerce cart total section.

Browse more in: Code Snippets, WooCommerce How Tos, WooCommerce Tutorials

Share It:

Subscribe
Notify of
0 Comments
Newest
Oldest
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible.

Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

By using our site, you acknowledge that you have read and understood our Privacy Policy and Terms & Conditions.