Forum Replies Created
-
AuthorPosts
-
VladimirKeymaster
You may try beta version 4.60.2.b3 available after login from the “Download” page. It contains needed fixes.
VladimirKeymasterThanks for this report.
Can you select “Network” tab, select related ‘admin-ajax.php’ request –
Form Data
action: ure_ajax
sub_action: get_nav_menusand look on the “Response” tab content for that request?
Does it show some PHP fatal error message?I will make more thorough own tests either and return with a fix if find any problem.
VladimirKeymasterHi,
Unfortunately, it’s not possible. WooCommerce provided access to the orders list for user who can ‘edit_shop_orders’ and shows order content only opening order editing page. So I don’t see a way to disable all order editing features without creating a separate read only form for order viewing, which is beyond the URE plugin functionality.
VladimirKeymasterUser Role Editor by default extends WordPress UI to allow grant more than single user role via “Other Roles” field. You can hide it adding this custom code to the active theme functions.php file:
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) { $user = wp_get_current_user(); if (in_array('user-manager', $user->roles)) { $show = false; } return $show; }
VladimirKeymasterRead this article.
VladimirKeymaster“Admin menu access” module shows menu items list according to the current permissions granted to the selected role. Generally if role does not have permissions to see menu item, there is no need to block it via extension like “Admin menu access”, as such menu should be not available for user.
Some plugin defines its admin menu in more complex manner, checking user permissions directly, but using lower capabilities, like ‘read’ or ‘edit_posts’ in the menu definition code. If you meed with case, when “Admin menu” does not show menu item for a role, but user sees this menu, let me know, what menu item and to what plugin it belongs. I will investigate it.
VladimirKeymasterRead this article.
VladimirKeymasterAs I remember any who can edit Gravity form, can export its entries.
Btw., URE includes “GF edit restrictions” add-on, which allows to restrict the list of forms available to a user. Plus, such user will can export entries only for the allowed forms.VladimirKeymasterGo to the “Posts->All”. The 2nd column in a view is “Author”. Find a post, created via Gravity Forms, which you wish allow to edit to some user. Are all created from the same user? Point by mouse to the user name at the “Author” column. You will see the user ID at the link, like 20 here: wp-admin/edit.php?post_type=post&author=20
Then you can use “edit restrictions” add-on and input to your user profile the author ID:
section “Posts/Pages/Custom Post Types Editor Restrictions”, field “with author user ID (comma separated)”.VladimirKeymasterIs “gravityforms_export_entries” capability shown turned ON even after your turn it OFF and update the role?
VladimirKeymaster2. Look, what user(s) is the author of post created by Gravity Forms. Add user ID to the list of authors which post you allow to edit for this user.
VladimirKeymasterHello Mike,
This option is useful when site has few custom post types protected by the same (default) capability type (post): edit_posts, delete_posts, etc., but some users should have access to the subset of such post types only. When you turn this option ON, custom post type ‘video’ gets permissions: edit_videos, delete_videos instead. And you have to grant those new capabilities to a role or user in order provide access to this post type.
VladimirKeymasterUser “Alana Woody” is not restricted by URE as she is not included into SBU004 analytics group. I don’t think that URE is related here.
Btw., can you provide step by step scenario in order to repeat this?
VladimirKeymasterHi,
Test the updated version. My test at http://www.iu13.org was finished successfully.
As a result of my investigations, I replaced code extracting pages list with SBU004 analytics group from the WP API to the direct SQL command, which will not exclude from the result the pages with post_status related to Oasis Workflow plugin, etc.
VladimirKeymasterHi,
Thank you for the patience. Give me few days more. I will try to get the final conclusion on the issue to the next Monday.
-
AuthorPosts