Tips on Customizing Gravitec.net – Web Push Notifications

How to Hide the "Gravitec.net Push" Admin Menu

function plt_hide_gravitec_net_web_push_notifications_menus() {
	//Hide the "Gravitec.net Push" menu.
	remove_menu_page('gravitecnet-push');
}

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

Where do I put this code?

How to Hide the "Gravitec Push Notifications" Meta Box

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

	//Hide the "Gravitec Push Notifications" meta box.
	remove_meta_box('gravitec_push_on_post', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_gravitec_net_web_push_notifications_metaboxes', 20);