Vladimir Garagulya
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] two rolesHi,
I suppose that some woocommerce related plugin may add ‘shop_manager’ role to any user with ‘administrator’ role. Try to deactivate all plugins except URE and test again. It that will help, activate plugins back one by one and make new tests to isolate a source of this automatic change.
Forum: Plugins
In reply to: [User Role Editor] create_user rightsHi,
WooCommerce by default restricts the list of available roles to the single ‘Customer’ role. Thus, any not superadmin user will see this single role in the “Role” selection dropdown list.
Forum: Plugins
In reply to: [User Role Editor] Admin Role but no access to woocommerce sales data?Do you plan allow developer to install and/or update some plugin?
If Yes, there is no sense to restrict such user in any manner. It takes few minutes to get full access to the site via PHP code.Solution, setup stage site copy with non critical and/or fake data.
Forum: Plugins
In reply to: [User Role Editor] Woocommerce Customer List for Non-AdminsSorry, while “WooCommerce->Customers” menu item is shown for such role, but page
/wp-admin/admin.php?page=wc-admin&path=%2Fcustomers
itself is not opened due to permissions error. It seems it still requires ‘manage_woocommerce’ capability.
Forum: Plugins
In reply to: [User Role Editor] Woocommerce Customer List for Non-AdminsHi,
Not obvious, but working solution is a role with these capabilities:
read
edit_others_shop_orders
view_woocommerce_reports
view_admin_dashboardThe reason – WooCommerce adds/define some admin menu items conditionally if current user can ‘edit_others_shop_orders’, while menu item itself is defined with ‘view_woocommerce_reports’ capability.
Forum: Plugins
In reply to: [User Role Editor] Role not being removedHi,
What is this role ID? To what plugin it belongs?
Some plugin may automatically add its role to user(s) with subset of WP built-in roles (like ‘editor’, ‘author’) or users with some capability (like ‘edit_posts’). You can check this this way: deactivate all plugins except URE. Try to revoke the role. If it will help, then activate plugins back one by one looking when this role will appear at user profile again.
Forum: Plugins
In reply to: [User Role Editor] Adding access to Restrict Content Pro pluginOften plugins use WordPress built-in user capabilities, like ‘manage_options’. You will not see any specific section or user capability related to the such plugin.
I can not help without access to the mentioned plugin. Ask its support what user capabilities or roles it uses, then grant them to your user.
Forum: Plugins
In reply to: [User Role Editor] No access to admin content backendHi,
This article may help to resolve the issue.
Forum: Plugins
In reply to: [User Role Editor] Can I add it so a Shop Manager can control the menu?In order to edit front-end main menu user should can ‘edit_theme_options’. Take into account that this capability grants access to the full “Appearance” menu.
Forum: Plugins
In reply to: [User Role Editor] Customize page errorJust in case you have modified role after granted it to user, try to change user’s role to ‘subscriber’ for example, update user profile, then change his role back to that role back. Just in case user level would does matter…
It’s possible to change something via code probably, but developer (you will find) should have access to your site in order to look what is happening and what to change.
Forum: Plugins
In reply to: [User Role Editor] Customize page errorSimple test showed that user with just 2 capabilities ‘read’, ‘edit_theme_options’ has access to the “Appearance->Customize” page at the fresh installed test WordPess site.
I suppose that some plugin or custom code is involved in your case. Such error message is shown by wp-admin/includes/menu.php (line #350), if for some reason admin menu item is unavailable/blocked for current user:
if ( ! user_can_access_admin_page() ) { /** * Fires when access to an admin page is denied. * * @since 2.5.0 */ do_action( 'admin_page_access_denied' ); wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); }Try to deactivate all plugins and activate WP default 2021 theme – will it change something? If Yes, activate plugins back one by one to isolate a conflict.
Forum: Plugins
In reply to: [User Role Editor] WooCommerce settings accessHi,
Compare your role with one described here or just build it from scratch according to this article.
Forum: Plugins
In reply to: [User Role Editor] limit user to specific woocommerce order shipping typeHi,
It’s not possible to achieve with WordPress built-in and WooCommerce user permissions. Custom programming is required.
Forum: Plugins
In reply to: [User Role Editor] Plugin menu item disabled on using Users role editorJust in case it would help, try to open CFDB settings page and save it again. If it adds some capability to the roles (which you accidentally revoked), it may solve a problem.
Forum: Plugins
In reply to: [User Role Editor] Plugin menu item disabled on using Users role editorHi,
Give more exact information:
– CFDB plugin link, to discuss exactly the same plugin;
– what role has non-admin user who need to see CFDB admin menu;
– what changes did you make via User Role Editor to the non-admin role?