Tips on Customizing Restrict Elementor Widgets, Columns and Sections

How to Hide the "Restrict Elementor" Admin Menu

function plt_hide_restrict_elementor_widgets_menus() {
	//Hide the "Restrict Elementor" menu.
	remove_menu_page('restrict-elementor-widgets');
}

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

Where do I put this code?

How to Hide the "Latest From Our Blog" Dashboard Widget

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

	//Remove the "Latest From Our Blog" widget.
	remove_meta_box('cx-overview', 'dashboard', 'normal');
}

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