The following snippet will remove the vendor shop name from the shipping methods and return no title. This works on the cart, checkout and emails.
<?php // Remove the Vendor shop name from the shipping package title add_filter( 'wcv_vendor_shipping_package_title', 'remove_shipping_title' ); function remove_shipping_title( $title ){ return ''; } ?>
Change This:
To this: