Hi,
the method title is displayed by WooCommerce. If you want to change it, you can use the woocommerce_cart_shipping_method_full_label filter.
Kind regards,
Grzegorz
Ah that’s great, thanks a lot!
For future readers – with that keyword I managed to find this code to add to functions.php:
/**
* @snippet Removes shipping method labels @ WooCommerce Cart / Checkout
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @testedwith WooCommerce 3.9
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_filter( ‘woocommerce_cart_shipping_method_full_label’, ‘bbloomer_remove_shipping_label’, 9999, 2 );
function bbloomer_remove_shipping_label( $label, $method ) {
$new_label = preg_replace( ‘/^.+:/’, ”, $label );
return $new_label;
}
Source: https://www.businessbloomer.com/woocommerce-remove-shipping-labels-cart-checkout-page-e-g-flat-rate/