Forum Replies Created

Viewing 15 posts - 1,081 through 1,095 (of 2,518 total)
  • Author
    Posts
  • Vladimir
    Keymaster

    Starting from version 4.45 from 07.05.2018 URE Pro follows Gravity Forms version 2.3+ data model change:
    Quote from changes list for v. 4.45:
    “Function GFFormsModel::get_lead_table_name() call was replaced with GFFormsModel::get_entry_table_name() to provide compatibility with Gravity Forms v. 2.3+”.
    This update is not compatible with earlier versions of Gravity Forms.

    Workaround: replace URE Pro back with version 4.44 and plan update to the latest version of Gravity Forms 2.3+.

    Vladimir
    Keymaster

    Hi,

    What version of Gravity Forms do you use?

    in reply to: Cannot update to 4.47.3 Pro #5098
    Vladimir
    Keymaster

    Hi,

    You can not install other version of installed plugin via .zip file. You have to delete plugin via WordPress before install it this way as you will always get “Destination folder already exists” error message. Deleting plugin via WordPress will delete the settings you made for URE. So its better to deactivate plugin and remove its folder via FTP or file manager.

    If you input a license key at the “Settings->User Role Editor->General” tab, it will be possible to update URE Pro directly from WordPress as any other plugin – from the Plugins or Updates pages. License key is available at your account page after login. Read this article for more details.

    in reply to: Incorrect Capabilities Checked #5097
    Vladimir
    Keymaster

    Excellent! Thanks for the help with testing.

    in reply to: Admin menu editor not working at all #5094
    Vladimir
    Keymaster

    Hi Jake!

    Good news that they work on a problem. Let’s wait for the update.

    in reply to: Incorrect Capabilities Checked #5090
    Vladimir
    Keymaster

    The fix was included into version 4.47.3, which I published today.

    Vladimir
    Keymaster

    I published version 4.47.3 today, which includes the update for this issue:
    * Update: Content view restrictions add-on: meta box is added with ‘low’ priority now instead of ‘default’. It’s done for compatibility with custom post types (like “LearnPress->Courses”) for which this meta box was not shown.

    Vladimir
    Keymaster

    Thanks for finding this. Line 434 at meta-boxes.php has a syntax error. It should use ‘.’ operator for strings concatenation instead of ‘+’. So valid code will be:

    
    return array('result'=>'success', 'message'=>'Widgets permissions for '. $ure_object_name, 'html'=>$html);
    

    I will include this fix into the next version 4.47.3. Let me know the result of your testing with updated version of this file.

    in reply to: Incorrect Capabilities Checked #5086
    Vladimir
    Keymaster

    Thanks for your help in isolating this bug. I will publish the fix.

    Vladimir
    Keymaster

    Hi,

    Go to every subsite where you have a problem and check if ‘Administrator’ role there has those custom post types capabilities granted.

    in reply to: Admin menu editor not working at all #5082
    Vladimir
    Keymaster

    Jake,

    Thanks for this and upcoming information. The author of this topic have made the same and did not get response from BB developers yet.

    Vladimir
    Keymaster

    Thanks.
    I repeated the issue. Problem is not obvious and needs some time for the investigation. I will inform you as I get the result.

    in reply to: Restricting duplication of the post. #5078
    Vladimir
    Keymaster

    User should have ‘edit_posts’, ‘edit_published_posts’ capabilities in order to edit own posts. ‘edit_others_posts’ is required to edit a post created by other user.

    Did you set edit restriction for such user?
    If ‘Yes’, such restriction does allow him to edit the posts just from the list which you allowed for him. WordPress internally creates new post and then reopen it for edit. That’s why edit permission error may be shown.

    Vladimir
    Keymaster

    Can you share this plugin .zip with support [at-sign] role-editor.com via DropBox or Google Drive? I will look what is going on then.

    in reply to: Disable editing user roles on users page. #5068
    Vladimir
    Keymaster

    Try to install this code (theme’s functions.php or Must Use plugin):

    
    add_filter('ure_users_select_primary_role', 'my_users_select_primary_role', 10, 1);
    function my_users_select_primary_role($select) {
    
        $user = wp_get_current_user();
        if (in_array('user-manager', $user->roles)) {
            $select = false;
        }
        
        return $select;
    }
    
    add_filter('ure_show_additional_capabilities_section', 'ure_show_additional_capabilities_section');
    add_filter('ure_bulk_grant_roles',  'ure_show_additional_capabilities_section');
    
     
    function ure_show_additional_capabilities_section($show) {
    
        $user = wp_get_current_user();
        if (in_array('user-manager', $user->roles)) {
            $show = false;
        }
    
        return $show;
    }
    

    Replace ‘user-manager’ with your own user role ID.

Viewing 15 posts - 1,081 through 1,095 (of 2,518 total)