• Resolved support27

    (@support27)


    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.

    • This topic was modified 4 years, 3 months ago by support27.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi! Thanks for your question.

    Can I ask where you’re seeing the ‘mine’ filter appear?

    I’d be happy to investigate further if you’d be able to provide me with a ticket number for your contact with support so that I can look into progress for you.

    Thread Starter support27

    (@support27)

    under woocommerce->orders it displays all, mine, pending payment, completed

    OK, thanks. Please can you tell me the source of the Solution 1: code you sent? Was that sent to you in an email from WooCommerce? If it was an email, please can you provide me with the ticket number and I’ll investigate further.

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, please do reach out to us in a ticket, or you can start a new thread here in the forums.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WooCommerce “mine” filter in orders’ is closed to new replies.