How to Hide ShopReady - WooCommerce Builder Admin Menus

function plt_hide_shopready_elementor_addon_menus() {
	//Hide "ShopReady".
	remove_menu_page('shop-ready-elements-dashboard');
	//Hide "ShopReady → ShopReady".
	remove_submenu_page('shop-ready-elements-dashboard', 'shop-ready-elements-dashboard');
	//Hide "ShopReady → Support".
	remove_submenu_page('shop-ready-elements-dashboard', 'https://support.quomodosoft.com/support/login');
	//Hide "ShopReady → Documentation".
	remove_submenu_page('shop-ready-elements-dashboard', 'https://quomodosoft.com/plugins-docs');
	//Hide "ShopReady → Go Pro 🔥".
	remove_submenu_page('shop-ready-elements-dashboard', 'https://quomodosoft.com/plugins/shopready');
}

add_action('admin_menu', 'plt_hide_shopready_elementor_addon_menus', 11);

Where do I put this code?