With the new WooCommerce 4.1.0 just released, there's a new Marketing item in the menu. Looking at the URL, it goes to admin.php?page=wc-admin&path=/marketing and by using the admin_menu hook, I'm trying to remove this menu option.
I tried with the sub_menu option and with remove_menu_page option without success. If anyone can correct my code I would be very grateful.
add_action( 'admin_menu', 'remove_woocommerce_marketing_menu_option' );
function remove_woocommerce_marketing_menu_option(){
remove_menu_page( 'admin.php?page=wc-admin&path=/marketing' );
}