Hello
There is option “Customer search by shipping/billing fields”
in >Settings>Customers. It’s PRO feature, and we don’t plan to move this option to free version.
But we use WooCommerce customer search, so it’s possible to modify search,
using this hook (I put exact code to enable search by phone).
thanks, Alex
add_filter( "woocommerce_customer_search_customers", function ( $filter, $term, $limit, $type ) {
if ( $type == 'meta_query' ) {
$filter['meta_query'][] = array( 'key' => 'billing_phone', 'value' => $term, 'compare' => 'LIKE' );
}
return $filter;
}, 10, 4 );
-
This reply was modified 4 years, 6 months ago by
algol.plus.