Vladimir Garagulia
@shinephp on WordPress.org
- Member Since: August 30th, 2009
- Location: Novosibirsk, Russia
Bio
Contribution History
Vladimir Garagulia’s badges:- Plugin Developer Plugin Developer
- Translation Contributor Translation Contributor
- Translation Editor Translation Editor
-
Posted a reply to Woocommerce Address Fields, on the site WordPress.org Forums:
By default WooCommerce shows billing/shipping address fields at user profile for the user with 'manage_woocommerce'…18 hours ago
-
Posted a reply to client access to one plugin only, on the site WordPress.org Forums:
It is possible while different plugins protect their menus with different user capabilities. If 2+…18 hours ago
-
Posted a reply to Capabilities list not showing in URE, on the site WordPress.org Forums:
Hi, Just tested your CPT registering code as a must-use plugin hooked to 'admin_init'. It…4 days ago
-
Posted a reply to PHP problem, on the site WordPress.org Forums:
Hi, Open user-role-editor.php file at wp-content/plugins/user-role-editor/ folder. Go to line 37 and replace 5.6 with…4 days ago
-
Posted a reply to Can creating upto 300 roles affect my sites, on the site WordPress.org Forums:
I think that have more than 15-20 roles is not a good idea. WordPress user…4 days ago
-
Posted a reply to Unable to show Admin role in URE, on the site WordPress.org Forums:
URE does not hide 'administrator' role from the list of roles with “Show Administrator role…4 days ago
-
Posted a reply to Role editor not working, on the site WordPress.org Forums:
Solution is to add to a user another role and edit that role. Learnpress plugin…1 week ago
-
Posted a reply to Can author delete files?, on the site WordPress.org Forums:
Hi, Generally, user should be capable edit and delete post to which media library item…1 week ago
-
Posted a reply to Pro Version, on the site WordPress.org Forums:
Hi Freddie, Custom taxonomy may be created such way that it still requires 'edit_posts' capability.…1 week ago
-
Posted a reply to User access to certain (WooCommerce) products, on the site WordPress.org Forums:
Hi, It's not possible to achieve in terms of WP core user capabilities. User with…1 week ago
-
Posted a reply to How can I add editing the main_menu to the editor role?, on the site WordPress.org Forums:
Hi Erwin, "Appearance->Menus" admin menu item is protected by 'edit_theme_options' capability. Granting it to editor…1 week ago
-
Posted a reply to Getting E_ERROR, on the site WordPress.org Forums:
The reason of a problem is a line of code at the BuddyBoss platform plugin.…3 weeks ago
-
Posted a reply to Getting E_ERROR, on the site WordPress.org Forums:
support [at-sign] role-editor.com3 weeks ago
-
Posted a reply to How to hide “Other roles” field from users form?, on the site WordPress.org Forums:
Right, if you see "Some Role ID (some_role_id)" then role ID is : some_role_id4 weeks ago
-
Posted a reply to How to hide “Other roles” field from users form?, on the site WordPress.org Forums:
Role ID is shown at the User Role Editor (Users->User Role Editor) at the role…4 weeks ago
-
Posted a reply to Role editor not working, on the site WordPress.org Forums:
Describe the issue with more details step by step using the same terms as I…4 weeks ago
-
Committed [2189412] to Plugins Trac:
Tagging the version 4.52.14 weeks ago
-
Committed [2189410] to Plugins Trac:
Mark version 4.52.1 as a stable one4 weeks ago
-
Committed [2189408] to Plugins Trac:
Update: URE requires PHP version 5.6.4 weeks ago
-
Committed [2189407] to Plugins Trac:
* ure_cpt_editor_roles filter was added. It takes 2 parameters: array ...4 weeks ago
-
Posted a reply to Editor restriction with new post capability?, on the site WordPress.org Forums:
WordPress re-opens new added post for editing. New post has ID which is not included…4 weeks ago
-
Posted a reply to How to hide “Other roles” field from users form?, on the site WordPress.org Forums:
Use this code: add_filter('ure_show_additional_capabilities_section', 'ure_show_additional_capabilities_section'); add_filter('ure_bulk_grant_roles', 'ure_show_additional_capabilities_section'); function ure_show_additional_capabilities_section($show) { $user = wp_get_current_user(); if (in_array('user-manager',…4 weeks ago
-
Posted a reply to Roles are not ordered alphbetically, on the site WordPress.org Forums:
When roles unsorted, new added roles are shown at the top at my tests. Try…1 month ago
-
Posted a reply to Roles are not ordered alphbetically, on the site WordPress.org Forums:
Do you use the latest version of URE 4.52?1 month ago
-
Posted a reply to Roles are not ordered alphbetically, on the site WordPress.org Forums:
I re-tested successfully the exact copy of code above. Take into account that URE sorts…1 month ago
-
Posted a reply to Roles are not ordered alphbetically, on the site WordPress.org Forums:
Hi, The related update was published with version 5.51.3: Update: Roles sorting inside WordPress roles…1 month ago
-
Posted a reply to User Roles on purchase via PayPal IPN, on the site WordPress.org Forums:
It depends from what plugin works as a gateway to PayPal at your site. This…1 month ago
-
Posted a reply to Multiple User Roles for Woocommerce on Purchase, on the site WordPress.org Forums:
1st of all, insert into your .php file <? charcters as the very 1st separate…1 month ago
-
Posted a reply to Multiple User Roles for Woocommerce on Purchase, on the site WordPress.org Forums:
https://wordpress.org/support/article/must-use-plugins/1 month ago
-
Posted a reply to Multiple User Roles for Woocommerce on Purchase, on the site WordPress.org Forums:
1st, WP_User::add_role()</> can add 1 role for a time. You have to use: $user->add_role( 'customer'…1 month ago
-
Posted a reply to Multiple User Roles for Woocommerce on Purchase, on the site WordPress.org Forums:
You may hook your code to woocommerce_created_customer action and add needed role to a new…1 month ago
-
Posted a reply to Revoke specific page edit role for entire group, on the site WordPress.org Forums:
Hi, This functionality is beyond the built-in WP permissions system. Edit restrictions add-on included into…1 month ago
-
Posted a reply to Create capability, on the site WordPress.org Forums:
Hi, new-user-approve plugin uses existing capabilities only: manage_options, edit_users. It does not require any custom…1 month ago
-
Posted a reply to Subscriber role access to /wp-admin/profile.php, on the site WordPress.org Forums:
Hi, User with subscriber role has access to his profile by default. Some plugins, like…1 month ago
-
Posted a reply to Allowing Woocommerce CUSTOMERS role to see private page, on the site WordPress.org Forums:
Hi Sarah, Yes, it's possible. My own test showed the expected result: I created a…1 month ago
-
Posted a reply to Admir Bar edition, on the site WordPress.org Forums:
Thank you for these notes. According to the rules of this forum we can not…1 month ago
-
Posted a reply to Limited shop manage role, on the site WordPress.org Forums:
Hi, This article contains recommendations for your question. Unfortunately refunds are part of the order…1 month ago
-
Posted a reply to Create capability in code so it can be selected, on the site WordPress.org Forums:
Hi, Right, use WordPress roles API (wp-includes/wp-roles.php, wp-includes/wp-role.php) for adding capability to a role. Add…1 month ago
-
Posted a reply to Error on Settings page, on the site WordPress.org Forums:
User Role Editor restores its own permissions for administrator role during activation. So plugin re-activation…2 months ago
-
Posted a reply to I done reset and my site destroyed!, on the site WordPress.org Forums:
Thanks for the feedback. User Role Editor shows special warning 2 times before make actual…2 months ago
-
Committed [2169158] to Plugins Trac:
Tagging the version 4.522 months ago
-
Committed [2169154] to Plugins Trac:
mark version 4.52 as a stable one2 months ago
-
Committed [2169153] to Plugins Trac:
* New: Multisite: WordPress (tested up to version 5.2.3) shows ...2 months ago
-
Posted a reply to Avoid “create custom post” to certain role, on the site WordPress.org Forums:
WordPress by default does not support a separate 'create' (create_posts) capability. It uses the same…2 months ago
-
Posted a reply to What role is needed to be able to update other user roles?, on the site WordPress.org Forums:
You may create custom role for this purpose: - 'list_users' - provides access to 'Users'…2 months ago
-
Posted a reply to Plugins not showing to select, on the site WordPress.org Forums:
Simple Banner protects its menu item with 'administrator' role not user capability. add_menu_page('Simple Banner Settings',…3 months ago
-
Posted a reply to Plugins not showing to select, on the site WordPress.org Forums:
All items of WPForms submenu are protected by the same ‘manage_options’ capability.3 months ago
-
Posted a reply to permalink, on the site WordPress.org Forums:
WordPress shows permalink edit part under this condition only: wp-admin/edit-form-advanced.php, #516: if ( $post_type_object->public &&…3 months ago
-
Posted a reply to Rename capability, on the site WordPress.org Forums:
URE will not help with this task.3 months ago
-
Posted a reply to Grant Editor Allow Full Access to Caldera Forms, on the site WordPress.org Forums:
There is no special options for CF in URE. All you need to do after…3 months ago
Developer
-
Edit Post Expire
Active Installs: 20+
-
Plugins Garbage Collector
Active Installs: 10,000+
-
Plugins Language Switcher
Active Installs: 2,000+
-
Silence is Golden Guard
Active Installs: 300+
-
Thank You Counter Button
Active Installs: 500+
-
User Role Editor
Active Installs: 600,000+
-
View Own Posts Media Only
Active Installs: 3,000+
Contributor
-
Posts Slideshow Widget
Active Installs: 300+