Vladimir Garagulya
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] BuddyBoss group admin?Hi,
I do not have much experience with BuddyBoss and don’t take custom work currently.
Forum: Plugins
In reply to: [User Role Editor] Editor cant add new UserHi,
In general, you did all what WP may require to allow user to add new user at multisite setup. I suppose that some another plugin may block this. Try to deactivate all plugins and look if that will help.
Forum: Plugins
In reply to: [User Role Editor] Gutenberg Block Access ManagementHi Sam,
No, I did not work on these suggestions yet. You may proceed according your own timeline. Let me know what help do you need from my side.
Btw., as new add-ons will extend the Pro version, it’s better to proceed using Pro version dedicated forum at role-editor.com or discuss things via email.
Forum: Plugins
In reply to: [User Role Editor] missing menu itemsHi,
It would be result of other plugin or must use plugin or piece of code inserted into the active theme’s functions.php file, but not the permissions issue.
Try to deactivate all plugins, select WP default 2022 theme, remove temporary all must use plugin (wp-content/mu-pluigns folder) and make new test.Forum: Plugins
In reply to: [User Role Editor] Other roles are not saved on user creationHi,
Thanks for pointing this. URE uses this hook already, but with typo. Instead of
add_action( 'user_register', array($this, 'add_default_other_roles'), 10, 1 );at line 41, it should be:
add_action( 'user_register', array($this, 'add_other_roles'), 10, 1 );URE_User_Other_Roles::add_other_roles() includes URE_User_Other_Roles::update() method call already.
I will include this fix to the next update.
Forum: Plugins
In reply to: [User Role Editor] GDPR Compliance QuestionsHi,
1) User Role Editor (URE) is fully GDPR compliant.
2) Our company does not access or copy any data (including user personal data), except user roles and capabilities, which is used by WordPress to authorize user permissions.
3) URE does not transfer or provide access to any data that is associated with any particular user/individual or any particular user/individual’s posted data to any external site or system or entity, including our own.
4) URE and our company does not add any cookies to your site.
5) URE and our company does not transfer any data beyond your site. Thus, there is no need to additionally encrypt them.
Forum: Plugins
In reply to: [User Role Editor] limit an editor roleHi,
It’s not possible to achieve using only WP default permissions system.One of available solutions – URE Pro edit posts/pages restrictions add-on.
Forum: Plugins
In reply to: [User Role Editor] ACF Fields Capabilities‘Fields’ is a custom post type which uses the WordPress default ‘post’ capability type. Thus granting ‘edit_others_posts’ capability you affect all other custom post type which use the same capability type, including WordPress default posts.
One of the possible workarounds is described here.
Forum: Plugins
In reply to: [User Role Editor] Site for logged-in usersHi,
If you write about front-end menu items, try the “Nav menu roles” plugin:
https://wordpress.org/plugins/nav-menu-roles/Forum: Plugins
In reply to: [User Role Editor] Plugin level permission1) Ask question to plugin support and/or developer;
or
2) Make context search through .php file inside plugin folder for these patterns:
‘current_user_can’, ‘add_options_page’, ‘add_menu’, ‘add_submenu’. You can find the used user capability inside these commands, if plugin use them.Forum: Plugins
In reply to: [User Role Editor] Delete comments from trash – for admin onlyHi!
Thanks for the feedback and suggestion. I will think about it.
Forum: Plugins
In reply to: [User Role Editor] Rank Math Slug Issue & Edit Post with linksI don’t think that URE does this.
WordPress core itself is fully responsible for the filtering HTML inside post content. Just deactivate URE and make new test.Forum: Plugins
In reply to: [User Role Editor] Plugin level permissionHi,
It depends from a plugin. If it uses unique capability to protect its settings, then you can. If it uses WordPress internal ‘manage_options’ capability, like a lot of plugins do, you can not without using additional custom features, like Pro version “Admin menu blocking” add-on or similar.
Forum: Plugins
In reply to: [User Role Editor] Illegal string offset ‘edit_posts_role_permissions’Hi,
You have to sent the request to another plugin support page “WPFront User Role Editor”, not here.
Forum: Plugins
In reply to: [User Role Editor] Active vs. Inactive StatusURE excludes itself from the list of installed plugins, if current user does not have administrator role. It uses ‘all_plugins’ filter.
Apparently cron job running on server does not have active user with ‘administrator’ role.