Forum Replies Created
-
AuthorPosts
-
24/04/2023 at 16:48 in reply to: License Validation – cURL error connecting to update.role-editor.com port 443 #8252VladimirKeymaster
It 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.VladimirKeymasterHi,
Revoke from a role ‘edit_product_terms’ capability.
VladimirKeymasterHi,
Screenshot was made from a free version of URE. You may see this at the “About” tab. Look at the plugins list what version of URE is active. Deactivate free version and activate Pro one instead.
VladimirKeymasterBtw., there is no item with ‘xls’ key in the list of allowed mime types. You should use this one instead:
unset( $mime_types['xla|xls|xlt|xlw'']
Full list of mime types allowed at WP by default is available here.
VladimirKeymasterHi,
Is it a single or multisite WordPress installation?
-
AuthorPosts