Hello There,
Thanks for writing in! To resolve this issue, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file
// Change Cart Totals
// =============================================================================
function change_cart_totals($translated) {
$translated = str_ireplace('Cart Totals', 'insert your translation here', $translated);
return $translated;
}
add_filter('gettext', 'change_cart_totals' );
// =============================================================================
We would loved to know if this has work for you. Thank you.