How to Hide the "TCS Gift Card Payments" Admin Menu

function plt_hide_123tcs_gift_card_payments_for_woocommerce_menus() {
	//Hide the "TCS Gift Card Payments" menu.
	remove_menu_page('tcs-gcp-settings-page');
}

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

Where do I put this code?