Vladimir Garagulya
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] Error at edit userDo you see the same error if deactivate URE?
Forum: Plugins
In reply to: [User Role Editor] Two RoleURE allows to grant to a user more than 1 role. As a result WordPress merges capabilities from those roles and checks them together.
If you need a single role as a result of union of another roles – URE does not support such merge operation. Add capabilities from the 2nd role manually.
Forum: Reviews
In reply to: [User Role Editor] Stopped working Admin bar not showingcontributor role by default can:
read,
edit_posts,
delete_posts,
level_0,
level_1Active URE plugin may hide top admin menu bar for a role only in case you turned ON the “Hide admin bar” option at the bottom or URE page. In case URE is deactivated or “Hide admin bar” option is switched OFF, URE is not responsible for this. Try deactivate temporally all plugins and check if another plugin is involved.
Forum: Plugins
In reply to: [User Role Editor] Why permissions change by themselves ?WooCommerce restores its own roles to the initial state on activation.
It’s better to use a copy of shop_manager role if you wish to work with its modified version.
Forum: Plugins
In reply to: [User Role Editor] View AccessUser Role Editor does not have read-only mode.
<a href=”https://shinephp.com/how-to-change-wordpress-user-role-capabilities/”>This article</a> explains how WP stores user roles data.
Forum: Plugins
In reply to: [User Role Editor] cannot delete the selected postWhat about try the own capability type for this custom post type, as ‘reservation’ instead of ‘post’? that is:
edit_reservations
edit_published_reservations
delete_reservations
…
etc.Forum: Plugins
In reply to: [User Role Editor] cannot delete the selected postLook if your role has all related user capabilities:
delete_posts
delete_published_posts – if post is in “Publish” state
delete_private_posts – if post is private
delete_others_posts – if post was added by other userForum: Plugins
In reply to: [User Role Editor] Additional meta boxesHi,
Pay attention that mentioned article is related to a Pro version only.
Forum: Plugins
In reply to: [User Role Editor] Plugin site not available role-editor.com?Solved.
Forum: Plugins
In reply to: [User Role Editor] Plugin site not available role-editor.com?It’s a temporal issue related to the automatic SSL certificate replacement. I’m working on solution.
Forum: Plugins
In reply to: [User Role Editor] keep / disable / delete plugin after role creation?Hi,
User role changes made via URE are permanent. You can delete URE plugin after that. You will lose only URE’s own settings data with plugin deletion, not changes made to WordPress user roles.
Hi,
PHP 7.3 is still quite old. You may use this quick fix – remove ‘string’ type definition from the line #119. Replace:
public static function filter_string_polyfill(string $string): string {with
public static function filter_string_polyfill( $string ) {Thanks.
I may just suppose that software which adds the
_fs_blog_admin=trueargument can block a request or try to load some resource from external server, which blocks a full request.Could you deactivate all plugins except URE and make new test? If problem will go away, activate plugins back one by one to isolate a reason of this problem.
Forum: Plugins
In reply to: [User Role Editor] role with no accessHi,
Even if user does not have any role at this site, he can not access back-end (admin dashboard), but still can see a site content which it is not protected. Membership plugin should offer a functionality to hide protected content from not members or from member with not enough high level.
Btw., URE Pro includes content view protection add-on : https://www.role-editor.com/content-view-access-restriction-selected-roles/
Check browser JavaScript console for the error messages.
Btw., You can not revoke capabilities from administrator role, as this is a role for superadmin, which can ALL by definition. You can just grant capabilities missed from this role by some reason.