What Does the Feature Do?
WooCommerce adds a status meta box to the WordPress dashboard that summarizes orders and stock. The Disable WooCommerce Status Meta Box feature removes that meta box from the dashboard, so it no longer appears among your dashboard widgets.
The change is cosmetic to the dashboard. It does not affect WooCommerce functionality, orders, products, or the shop.
Why You Need It
The dashboard status widget may not suit everyone:
- A single-purpose store may not need the built-in summary
- Removing it frees the dashboard area for the widgets you use
- It reduces visual clutter for staff who track orders elsewhere
- It keeps the dashboard focused on the tools that matter to your workflow
How to Disable the WooCommerce Status Meta Box
Step 1: Enable the Feature
- In WordPress admin, open Classic Monks > WooCommerce.
- Open the Optimization settings area.
- Toggle on Disable WooCommerce Status Meta Box.

Step 2: Save and Test
Click Save Changes. Open the WordPress dashboard and confirm the WooCommerce status meta box no longer appears.
Configuration Options
| Option | Default |
|---|---|
| Disable WooCommerce Status Meta Box | Off |
There are no nested options. The feature is a single on/off control.
What Gets Affected
- The WordPress dashboard: the WooCommerce status meta box is removed
What Does NOT Get Affected
- WooCommerce actions, orders, products, and settings: fully functional
- The shop and checkout: unchanged
- Other dashboard widgets: unaffected
Advanced Options (Developers)
The feature registers one hook in functions/woocommerce/woocommerce-functions.php:
add_action( 'wp_dashboard_setup', 'cm_disable_woocommerce_status_meta_box' );
wp_dashboard_setup calls cm_disable_woocommerce_status_meta_box(), which runs remove_meta_box('woocommerce_dashboard_status', 'dashboard', 'normal') to drop the status widget from the dashboard.
Common Use Cases
Clean dashboards. Stores that track orders through WooCommerce > Orders rather than the dashboard benefit from removing the summary widget.
Focused staff. Teams that only need specific dashboard widgets get a cleaner view.
Custom dashboards. When another dashboard solution is in use, the built-in status widget is redundant.
Keeping It Set Up
Set the toggle once and it stays active across the site. To change behavior, return to the WooCommerce settings, adjust the option, and save again. The store continues to run normally throughout, and you can turn the feature off at any time to restore the previous default behavior. For teams managing multiple environments, confirm the setting on staging first, then apply it to production and verify a real page load before treating it as live.
Where the Data Still Lives
Removing the dashboard widget does not remove the underlying order and stock data. The same totals are available in the WooCommerce order list and product inventory screens. This makes the toggle a safe way to clean the dashboard without losing any reporting. Teams that track fulfillment through WooCommerce > Orders can use this to remove the redundant summary while keeping all the data they rely on intact.