Remove WooCommerce Dashboard Bloat
WooCommerce adds a number of elements to wp-admin that most shop owners never look at, and each one has a cost. Some run database queries every time a screen loads, others make outbound calls to WooCommerce.com. On a busy store, or on a slow connection between your server and WooCommerce.com, these turn a quick admin page into one that hangs for a few seconds before it’s usable.
The fix is a set of simple toggles spread across the WP Admin and Bloat tabs. You turn off what you don’t use and the associated work stops running.
The WooCommerce order summary and status widget on your dashboard runs queries to build its totals every time you load wp-admin. If you don’t rely on it, remove it and that work goes away.
The WooCommerce Marketplace and extension suggestions that appear on the Products and Settings screens are effectively adverts, and they fetch their content from WooCommerce.com. Disabling them removes both the clutter and the external call, so those screens stop waiting on a third-party response.
The product category dropdown on the Products screen is a quieter problem. By default WordPress loads every one of your product categories to build that dropdown, on every visit to the screen. On a store with thousands of categories that’s a heavy query you pay for constantly. Caching the dropdown means it’s built once and served from cache after that, so quick edits stay fast.
In short: WooCommerce bolts several query-heavy and network-heavy elements onto your admin screens. The WP Admin and Bloat tabs let you switch off the dashboard widget and the Marketplace suggestions, and cache the product category dropdown, each with a single toggle, so wp-admin does less work and loads quicker.