WordPress – Woocommerce_shop_order_search_fields search order by meta field not working HPOS
Before switching to HPOS we had the following code in our functions.php to make it possible to search by a meta field in the woocommerce admin -> orders section. function custom_woocommerce_shop_order_search_fields( $search_fields ) { $search_fields[] = 'tracking_number'; return $search_fields; }…