Tips on Customizing Database for Contact Form 7, WPforms, Elementor forms

How to Hide the "CRM Entries" Admin Menu

function plt_hide_contact_form_entries_menus() {
	//Hide the "CRM Entries" menu.
	remove_menu_page('vxcf_leads');
}

add_action('admin_menu', 'plt_hide_contact_form_entries_menus', 28);

Where do I put this code?

How to Hide the "Contact Form Entries" Dashboard Widget

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

	//Remove the "Contact Form Entries" widget.
	remove_meta_box('dashboard_widget', 'dashboard', 'normal');
}

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