Forum Replies Created

Viewing 15 posts - 766 through 780 (of 2,518 total)
  • Author
    Posts
  • in reply to: Delete Role button not displaying #5927
    Vladimir
    Keymaster

    URE shows ‘Delete Role’ button only when there are role(s) available for deletion.
    WP built-in role is not available for deletion by default. Custom roles assigned to user(s) are not available for deletion. You have to revoke role from all users, in order it will become available for deletion.

    in reply to: forbid to edit html in elementor #5923
    Vladimir
    Keymaster

    unfiltered_html purpose is to block just selected list of HTML tags (potentially dangerous), not full usage of HTML.

    I can not recommend a solution for Elementor.

    in reply to: Shortcode restriction within page builder #5922
    Vladimir
    Keymaster

    URE does not help with hide/show full Elementor elements.

    Look/check if this plugin does well what it promises.

    Vladimir
    Keymaster

    Did you apply any edit restrictions to your user? If ‘Yes’, show screenshot.

    in reply to: Page restriction #5918
    Vladimir
    Keymaster

    Hi,

    Change “Views Access” from ‘Prohibit’ to ‘Allow’ view. Then only logged-in users will see page content, directly according to settings made: allow for any logged-in user, and show error message for any other visitor.

    in reply to: Unable to Import Roles #5917
    Vladimir
    Keymaster

    Hi Robert,

    Import process stops on the step of decoding data back to JSON. It fails due some incorrect (for JSON) characters inside.
    So I need to investigate and fix 2 things:
    1) why error message is not shown;
    2) what’s happening with JSON formatted data.

    For item 2) I need raw roles data from the database. Can you send me exported record from wp_options table?
    You can extract needed record with this command:

    
    SELECT * FROM wp_options WHERE option_name='wp_user_roles';
    

    ‘wp_’ is your db prefix in table name and in option name value, so if it’s not equal to ‘wp_’ replace ‘wp_’ to your own db prefix value from wp-config.php file.

    in reply to: Unable to Import Roles #5915
    Vladimir
    Keymaster

    Send to support [at-sign] role-editor.com exported file of a role which you can not import. I will investigate what’s going wrong.

    in reply to: Metabox check but not functional on editor profil #5908
    Vladimir
    Keymaster

    Quick workaround:
    Open plugins/user-role-editor-pro/pro/includes/classes/meta-boxes.php and add this element

    
    'pageparentdiv'=>'page-attributes'
    

    to $data array at get_gutenberg_components_former_meta_boxes() method, line #288,
    so instead of current

    
        private function get_gutenberg_components_former_meta_boxes() {
        
            $data = array(
                'categorydiv'=>'taxonomy-panel-category',
                'commentstatusdiv'=>'discussion-panel',
                'postexcerpt'=>'post-excerpt',  
                'postimagediv'=>'featured-image',
                'tagsdiv-post_tag'=>'taxonomy-panel-post_tag',  
                'slugdiv'=>'post-link'
            );
            
            return $data;        
        }
        // end of get_gutenberg_components_former_meta_boxes()
    

    it should be

    
        private function get_gutenberg_components_former_meta_boxes() {
        
            $data = array(
                'categorydiv'=>'taxonomy-panel-category',
                'commentstatusdiv'=>'discussion-panel',
                'postexcerpt'=>'post-excerpt',  
                'postimagediv'=>'featured-image',
                'tagsdiv-post_tag'=>'taxonomy-panel-post_tag',  
                'slugdiv'=>'post-link',
                'pageparentdiv'=>'page-attributes'
            );
            
            return $data;        
        }
        // end of get_gutenberg_components_former_meta_boxes()
    
    

    It resolves the issue. This fix will be included into the next update.

    in reply to: Metabox check but not functional on editor profil #5907
    Vladimir
    Keymaster

    Hi Gislaine,

    I confirm the issue. It stopped work somehow for the related Gutenberg sidebar sections.

    I will try to find a solution and publish a fix.

    Thanks for your help.

    in reply to: Metabox check but not functional on editor profil #5903
    Vladimir
    Keymaster

    Hi,

    Can you record short video with settings you made? Or send admin credentials to support [at-sign] role-editor.com in order I can look at your settings on-line.

    in reply to: Incompatibility Guttenberg Editor and Role editor #5900
    Vladimir
    Keymaster

    Hi,

    I found and fixed a bug, related to the filtering categories for Gutenberg. You may try beta version 4.52.b3. It’s available after login from the same download page.

    Vladimir
    Keymaster

    Hi,

    Try this variant:
    go to Network Admin -> Settings -> User Role Editor -> Default Roles
    and select roles, which you which to grant to new user on sign up in addition to a primary default role.

    This selection is global for all sites of the multisite network. Take into account that other default roles should exist at the site, in order to be assigned to the new registered users.

    in reply to: Admin is unable to add other admins #5897
    Vladimir
    Keymaster

    URE protects by default ‘administrator’ role and users with ‘administrator’ role from each other. You may switch off this protection using filter:

    
    add_filter('ure_supress_administrators_protection', 'ure_supress_administrators_protection', 10);
    function ure_supress_administrators_protection() {
    
      return true;
    }
    
    in reply to: Incompatibility Guttenberg Editor and Role editor #5896
    Vladimir
    Keymaster

    Hi,

    Thanks for the report about this issue. I will develop a fix ASAP.

    in reply to: Edit post/pages if same role #5895
    Vladimir
    Keymaster

    Open ‘Post edit’ dialog for ‘editor’ role, select ‘Prohibit’, input admin user ID (digital) to ‘with author user ID (comma separated)’ field.

    This will allow edit all posts/pages except created by prohibited user – admin in this case.

Viewing 15 posts - 766 through 780 (of 2,518 total)