Forum Replies Created
-
AuthorPosts
-
12/05/2023 at 02:21 in reply to: How to block “Tags” box in post editor view for certain roles. #8268VladimirKeymaster
Meta boxes add-on takes the list of available meta boxes after you open the editor page especially for that post type, e.g. posts, pages or products. After that only you can find the meta box under selected post type.
VladimirKeymasterIf you use “Admin menu” block “Not selected” model value, pay attention on the “Technical details” part of the documentation article: https://www.role-editor.com/block-wordpress-admin-menu-items/#block_not_selected
VladimirKeymasterHi Mike,
What plugin was updated after which you lose ‘Theme Builder’ item selection in Admin menu?
24/04/2023 at 16:57 in reply to: License Validation – cURL error connecting to update.role-editor.com port 443 #8255VladimirKeymasterYou may try, may be they will can find a workaround.
I will also add a filter to the next update to block license checking for similar situations and off-line/intranet usage.24/04/2023 at 16:53 in reply to: Object Cache Pro plugin appearing in admin menu even though disabled #8253VladimirKeymasterYes, because of this menu item becomes unavailable for user which can not objectcache_manage capability. In this case there is no need to select/unselect it via “Admin menu” in URE.
24/04/2023 at 16:48 in reply to: License Validation – cURL error connecting to update.role-editor.com port 443 #8252VladimirKeymasterIt would be a temporal networking issue. If this error message is stable at your site, try the same URL directly at address bar of your desktop browser. Is it available? If Yes, your site provider firewall may block update.role-editor.com
It influences for the automatic updates only.22/04/2023 at 02:42 in reply to: Object Cache Pro plugin appearing in admin menu even though disabled #8249VladimirKeymasterThanks.
Plugin uses own ‘objectcache_manage’ capability. Look if your role contains this capability and revoke it. Also plugin automatically allows this capability to user with ‘install_plugins’ capability, e.g. administrator one.21/04/2023 at 14:34 in reply to: Object Cache Pro plugin appearing in admin menu even though disabled #8247VladimirKeymasterShare plugin code with support [at] role-editor.com via Google Drive or DropBox. I will look, how it adds/protects it’s admin menu item(s).
20/04/2023 at 16:32 in reply to: Need support to renew subscription and get latest pro version #8245VladimirKeymasterHi,
Messages sent to your returned with “Undelivered” response for “host not found” reason.
I upgraded your account until April 30, 2023 in order you can upgrade.I tried to answer you via GMail few times. Did you receive any message?
VladimirKeymasterHi,
Thanks for suggestion. Yes, it’s still planned and finally will be realized.
VladimirKeymasterHi,
Do you work with WP multisite?
‘unfiltered_html’ capability is switched off (not allowed) by default for WP multisite at a program level. That’s why I moved it to the ‘deprecated’ group. You need enable it via special option at Settings->URE->Multisite tab.
VladimirKeymasterThis article may help also:
VladimirKeymasterHi,
Try deactivate URE plugin and activate it back. It automatically grants all own permissions to administrator role on activation.
20/03/2023 at 04:42 in reply to: Block Content View Restrictions on Categories and Tags for Editor role #8226VladimirKeymasterThank you for this bug report.
Quick fix: open user-role-editor-pro/pro/includes/classes/content-view-restrictions.php file, go to line #89 and insert this code:
if ( !current_user_can( self::VIEW_POSTS_ACCESS_CAP ) ) {
return false;
}
The resulting version should be:
public function do_on_init() {$this->plugins_compatibility();
if ( !current_user_can( self::VIEW_POSTS_ACCESS_CAP ) ) {
return false;
}// Do not move to action executed earlier!
// WooCommerce registers its taxonomies using 'init' action. So we should execute code only after it
$taxonomies = get_taxonomies(
array('public'=>true,
'show_ui'=>true),
'names');
foreach( $taxonomies as $taxonomy ) {
add_action( "{$taxonomy}_edit_form", array('URE_Content_View_Restrictions_Editor', 'render_term_box') );
add_action( "edited_{$taxonomy}", array('URE_Content_View_Restrictions_Editor', 'save_term_meta_data') );
}}
// end of add_init_hooks()
I included this fix to the coming version update.
20/03/2023 at 03:59 in reply to: Allowing non-admins to manage custom type taxonomies/categories #8225VladimirKeymasterHi,
For example you have CPT ‘staff’. With the “Force custom post types to use their own capabilities” option turned ON, it’s custom term related permissions are changed to
‘assign_staff_terms’ – allow to select category checkboxes at the CPT edit page
and
‘edit_staff_terms’ – allow to use ‘Add new category’ link at the custom categories meta box.
Try to find these capabilities between ‘Custom capabilities’ group and grant to a selected role. -
AuthorPosts