I'm trying to change text of the update cart button. Please I need the code in functions.php file which can change/edit 'update cart' text in the cart page in Woocommerce. thanks,
You can copy and paste the below function to your functions.php and change the text. This works. Tested
function change_update_cart_text( $translated, $text, $domain ) {
if( is_cart() && $translated == 'Update cart' ){
$translated = 'New Text Here';
}
return $translated;
}
add_filter( 'gettext', 'change_update_cart_text', 20, 3 );