Tips on Customizing OT Flatsome Vertical Menu

How to Hide the "OT FS Vertical Menu" Admin Menu

function plt_hide_ot_flatsome_vertical_menu_menus() {
	//Hide the "Settings → OT FS Vertical Menu" menu.
	remove_submenu_page('options-general.php', 'ot-flatsome-vertical-menu');
}

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

Where do I put this code?

How to Hide the "WordPress Guides/Tutorials" Dashboard Widget

function plt_hide_ot_flatsome_vertical_menu_dashboard_widgets() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Remove the "WordPress Guides/Tutorials" widget.
	remove_meta_box('themeisle', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_ot_flatsome_vertical_menu_dashboard_widgets', 20);