Tips on Customizing Simple Restrict

How to Hide Simple Restrict Admin Menus

function plt_hide_simple_restrict_menus() {
	//Hide the "Pages → Permissions" menu.
	remove_submenu_page('edit.php?post_type=page', 'edit-tags.php?taxonomy=simple-restrict-permission&post_type=page');
	//Hide the "Settings → Simple Restrict" menu.
	remove_submenu_page('options-general.php', 'simple_restrict_plugin');
}

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

Where do I put this code?

How to Hide the "Permissions" Meta Box

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

	//Hide the "Permissions" meta box.
	remove_meta_box('simple-restrict-permissiondiv', $screen->id, 'side');
}

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