How to Hide TIVENTS Products Feed Admin Menus

function plt_hide_tivents_products_feed_menus() {
	//Hide the "TIVENTS Einstellungen" menu.
	remove_menu_page('tivents_products_feed-settings');
	//Hide the "TIVENTS Einstellungen → TIVENTS Einstellungen" menu.
	remove_submenu_page('tivents_products_feed-settings', 'tivents_products_feed-settings');
	//Hide the "TIVENTS Einstellungen → Info/Nutzung" menu.
	remove_submenu_page('tivents_products_feed-settings', 'infos');
}

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

Where do I put this code?