You may find it useful to have additional search fields in the WooCommerce orders page in the WP admin area. Add the function below to your child theme functions.php file.
/* add search fields to woocommerce orders page Allowed search fields: _order_key _billing_first_name _billing_last_name _billing_company _billing_address_1 _billing_city _billing_postcode _billing_country _billing_state _billing_email _billing_phone _order_items */ add_filter( โwoocommerce_shop_order_search_fieldsโ, โwoocommerce_shop_order_search_order_totalโ ); function woocommerce_shop_order_search_order_total( $search_fields ) { $search_fields[] = โ_billing_first_nameโ; $search_fields[] = โ_billing_last_nameโ; $search_fields[] = โ_billing_companyโ; $search_fields[] = โ_billing_address_1โ; $search_fields[] = โ_billing_cityโ; $search_fields[] = โ_billing_postcodeโ; $search_fields[] = โ_billing_stateโ; $search_fields[] = โ_billing_emailโ; $search_fields[] = โ_billing_phoneโ; return $search_fields; }