Forum Replies Created
-
AuthorPosts
-
19/03/2018 at 13:36 in reply to: How can i hide Other Roles dropdown menu from user editor, Grant Role button… #4691Fotini KokkinosParticipant
T H A N K Y O U!!!
This one worked!19/03/2018 at 13:09 in reply to: How can i hide Other Roles dropdown menu from user editor, Grant Role button… #4689Fotini KokkinosParticipantHello!
Is there any solution finally for hiding the “Grant Roles” button or the whole “Grant Role” feauter for specific user roles?or else,
How can I completely disable this plugin’s feature?
Pls advice.
18/03/2018 at 13:59 in reply to: How can i hide Other Roles dropdown menu from user editor, Grant Role button… #4688Fotini KokkinosParticipantHello!
I have the followng code that works fine for hiding the “Other Roles” dropdown field fro the User’s Editor screen. This snippet, doesn’t affect the “Grant Roles” Button.
//Hide “other roles” from user editor//
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(‘comapny_editor’)) {
$show = false;
}return $show;
}I tried the new snippet you gave me, with “False” but the button is till there….
Pls see the screenshot
http://nimb.ws/oKGmaE17/03/2018 at 12:31 in reply to: How can i hide Other Roles dropdown menu from user editor, Grant Role button… #4686Fotini KokkinosParticipantThank you so much for your code snippets.They worked just fine!
What about the “Grant Roles” button? How can I hide it too from certain roles?
Thank again!
-
AuthorPosts