#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;
}