Change WordPress user roles and capabilities › Forums › Give user access to plugin – how to › Hide "Other Roles" control › Reply To: Hide "Other Roles" control
24/05/2017 at 05:02
#3787
Vladimir
Keymaster
Add this code to your active theme functions.php file or setup it as a Must Use plugin:
add_filter('ure_show_additional_capabilities_section', 'ure_show_additional_capabilities_section');
add_filter('ure_bulk_grant_roles', 'ure_show_additional_capabilities_section');
function ure_show_additional_capabilities_section($show) {
if (current_user_can('user-manager')) {
$show = false;
}
return $show;
}