Forum Replies Created
-
AuthorPosts
-
Vladimir
KeymasterHi,
Let’s call it ‘quick’ not ‘worst’ scenario. To realize a quick scenario:
1) create separate roles;
2) include to them just capabilities which are required to access required part of WordPress;
3) if some required capability givea access to more than 1 menu items, including some menu items which you wish to hide/block from such role, use ‘Admin menu access’ add-on of the User Role Editor Pro in order to block those menu items.To give you more detailed answer I need to look at the “Woocommerce Appointments” plugin, check and test it with different scenarios. I need to look, what it offers itself in the part of different access for the different users. You may send a copy of this plugin to support [at-sign] role-editor.com. I guarantee that it will be used only in the development (not public) environment and for the testing purpose only.
Double think before to give somebody the ability to install new plugins. Untrusted person may install malicious code and get full access to the site via it.
Vladimir
KeymasterHi,
Thanks for this information. I did not know about such warning from “Varktech Pricing Deals for WooCommerce” plugin developer until you informed me. Moreover this warning existed 8 months at its support forum:
https://wordpress.org/support/topic/role-editor-plugin-conflict-issue
but that plugin author vark did not contact me about this issue, but prefered to require URE’s deletion from his plugin users.
I asked him to give more details about the issue via that support thread.I will try to resolve possible issue/conflict as I will get more information.
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
-
AuthorPosts