Forum Replies Created
-
AuthorPosts
-
Vladimir
KeymasterHi,
Content view restrictions are about the front-end. In order to restrict the list of posts visible to a user at the back-end Posts lists, use edit restrictions “Own data only” option.
Vladimir
KeymasterHi,
The key permission for the comments moderation is “if user can edit a post, to which a comment was sent”: edit_posts, edit_published_posts, edit_others_posts.
‘moderate_comments’ is not about that. More information is here.I don’t have a solution, how to prevent editors or even authors from comments moderation.
Vladimir
KeymasterHi,
Excellent!
Vladimir
KeymasterHi,
There is no special capability for this purpose. It’s normal for WordPress – allow to post author to edit his pending post while it’s not published by reviewer.
21/09/2020 at 11:48 in reply to: Remove Select Option Change Member Type in User List to one role #7040Vladimir
KeymasterNo. Where did you sent them?
18/09/2020 at 13:06 in reply to: Remove Select Option Change Member Type in User List to one role #7034Vladimir
KeymasterHi,
Do you use bbPress to manage forum?
Is your membership plugin available at the wordpress.org/plugins? Send direct link to it.Vladimir
KeymasterHi Sunny,
Use WordPress built-in ‘Delete’ link under deactivated URE Pro plugin. It should delete all its records from the database automatically: plugin settings and additional modules data.
Only changes made to user roles and user permissions will stay even after URE full deletion, be cause of all such changes were made directly in WordPress internal data structures.
10/09/2020 at 14:07 in reply to: How to hide Yoast SEO block in custom post type editor for a specific role ? #7023Vladimir
KeymasterHi,
You can use “Meta boxes access” add-on. Block “Yoast SEO” meta box for role “Artisan” using it.
Vladimir
KeymasterHi,
Turn on “deprecated” ‘level_0’, ‘level_1’, ‘level_2’ user capabilities for your custom role.
Detailed explanation is here.Vladimir
Keymaster1st of all, let’s check if URE Pro is involved into the issue. Will user can edit own post if you deactivate URE?
Vladimir
KeymasterI sent the discount code to your email address. Use it during purchase Pro Business after login.
Vladimir
Keymaster1st option, revoke ‘edit_theme_options’ capability the user role.
If for some reason you wish to leave ‘edit_theme_options’ capability to a role, for access to some menu item under ‘Appearance’ menu for example, then,
2nd option, you can enable “Theme Options” admin menu item using “My The7 -> Show theme options in sidebar” checkbox. After that just block “Theme Options” admin menu item using “Admin menu access” add-on. This will automatically block “Theme Options” top admin menu too.
Vladimir
KeymasterHi,
You were on the right way with
unset( $pages[‘product_filter’]);
The problem is the priority value. ‘Product filter’ plugin adds its tab via ‘woocommerce_settings_tabs_array’ filter with priority 50. So, in order to remove it you have to add the same filter with larger priority, at least 51. So try
add_filter('woocommerce_settings_tabs_array', 'change_wc_settings_tabs', 51); function change_wc_settings_tabs( $pages ) { $user = wp_get_current_user(); if ( in_array( 'your-role', $user->roles ) ) { } unset( $pages['product_filter']); // Product Filter }
Vladimir
KeymasterHi,
Can you share this theme .zip with support[at-sign]role-editor.com via DropBox or similar service? I will can look at it then. I use such products for the testing purpose only.
Vladimir
KeymasterHi,
I need access to the “Product Filter” plugin in order to test this. Share its .zip via DropBox or similar with support [at-sign] role-editor.com
I use such products for the investigation purpose only and install at the local development environment. -
AuthorPosts