Forum Replies Created

Viewing 15 posts - 766 through 780 (of 2,522 total)
  • Author
    Posts
  • Vladimir
    Keymaster

    Hi Martin,

    This is an intended behavior. When user is restricted by taxonomies (for example: 2, 3) he can edit post only with those taxonomies: 2, 3. WordPress creates a new post in 2 steps: 1) inserts new post; 2) reopens it for editing.
    If new created post will not have one of allowed taxonomies user will receive access error. Remember he is allowed to post new and edit existing posts only inside the list of allowed taxonomies. This is a reason why URE automatically assigns to a new created post the 1st taxonomy from the list of taxonomies allowed for this user.
    User should check what taxonomy is assigned to his post and reassign another one.

    If you have another issue please share the images to give me more details.

    Vladimir
    Keymaster

    Hi Levent,

    URE Pro does not include a feature to manage access to languages inside WPML for a roles.

    Vladimir
    Keymaster

    Thank you for this bug report.
    For quick fix download beta version (it’s available from the Download page) and replace pro/includes/classes/settings-pro.php file at your site with one from the beta version .zip.

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

    I tested with another roles data (21 roles) you provided. I can not reproduce the issue with import exported role. I tried create a role as a copy of another one and export/import it. No problem.

    Technically new role from scratch and role as copy of another role are created the same way both. New role created just as a copy of subscriber role.

    Definitely, a reason of the issue is somewhere else. Is it possible to get access to your site stage copy with admin access to reproduce/investigate the issue?

    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.

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