Forum Replies Created
-
AuthorPosts
-
Vladimir
KeymasterHi,
I confirm the bug. Thanks.
I will develop a fix after my return to the office at Thursday, June, 9th.Vladimir
KeymasterHi,
1) Login to the https://www.role-editor.com and open this page (top menu, right item):
You will find the license key at the top.
2) Generally, to prohibit the access to the backend you should revoke the ‘read’ capability.Vladimir
KeymasterHi,
In order to look BNFW menu for the role, that role should include at least ‘edit_bnfw_notifications’ capability.
If you don’t see some item in ‘Admin Menu’ for the role, check the same for the ‘Administrator’ role and compare if your role contains the required user capabilities.
Vladimir
KeymasterPlease show a screenshot of what do you see.
Vladimir
KeymasterAdd ‘edit_job_applications’ capability to the role to see ‘Job Applications’ menu.
Vladimir
KeymasterActivate ‘edit posts access restrictions’ additional module and set “Allow ‘Own data only'” restriction for your ‘Applicant’ role:
Vladimir
KeymasterHi,
The code of this method is here:
public function is_restriction_aplicable() { if ($this->lib->multisite && is_super_admin()) { return false; } if (!$this->lib->multisite && current_user_can('administrator')) { return false; } return true; }
It means: do not restrict superadmin for WP multisite and do not restrict user with ‘administrator’ role for single WP.
Vladimir
KeymasterIt’s possible. Do you have any problem with it?
Vladimir
KeymasterHi,
This shortcode does not produce a content itself. When you use it inside post content you enclose a part of content inside this shortcode, e.g.
[user_role_editor ...]content to show[/user_role_editor]
You can use this logic inside your template code:if (current_user_can('agent')) { echo 'You can see this'; } else { echo 'You can not see this'; }
Or set this restriction for the ‘agent’ role using ‘Posts View’ button from posts view restriction module. You may use some category ID assigned to all post of that type for that.
Vladimir
KeymasterHi,
If use URE Pro, then it’s possible on the base of role and categories assigned to the posts.
If you write theme template page yourself, then Yes, it’s possible to check current user ID and show needed subset of CPT posts.
Vladimir
KeymasterI installed the Blogghiamo Free theme to the test site. I tried to search a post not available for the current user. It was not found.
Could you provide me more details or give me access to the site to check an issue online?
Vladimir
KeymasterHi,
This module will help you to block ‘Sermon’ for authors.
Vladimir
KeymasterHi,
Sermon Manager plugin uses WordPress built-in user capabilities
Vladimir
KeymasterI need to repeat this to check and fix. What theme do you use?
Vladimir
KeymasterHi Ronaldus,
Yes, ‘manage_options’ is about site settings. It protects the ‘Settings’ menu. The most often it’s used by plugins which add menu item to the ‘Settings’ menu. So it’s just the Canvas theme’s developer choice.
Check that you did not give to the user with ‘manage_options’ much more permissions than you initially planned. May be you need to block some extra menu items with Admin menu blocking module.
-
AuthorPosts