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
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x