How to Hide the "Woo-Shopify" Admin Menu

function plt_hide_w2s_sync_menus() {
	//Hide the "Woo-Shopify" menu.
	remove_menu_page('shopify-woo-integration');
}

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

Where do I put this code?