Title: hide order status
Last modified: February 13, 2021

---

# hide order status

 *  Resolved [nouradawy](https://wordpress.org/support/users/nouradawy/)
 * (@nouradawy)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/hide-order-status/)
 * I would like to hide some order states from the edit order status menu on the
   order page ( vendor side ) i would like to hide completed from the drop-down 
   menu
 * [Image](https://imgur.com/gsKbaah.png)
    -  This topic was modified 5 years, 3 months ago by [nouradawy](https://wordpress.org/support/users/nouradawy/).

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Rashed Ripon (a11n)](https://wordpress.org/support/users/rur165/)
 * (@rur165)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/hide-order-status/#post-14047553)
 * Hello [@nouradawy](https://wordpress.org/support/users/nouradawy/) ,
 * Dokan uses the default WooCommerce filter to bring the order status to the vendor
   dashboard. You can use this example code to remove order status from vendor dashboard–
 *     ```
       function dokan_dashboard_remove_processing_status( $statuses ){
           if( isset( $statuses['wc-refunded'] ) ){
   
               if (dokan_is_seller_dashboard() ) {
                    unset( $statuses['wc-refunded'] );
               }
   
           }
           return $statuses;
       }
       add_filter( 'wc_order_statuses', 'dokan_dashboard_remove_processing_status' );
       ```
   
 * Thank you 🙂
 *  Thread Starter [nouradawy](https://wordpress.org/support/users/nouradawy/)
 * (@nouradawy)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/hide-order-status/#post-14047649)
 * thank you so much for your solution this is just what i wanted
 *  [shadmanalvy](https://wordpress.org/support/users/shadmanalvy/)
 * (@shadmanalvy)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-order-status/#post-14754588)
 * Hello [@rur165](https://wordpress.org/support/users/rur165/) how do i remove 
   the bulk status dropdown menu and the corresponding apply button from the order
   list? I tried hiding it via css, but it doesn’t seem to be working for me…
 * [Image](https://imgur.com/cOb0OzY)

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘hide order status’ is closed to new replies.

 * ![](https://ps.w.org/dokan-lite/assets/icon-256x256.gif?rev=3239229)
 * [Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy](https://wordpress.org/plugins/dokan-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dokan-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dokan-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/dokan-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dokan-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dokan-lite/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [shadmanalvy](https://wordpress.org/support/users/shadmanalvy/)
 * Last activity: [4 years, 10 months ago](https://wordpress.org/support/topic/hide-order-status/#post-14754588)
 * Status: resolved