| 开发者 | antonbond |
|---|---|
| 更新时间 | 2025年12月9日 22:03 |
| PHP版本: | 7.0 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
Yes, fully supports High-Performance Order Storage of WooCommerce.
Just open tabs with additional filters on Woocommerce orders grid page. Enter a value in the field you need and click 'Apply filters' button.
Yes! You can separate values by comma ','. For example, in SKU field: 'MM123, AS321'; Email: 'post@site.com, anna@site.com', etc.
Yes! For example, order user phone is 1 (111) 682-5352. You can try search any part of this number: '682', '111', '53', '52', etc.
Try to refine your search. Fill in other fields, don't use part of the value.
Sorry about that. The author has included only the most commonly used filters. You could try contacting the author and asking to add a filter. Alternatively, you can try creating your own custom filter.
Yes. Since version 1.24 the plugin provides the woaf_custom_filter_input filter hook.
This filter allows you to fully customize the HTML output of any user-defined filter field.\
Example usage:
add_filter( 'woaf_custom_filter_input', function( $html, $filter, $value, $count ) {
// Example: replace text input with a select dropdown
if ( $filter['filter-field'] === 'my_custom_meta' ) {
$html = '
Any
A
B
';
}
return $html;
}, 10, 4 );
To contact the author by email antonbondarevych.fruitit@gmail.com