Remove WooCommerce’s Marketing menu
Hides the Marketing menu and its recommendations. Coupons move back under WooCommerce.
<?php
add_filter(
'woocommerce_admin_features',
static fn( $features ) => array_values( array_diff( (array) $features, array( 'marketing', 'coupons' ) ) )
);
In these packs
- WooCommerce: account, emails and admin: A leaner My account page, handier order lists and emails, and lighter pages.