Remove the shipping method labels on the cart page in WooCommerce

Remove the shipping method labels on the cart page in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_delivery_method_label', 10, 2 );
function remove_delivery_method_label( $label, $method ) {
    if ( $method->cost > 0 ) {
        $label = '';
        $label .= wc_price( $method->cost );
    }
    return $label;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.