Tagged: enfold
My client wants to change the WooCommerce element that says Shipping to be Shipping & Handling instead on http://universalcurriculumpublishing.com/cart/ and https://universalcurriculumpublishing.com/checkout/ – I found in https://theme-fusion.com/forums/reply/reply-to-how-to-change-shipping-to-shipping-and-handeling-in-woocommerce-checkout/ that they say to change that part in the theme and couldn’t find the same element in Enfold.
Thanks!
Hey Andrea,
Please try adding the following code to your functions.php file:
// change shipping text
add_filter('gettext', 'translate_reply');
add_filter('ngettext', 'translate_reply');
function translate_reply($translated) {
$translated = str_ireplace('Shipping', 'Shipping and Handling', $translated);
return $translated;
}
Let me know if you need further assistance.
Best regards,
Jordan
This worked great!