54
The cart totals table cell title “Shipping” or “Shipping and Handling” appears also on the checkout page. So, what if you wish to “translate” this string from English to “better” English or completely customize it? Thankfully there’s a quick 4 lines snippet for you. Enjoy!
PHP Snippet: Translate “Shipping” @ WooCommerce Cart Totals & Checkout Order Review
/**
* @snippet Translate "Shipping" - WooCommerce Cart & Checkout
* @how-to Get tutoraspire.com FREE
* @author Tutor Aspire
* @compatible WooCommerce 3.8
* @donate $9 https://tutoraspire.com
*/
add_filter( 'woocommerce_shipping_package_name', 'tutoraspire_new_shipping_title' );
function tutoraspire_new_shipping_title() {
return "Delivery";
}