[wd_asp elements=’search’ ratio=’100%’ id=1]

Change ‘shipping’ to ‘delivery’ in Woocommerce

6th August 2020

WooCommerce

woocommerce category codehaven

To replace the word shipping which is more American to delivery the code below will work for you.

add_filter( 'woocommerce_shipping_package_name', 'custom_shipping_package_name' );
function custom_shipping_package_name( $name ) {
return 'Delivery';
}

function fix_woocommerce_strings( $translated, $text) {
// STRING 1
$translated = str_ireplace( 'Shipping', 'Delivery charge', $translated );

return $translated;
}
add_filter( 'gettext', 'fix_woocommerce_strings', 999, 3 );