I am using WooCommerce and I need some help. How to extend search functionality to the customer phone number in the admin WooCommerce orders list?
This is my code actually.
function woocommerce_shop_order_search_custom_keys( $search_fields ) {
$search_fields[] = '_order_number';
$search_fields[] = '_billing_phone';
$search_fields[] = '_billing_id';
return $search_fields;
}
But is not working
EDIT: I have also tried to add this to my code without any success:
add_filter( 'woocommerce_shop_order_search_fields', 'woocommerce_shop_order_search_custom_keys' );