Tips on Customizing VikAppointments Services Booking Calendar

How to Hide the "VikAppointments" Admin Menu

function plt_hide_vikappointments_menus() {
	//Hide the "VikAppointments" menu.
	remove_menu_page('vikappointments');
}

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

Where do I put this code?

How to Hide VikAppointments Dashboard Widgets

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

	//Remove the "VikAppointments - Overview" widget.
	remove_meta_box('vik_appointments_overview', 'dashboard', 'normal');
	//Remove the "VikAppointments - RSS Feeds" widget.
	remove_meta_box('vik_appointments_rss', 'dashboard', 'normal');
}

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