我目前正在尝试向WooCommerce管理订单列表中添加新的快速过滤器(subsubsub):
我的自定义订单状态为“ wc-test-accepted”。如何为自定义订单状态添加一个新的快速过滤器?
答案 0 :(得分:2)
要将相关过滤器设为“订单状态”菜单过滤器中的自定义订单状态“ wc-test-accepted”,您只需更改至少一个订单的状态,过滤器就会出现。
以下代码将添加新的自定义订单状态“ wc-test-accepted”(已接受):
// Register new custom order status
add_action('init', 'register_custom_order_statuses');
function register_custom_order_statuses() {
register_post_status('wc-test-accepted ', array(
'label' => __( 'Accepted', 'woocommerce' ),
'public' => true,
'exclude_from_search' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'label_count' => _n_noop('Accepted <span class="count">(%s)</span>', 'Accepted <span class="count">(%s)</span>')
));
}
// Add new custom order status to list of WC Order statuses
add_filter('wc_order_statuses', 'add_custom_order_statuses');
function add_custom_order_statuses($order_statuses) {
$new_order_statuses = array();
// add new order status before processing
foreach ($order_statuses as $key => $status) {
$new_order_statuses[$key] = $status;
if ('wc-processing' === $key) {
$new_order_statuses['wc-test-accepted'] = __('Accepted', 'woocommerce' );
}
}
return $new_order_statuses;
}
// Adding new custom status to admin order list bulk dropdown
add_filter( 'bulk_actions-edit-shop_order', 'custom_dropdown_bulk_actions_shop_order', 50, 1 );
function custom_dropdown_bulk_actions_shop_order( $actions ) {
$new_actions = array();
// add new order status before processing
foreach ($actions as $key => $action) {
if ('mark_processing' === $key)
$new_actions['mark_test-accepted'] = __( 'Change status to Accepted', 'woocommerce' );
$new_actions[$key] = $action;
}
return $new_actions;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
一旦您将至少一个订单更改为“已接受”订单状态,它将显示为过滤器: