Tips on Customizing OneSignal – Web Push Notifications

How to Hide the "OneSignal Push" Admin Menu

function plt_hide_onesignal_free_web_push_notifications_menus() {
	//Hide the "OneSignal Push" menu.
	remove_menu_page('onesignal-push');
}

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

Where do I put this code?

How to Hide the "OneSignal Push Notifications" Meta Box

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

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

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