mine filter remove in woocommerce order

1.1k Views Asked by At

I installed the plugin "WooCommerce Order Status Manager". When we change any custom status order, the status changes successfully but this order also show in the "MINE" filter list.

enter image description here

How can I remove this mine filter?

1

There are 1 best solutions below

0
On

I found a solution:

add to this in theme funtion.php file

function jp_filter_edit_shop_order_views( $views ) { 
    // Unset the Mine option. 
    unset( $views['mine'] );
    return $views; 
}; 
add_filter( 'views_edit-shop_order', 'jp_filter_edit_shop_order_views' );