Tips on Customizing WPSS Ultimate User Management

How to Hide the "User Management" Admin Menu

function plt_hide_wpss_ultimate_user_management_menus() {
	//Hide the "User Management" menu.
	remove_menu_page('wpss-ultimate-user-management-admin-menu');
}

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

Where do I put this code?

How to Hide the "Who can access:" Meta Box

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

	//Hide the "Who can access:" meta box.
	remove_meta_box('wpss_content_access_metabox', $screen->id, 'side');
}

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