我正在使用WooCommerce,我需要一些幫助。如何將搜索功能擴展到管理員WooCommerce訂單列表中的客戶電話號碼?在woocommerce訂單列表中添加電話號碼以搜索功能
這實際上是我的代碼。
function woocommerce_shop_order_search_custom_keys($search_fields) {
$search_fields[] = '_order_number';
$search_fields[] = '_billing_phone';
$search_fields[] = '_billing_id';
return $search_fields;
}
但不工作
編輯:我也試過這個沒有任何成功添加到我的代碼:
add_filter('woocommerce_shop_order_search_fields', 'woocommerce_shop_order_search_custom_keys');
你是怎麼稱呼這個功能的?在一些鉤子上? 這個功能本身並沒有給出任何想法。 – tousif
是的,我不知道我怎麼能打電話給如何搜索 –
剛纔我添加行 –