Change WordPress user roles and capabilities › Forums › Give user access to plugin – how to › How to give user access to plugins › Reply To: How to give user access to plugins
08/09/2014 at 01:06
#901
Vladimir
Keymaster
Yes, I see. ‘Booking Wis’ plugin requires the “Administrator” role for access to all its menu items. It is the real problem.
Quick workaround: modify ‘Booking Wis’ source code. I may do it for you in case you send me this plugin installation package (support [at-sign] role-editor.com
I will try to add the feature to replace menu capability which was set by plugin in order to resolve the similar issues. It may require a few days…
It could not help in case plugin author checks user rights not in the menu definitions only, but at his source code directly, like:
if (!current_user_can('administrator') {
echo 'Not sufficient permissions!';
die;
}