Tips on Customizing Notifadz by Adrenalead – Web Push Notification

How to Hide the "Notifadz Push" Admin Menu

function plt_hide_notifadz_by_adrenalead_web_push_notifications_menus() {
	//Hide the "Notifadz Push" menu.
	remove_menu_page('notifadz_settings');
}

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

Where do I put this code?

How to Hide the "Notifadz by Adrenalead" Meta Box

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

	//Hide the "Notifadz by Adrenalead" meta box.
	remove_meta_box('notifadz_adrenalead_post', $screen->id, 'advanced');
}

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