[ad_1]
Hi @magsmyk00,
Please add below code in your theme/child theme functions.php file to remove shipping providers filter from orders list.
$ast_admin = WC_Advanced_Shipment_Tracking_Admin::get_instance();
remove_action( ‘restrict_manage_posts’, array( $ast_admin, ‘filter_orders_by_shipping_provider’), 20 );
remove_filter( ‘request’, array( $ast_admin, ‘filter_orders_by_shipping_provider_query’ ) );
Thanks
