Title: Vladimir Garagulya's Replies - page 45 | 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 - 661 through 675 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/44/?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)…
[44](https://wordpress.org/support/users/shinephp/replies/page/44/?output_format=md)
45 [46](https://wordpress.org/support/users/shinephp/replies/page/46/?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/46/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Uswer role that can view product back end without having access to Woocommerce](https://wordpress.org/support/topic/uswer-role-that-can-view-product-back-end-without-having-access-to-woocommerce/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/uswer-role-that-can-view-product-back-end-without-having-access-to-woocommerce/#post-12947720)
 * Add manually custom capability ‘view_admin_dashboard’. Then grant it to your 
   role. This will allow to access admin dashboard without having critical access
   to the WooCommerce settings.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Administrator role missing](https://wordpress.org/support/topic/administrator-role-missing-4/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/administrator-role-missing-4/#post-12935323)
 * Filter code should go to the active theme functions.php file or you may add it
   as as a separate .php file to the wp-content/mu-plugins/ folder as a [Must Use plugin](https://wordpress.org/support/article/must-use-plugins/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Bulk Edit via Sql?](https://wordpress.org/support/topic/bulk-edit-via-sql/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/bulk-edit-via-sql/#post-12932905)
 * Hi,
 * WordPress stores role granted to a user at the wp_usermeta DB table. You may 
   select all subscribers this way:
 *     ```
       SELECT * FROM wp_usermeta WHERE meta_key='wp_capabilities' AND meta_value='a:1:{s:10:"subscriber";b:1;}';
       ```
   
 * ‘wp_’ is a DB prefix defined at the wp-config.php.
    ‘a:1:{s:10:”subscriber”;b:
   1;}’ is a serialized PHP array with 1 element key=’subscriber’ and value=boolean
   true. Pay attention on the length of string ‘subscriber’ – s: 10. So if you need
   to replace roles for all subscribers to contributor you can use this command:
 *     ```
       UPDATE wp_usermeta SET meta_value='a:1:{s:11:"contributor";b:1;}' WHERE meta_key='wp_capabilities' AND meta_value='a:1:{s:10:"subscriber";b:1;}';
       ```
   
 * Make a fresh backup copy of your database before to make any direct update. Just
   in case something will go a wrong way.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Administrator role missing](https://wordpress.org/support/topic/administrator-role-missing-4/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/administrator-role-missing-4/#post-12930166)
 * Thanks. You are right. I re-viewed the code and confirm:
    ‘administrator’ role
   is protected by default from single site administrators under WP multisite and
   this protection is not switched off by checkbox at the URE Settings, as it works
   for the single site installation.
 * You may switch ‘administrator’ role protection using custom filter ‘ure_supress_administrators_protection’,
   just return TRUE from it, like here:
 *     ```
       add_filter( 'ure_supress_administrators_protection', 'ure_supress_admin_protection', 10, 1);
       function ure_supress_admin_protection( $supress ) {
         return true;
       }
       ```
   
    -  This reply was modified 5 years, 11 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] Custom Capabilities – tag](https://wordpress.org/support/topic/custom-capabilities-tag/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/custom-capabilities-tag/#post-12930074)
 * URE shows under “Custom capabilities” group the capabilities which do not belong
   to WordPress itself, but added by the themes and/or plugins. So asked ‘tag’ capability
   may belong to some plugin. I can not tell you more.
 * Btw., screenshots are not available.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Capability by Woocommerce category](https://wordpress.org/support/topic/capability-by-woocommerce-category/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/capability-by-woocommerce-category/#post-12930061)
 * Hi,
 * It’s not possible to restrict orders by product category using user role and 
   capabilities only.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Administrator role missing](https://wordpress.org/support/topic/administrator-role-missing-4/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/administrator-role-missing-4/#post-12930054)
 * Go to the Network Admin->Options->User Role Editor->General and turn ON “Show‘
   Administrator’ role” checkbox.
    URE protects by default ‘administrator’ role 
   and users with ‘administrator’ role from each other.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Allow Product Review for a specific role ?](https://wordpress.org/support/topic/allow-product-review-for-a-specific-role/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/allow-product-review-for-a-specific-role/#post-12921035)
 * What plugin offers “Product review” function?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I have a problem with Pedding Administrator](https://wordpress.org/support/topic/i-have-a-problem-with-pedding-administrator/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/i-have-a-problem-with-pedding-administrator/#post-12921022)
 * [This article](https://www.role-editor.com/restore-lost-wordpress-admin-permissions/)
   may help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Permission allowing access to all Buddypress Groups](https://wordpress.org/support/topic/permission-allowing-access-to-all-buddypress-groups/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/permission-allowing-access-to-all-buddypress-groups/#post-12890644)
 * I don’t have the answer on hands. Did you ask the question to BuddyPress developer,
   what permissions BP requires in addition?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Roles not working](https://wordpress.org/support/topic/roles-not-working-4/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/roles-not-working-4/#post-12890641)
 * In order to edit post, role should have ‘edit_posts’ capability.
    Redirection
   may be related to some plugin. Try to deactivate all and re-test activating them
   back one by one to isolate a source of redirection, then analyse how to resolve
   the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Automatically Assign a Secondary Role](https://wordpress.org/support/topic/automatically-assign-a-secondary-role/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years ago](https://wordpress.org/support/topic/automatically-assign-a-secondary-role/#post-12847050)
 * It depends from the plugin which assigns ‘Vendor’ role to the existing user.
   
   Ask its developer if the plugin offers suitable hook using which you may add 
   secondary role to the user, just after he gets ‘Vendor’ role.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] plugin removal](https://wordpress.org/support/topic/plugin-removal-6/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years ago](https://wordpress.org/support/topic/plugin-removal-6/#post-12847046)
 * I don’t understand what the plugin does in your WordPress account.
 * If you need to remove plugin from the site where you administrator, deactivate
   plugin and click ‘Delete’ link under it’s row at the ‘Plugins’ page.
    Take into
   account that changes you made in user roles via URE plugin are permanent.
 * If you need to hide URE from your site not-admin user account, revoke from its
   role capabilities started from ‘ure_’.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Access to Navigation Menu](https://wordpress.org/support/topic/access-to-navigation-menu-2/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years ago](https://wordpress.org/support/topic/access-to-navigation-menu-2/#post-12827395)
 * It’s not possible to achieve via changing user roles only.
    Such functionality
   is provided by additional modules included into Pro version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Autor can’t see broken links report](https://wordpress.org/support/topic/autor-cant-see-broken-links-report/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years ago](https://wordpress.org/support/topic/autor-cant-see-broken-links-report/#post-12827383)
 * Top level ‘Tools’ menu in the admin menu is protected by ‘edit_posts’ and generally,
   it should be visible for user with ‘Author’ role until some plugin do not change
   it.
 * What plugin do you use to look broken links report?

Viewing 15 replies - 661 through 675 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/44/?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)…
[44](https://wordpress.org/support/users/shinephp/replies/page/44/?output_format=md)
45 [46](https://wordpress.org/support/users/shinephp/replies/page/46/?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/46/?output_format=md)