Title: Vladimir Garagulya's Replies - page 6 | WordPress.org

---

# Vladimir Garagulya

  [  ](https://wordpress.org/support/users/shinephp/)

 *   [Profile](https://wordpress.org/support/users/shinephp/)
 *   [Topics Started](https://wordpress.org/support/users/shinephp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/shinephp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/shinephp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/shinephp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/shinephp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/shinephp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 76 through 90 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/shinephp/replies/?output_format=md) [2](https://wordpress.org/support/users/shinephp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shinephp/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/shinephp/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/shinephp/replies/page/7/?output_format=md)…
[205](https://wordpress.org/support/users/shinephp/replies/page/205/?output_format=md)
[206](https://wordpress.org/support/users/shinephp/replies/page/206/?output_format=md)
[207](https://wordpress.org/support/users/shinephp/replies/page/207/?output_format=md)
[→](https://wordpress.org/support/users/shinephp/replies/page/7/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] How to give edit user permission for a specific role in User Roles](https://wordpress.org/support/topic/how-to-give-edit-user-permission-for-a-specific-role-in-user-roles/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/how-to-give-edit-user-permission-for-a-specific-role-in-user-roles/#post-17027866)
 * In order edit users user role should can ‘list_users’, ‘edit_users’, ‘delete_users’
   user capabilities.
 * Starting from version 3.4.6 WC shop_manager can edit users with ‘customer’ role
   only, but it’s possible to change via offered custom filter: 
   [https://developer.woocommerce.com/2018/10/11/woocommerce-3-4-6-security-fix-release-notes/](https://developer.woocommerce.com/2018/10/11/woocommerce-3-4-6-security-fix-release-notes/)
 * How to delete or change membership depends from what membership plugin do you
   use.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] number of users in specific role](https://wordpress.org/support/topic/number-of-users-in-specific-role/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/number-of-users-in-specific-role/#post-17020625)
 * 2000-3000 users should be processed as expected by default. WP stops count users
   by roles when users > 10000.
 * May be some plugin changes this behavior. Try deactivate plugins (may be at the
   stage copy) and look on the Users page. If it will start count users by roles,
   activate plugins back one by one with a new test to isolate a reason.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] 403 Error](https://wordpress.org/support/topic/403-error-141/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/403-error-141/#post-17020186)
 * It’s not WordPress user permissions issue. I suppose some plugin is involved.
   Try to deactivate them all and test. If this will help, activate plugins back
   one by one with a new test to isolate a reason.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] number of users in specific role](https://wordpress.org/support/topic/number-of-users-in-specific-role/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/number-of-users-in-specific-role/#post-17020139)
 * WordPress users page by default splits users view by user roles and includes 
   users quantity to which role is granted. WordPress uses the **count_users(**)
   function for this purpose. 
   [https://developer.wordpress.org/reference/functions/count_users/](https://developer.wordpress.org/reference/functions/count_users/)
 * This function is time and/or memory critical. WordPress limited such calculations
   by users quantity 10000 by default.
 *     ```wp-block-code
          $count_users = ! wp_is_large_user_count();
           if ( $count_users ) {
                $users_of_blog = count_users();
           }
       ```
   
 *     ```wp-block-code
       /**
       	 * Filters whether the site is considered large, based on its number of users.
       	 *
       	 * @since 6.0.0
       	 *
       	 * @param bool     $is_large_user_count Whether the site has a large number of users.
       	 * @param int      $count               The total number of users.
       	 * @param int|null $network_id          ID of the network. null represents the current network.
       	 */
       	return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );
       ```
   
 * If it’s your case and such calculation is critical for your in opposite to the
   users page load time, you may increase this value via **wp_is_large_user_count**
   filter.
    -  This reply was modified 2 years, 8 months ago by [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/).
    -  This reply was modified 2 years, 8 months ago by [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Is there a problem with the plugin?](https://wordpress.org/support/topic/is-there-a-problem-with-the-plugin-2/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/is-there-a-problem-with-the-plugin-2/#post-17020129)
 * Hi Gary,
 * Yes, there were the continued issues with website and update server yesterday.
   All problems are solved now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I cannot assign permissions to the Popup Builder plugin](https://wordpress.org/support/topic/i-cannot-assign-permissions-to-the-popup-builder-plugin/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/i-cannot-assign-permissions-to-the-popup-builder-plugin/#post-16998831)
 * Popup Builder – edit_posts
   All Popups – edit_postsAdd New – sgpb_manage_optionsAll
   Subscribers – sgpb_manage_optionsNewsletter – sgpb_manage_optionsSettings – manage_optionsExtend–
   sgpb_manage_optionsSupport – sgpb_manage_options
 * sgpb_manage_options capability does not exists by default, try to add it manually.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I cannot assign permissions to the Popup Builder plugin](https://wordpress.org/support/topic/i-cannot-assign-permissions-to-the-popup-builder-plugin/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/i-cannot-assign-permissions-to-the-popup-builder-plugin/#post-16995677)
 * Give a link to plugin from wordpress.org/plugins
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I’ve lost my administrator role](https://wordpress.org/support/topic/ive-lost-my-administrator-role/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/ive-lost-my-administrator-role/#post-16988923)
 * 2 articles below may help:
 * [https://www.role-editor.com/how-to-restore-deleted-wordpress-user-roles/](https://www.role-editor.com/how-to-restore-deleted-wordpress-user-roles/)
 * [https://www.role-editor.com/restore-lost-wordpress-admin-permissions/](https://www.role-editor.com/restore-lost-wordpress-admin-permissions/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Author change of permissions](https://wordpress.org/support/topic/author-change-of-permissions/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/author-change-of-permissions/#post-16984669)
 * There is no special permission for this page to solve task modifying user role.
   If user can ‘read’ capability, which allows access to admin dashboard, then user
   automatically can access its own user profile page.
 * You need to use some PHP code to modify admin menu for this user, or one of existing
   plugins, which allow to modify admin menu for selected user or user role. User
   Role Editor Pro admin menu access add-on is one of them.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Comment Notification](https://wordpress.org/support/topic/comment-notification-20/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/comment-notification-20/#post-16984652)
 * There is no special permission in WordPress for this purpose. You may achieve
   this via some plugin.
 * [https://www.wpbeginner.com/plugins/allow-your-users-to-subscribe-to-comments-in-wordpress/](https://www.wpbeginner.com/plugins/allow-your-users-to-subscribe-to-comments-in-wordpress/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Multisite user role issue, editor cannot see pages or posts](https://wordpress.org/support/topic/multisite-user-role-issue-editor-cannot-see-pages-or-posts/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/multisite-user-role-issue-editor-cannot-see-pages-or-posts/#post-16903113)
 * If user does not can see/edit pages at the 2nd site, go to admin dashboard of
   the 2nd site and grant him editor role directly there. It seems as user was added
   to the 2nd site with a default subscriber role.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[User Role Editor] Smoothly integrated](https://wordpress.org/support/topic/smoothly-integrated/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/smoothly-integrated/#post-16903080)
 * Thanks for the good review and especially for the enhancement suggestions, which
   I will definitely realize.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Multisite user role issue, editor cannot see pages or posts](https://wordpress.org/support/topic/multisite-user-role-issue-editor-cannot-see-pages-or-posts/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/multisite-user-role-issue-editor-cannot-see-pages-or-posts/#post-16893217)
 * Does user have editor role at the same site where he try to see posts or pages?
   Take into account that WP multisite checks user permissions on per site basis.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Can not edit authors with other user roles](https://wordpress.org/support/topic/can-not-edit-authors-with-other-user-roles/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/can-not-edit-authors-with-other-user-roles/#post-16893211)
 * WordPress uses ‘edit_’ capability by default in both cases: for editing existing
   post and for adding new one. Pro version allows to use a separate ‘create_’ capability
   to protect “Add New” function.
 * Btw., it’s better to ask questions related to Pro version directly via email 
   or related site contact form. This forum is dedicated to a free version only.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Can not edit authors with other user roles](https://wordpress.org/support/topic/can-not-edit-authors-with-other-user-roles/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/can-not-edit-authors-with-other-user-roles/#post-16890119)
 * Until WordPress 5.9 you had to grant to your custom author role the level_0, 
   level_1 capabilities. Revoke it from user, update his profile and grant it back
   to this user. After that only user will appear in the authors list.
 * Starting from WP 5.9 user should can edit post for which you try to set him as
   author. At least edit_published_post capability is required for the post in the
   published state.
 * One of the solutions above of the both at the same time should help.
 * Read this article
   [https://www.role-editor.com/wordpress-user-levels-deprecated-just-partially/](https://www.role-editor.com/wordpress-user-levels-deprecated-just-partially/)
   for more information.
    -  This reply was modified 2 years, 10 months ago by [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/).

Viewing 15 replies - 76 through 90 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/shinephp/replies/?output_format=md) [2](https://wordpress.org/support/users/shinephp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shinephp/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/shinephp/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/shinephp/replies/page/7/?output_format=md)…
[205](https://wordpress.org/support/users/shinephp/replies/page/205/?output_format=md)
[206](https://wordpress.org/support/users/shinephp/replies/page/206/?output_format=md)
[207](https://wordpress.org/support/users/shinephp/replies/page/207/?output_format=md)
[→](https://wordpress.org/support/users/shinephp/replies/page/7/?output_format=md)