Hi,
I have resolved the issue by adding given below code at end of functions.php file.
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_local_pickup_free_label', 10, 2 );
function remove_local_pickup_free_label($full_label, $method){
$full_label = str_replace("Kosten:","",$full_label);
return $full_label;
Thanks ๐
With Best Regards
Mohammad