Title: Admin Orders List Module Options -&gt; Default
Last modified: June 5, 2018

---

# Admin Orders List Module Options -> Default

 *  [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/)
 * I love the way we can now filter orders by multiple status.
    However, I would
   like to be able to set a default view, when I go to orders 🙂
 * Second, it would be nice to have some sort of presets instead of seeing all status.
   
   Like preset: Open Orders = In Progress, Failed, Awaiting Payment Like preset:
   Unpaid = Awaiting Payment, Sent but awaiting payment (custom status)
 * If you could take a look at this, I would be a very happy camper!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fadmin-orders-list-module-options-default%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Algoritmika](https://wordpress.org/support/users/algoritmika/)
 * (@algoritmika)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10372609)
 * Hi [@darkallman](https://wordpress.org/support/users/darkallman/),
 * Thanks for the ideas.
 * Presets shouldn’t be too hard to add (it’s similar to “Not completed” preset,
   that we’ve already added, but I will add an option to create presets manually).
   Will reply to you as soon as possible, when it’s done.
 * As for the default view – this may be more complicated, not sure if I will be
   able to override the default Orders link properly. I understand that this is 
   not the best solution, but you can create link, and add it to your browser’s 
   bookmarks. For example to filter processing and on-hold orders, you can use Booster’s`
   wcj_admin_filter_statuses` param, e.g.:
 * `http://yoursite.com/wp-admin/edit.php?post_type=shop_order&filter_action=Filter&
   wcj_admin_filter_statuses[0]=wc-processing&wcj_admin_filter_statuses[1]=wc-on-
   hold`
 * Hope that helps.
 * P.S. If you like Booster, please [leave us a rating](https://wordpress.org/support/plugin/woocommerce-jetpack/reviews/?rate=5#new-post).
 * Best regards,
    Tom
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10373169)
 * The URL you give as an example exists and has malware. Please change it.
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10374246)
 * I have managed to realize this myself 😊
 * It’s not really hard to implement:
 *     ```
       add_action( 'admin_menu', 'woocommerce_menu_add_open_orders' );
   
       function woocommerce_menu_add_open_orders() {
   
                       // REMOVE ORIGINAL ORDERS LINK
                       remove_submenu_page( 'woocommerce', 'edit.php?post_type=shop_order' );
                       // REMOVE COUPON LINK, TO GET NEW ORDERS LINK ON TOP
                       remove_submenu_page( 'woocommerce', 'edit.php?post_type=shop_coupon' );
   
                       // ADD NEW ORDERS LINK
                       add_submenu_page('woocommerce', 'Open Orders', 'Open Orders', 'edit_posts', 'edit.php?s&post_status=all&post_type=shop_order&action=-1&m=0&_customer_user&wcj_admin_filter_statuses%5B0%5D=wc-processing&wcj_admin_filter_statuses%5B1%5D=wc-on-hold&wcj_admin_filter_statuses%5B2%5D=wc-processing-inv&wcj_admin_filter_statuses%5B3%5D=wc-send-invoice-1&filter_action=Filter&paged=1&action2=-1');
                       // ADD COUPONS AGAIN
                       add_submenu_page( 'woocommerce', 'Coupons', 'Coupons', 'edit_posts', 'edit.php?post_type=shop_coupon' );
       }
       ```
   
 * Maybe this will give you an idea how to implement it in your plugin 😊
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10377379)
 * Hi Tom,
    I’m not Booster Plus User at the moment. We have aquired a lot of plugins
   lately and I need to limit the amount of funds I put in plugins. Will test the
   dev version asap and get back to you.
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10377427)
 * This does look great! However, the newly added menu items are now placed under
   some other menu items. I think you need to add them with priority 10.
 * Second, I would like to have the presets available in the order overview as a
   dropdown 🙂
 * Also, would it be possible to get the counter behind the order in the menu, like
   original?
    -  This reply was modified 8 years ago by [darkallman](https://wordpress.org/support/users/darkallman/).
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10377586)
 * — added to comment above —
    -  This reply was modified 8 years ago by [darkallman](https://wordpress.org/support/users/darkallman/).
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10377603)
 * — added to comment above —
    -  This reply was modified 8 years ago by [darkallman](https://wordpress.org/support/users/darkallman/).
 *  [Algoritmika](https://wordpress.org/support/users/algoritmika/)
 * (@algoritmika)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10386426)
 * Hi [@darkallman](https://wordpress.org/support/users/darkallman/),
 * 1. “… the newly added menu items are now placed under some other menu items. 
   I think you need to add them with priority 10…” – not sure I understood it correctly–
   which other items? On my server it’s added right after original “Orders” menu(
   if it’s not removed), right above the Coupons menu. And I add it without setting
   priority, so it should be 10 by default:
 *     ```
       add_action( 'admin_menu', array( $this, 'admin_menu_multiple_status' ) );
       ```
   
 * 2. “… presets available in the order overview as a dropdown …” – not done yet,
   but will be adding this.
 * 3. Counter – please re-download the development version ([https://booster.io/dev/](https://booster.io/dev/)).
   Now in module’s settings (“WooCommerce > Settings > Booster > Shipping & Orders
   > Admin Orders List”) there is new “Add order counter” checkbox (in presets subsection).
   This will add the counter, however by default it has ~orange color (same as Plugins
   menu counter), so if you want to change it, you need to add some custom CSS (
   e.g. to “WooCommerce > Settings > Booster > Emails & Misc. > Custom CSS > Custom
   CSS – Back end (Admin)”). This will make it same color as WooCommerce processing
   orders counter (~blue):
 *     ```
       .wcj-order-count-wrapper { background-color: #00b9eb !important; }
       ```
   
 * Please let me know if you have any feedback.
 * Best regards,
    Tom
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [8 years ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10386774)
 * This looks great 🙂 Thx.
 * I have 2 plugins that are placed above Open Orders (preset)
    [Screenshot](https://i.imgur.com/4X6q58m.png)
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10410588)
 * When I hide the default woocommerce filter, I am no longer able to see the recyclebin.
   Can you add it to the booster filter options?
 *  [RokasJ](https://wordpress.org/support/users/rokasjan/)
 * (@rokasjan)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10411504)
 * Hi [@darkallman](https://wordpress.org/support/users/darkallman/),
 * Could you explain in more detail how did you hide the woocommerce filter, which
   recycle bin is missing and if the issue is related to the one above. Thank you.
 * _[ [Signature deleted](https://wordpress.org/support/guidelines/#avoid-signatures)]_
    -  This reply was modified 7 years, 11 months ago by [Jan Dembowski](https://wordpress.org/support/users/jdembowski/).
 *  Thread Starter [darkallman](https://wordpress.org/support/users/darkallman/)
 * (@darkallman)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10413283)
 * Booster Settings -> Admin Order List -> Hide Default Statuses Menu
    This hides
   the deafult status menu, including the Reclyclebin for orders. I would like to
   hide the status menu, but still be able to go into my recyclebin!

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

The topic ‘Admin Orders List Module Options -> Default’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-jetpack/assets/icon-256x256.png?rev=3351194)
 * [Booster for WooCommerce – PDF Invoices, Abandoned Cart, Variation Swatches & 100+ Tools](https://wordpress.org/plugins/woocommerce-jetpack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-jetpack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-jetpack/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-jetpack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-jetpack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-jetpack/reviews/)

 * 12 replies
 * 3 participants
 * Last reply from: [darkallman](https://wordpress.org/support/users/darkallman/)
 * Last activity: [7 years, 12 months ago](https://wordpress.org/support/topic/admin-orders-list-module-options-default/#post-10413283)
 * Status: not resolved