Disable (remove) the marketing menu option in WooCommerce 4.3.x
问题 Since the release of WooCommerce 4.3.x , the previous fix for removing the Marketing menu option that worked with 4.1.x does not work anymore and I'm wondering if anyone knows how to remove it for 4.3.x . I've tried all of these without success: #1: add_filter( 'woocommerce_marketing_menu_items', '__return_empty_array' ); #2: add_action( 'admin_init', 'remove_wc_marketing_menu_item' ); function remove_wc_marketing_menu_item() { remove_menu_page( 'admin.php?page=wc-admin&path=/marketing' ); }