How to Hide YayPricing Lite - WooCommerce Dynamic Pricing And Discounts Admin Menus

function plt_hide_yaypricing_menus() {
	//Hide the "YayCommerce" menu.
	remove_menu_page('yaycommerce');
	//Hide the "YayCommerce → Help" menu.
	remove_submenu_page('yaycommerce', 'yaycommerce-help');
	//Hide the "YayCommerce → Other plugins" menu.
	remove_submenu_page('yaycommerce', 'yaycommerce-other-plugins');
}

add_action('admin_menu', 'plt_hide_yaypricing_menus', 22);

Where do I put this code?