How to change default label of shipment filters
Copy and paste below code in your theme’s functions.php file.
add_filter( 'wpcargo_filter_registered_shipper_label', 'custom_filter_shipper_label' ); function custom_filter_shipper_label(){ return '-- All Shippers --'; }