WooCommerce “mine” filter in orders
-
Issue: When you “Add order” manually, a new filter for orders will appear called “mine”.
Question: This has been listen numerous times… will there be an integrated fix? According to WooCommerce support a solution to this was supposed to be implemented.
Solution 1:
Add to function.php theme 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’ );Solution 2:
Install Code Snippets plugin and add code there. Then save and activate snippet.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘WooCommerce “mine” filter in orders’ is closed to new replies.