Hi,
I am still not getting โ(gratis)โ text at cart and checkout page. Anyway you can try to use this code.
function sf_change_cart_shipping_free_label( $free_label ) {
$free_label = str_replace('(Gratis)','',$free_label);
return $free_label;//'Shipping will be quoted at Invoice';
}
add_filter( 'woocommerce_cart_shipping_method_full_label' , 'sf_change_cart_shipping_free_label' );
Thanks