Forum Replies Created

Viewing 15 posts - 2,491 through 2,505 (of 2,511 total)
  • Author
    Posts
  • in reply to: Access Widgets per Role? #437
    Vladimir
    Keymaster

    Hi Bernhard,

    It is impossible with built-in WordPress capabilities as “Widgets” menu uses the same capability as the upper level menu “Appearance”.
    We may block selected menu items for selected role by adding some code. Yes, I plan to add the interface for such functionality.

    As about permissions for specific widgets this subject needs additional investigation. I have no ready to use decision for this moment.

    in reply to: Cannot disable gravity forms for administrators #433
    Vladimir
    Keymaster

    Hi Joe,

    If user with ‘administrator’ role has no any GF capabilities he automatically get full access to GF plugin functionality, line #841 of gravityforms.php file:

            else if(current_user_can("administrator")|| is_super_admin()){
    
                //checking if user has any GF permission.
                $has_gf_cap = false;
                foreach($gf_caps as $gf_cap){
                    if(rgar($all_caps, $gf_cap))
                        $has_gf_cap = true;
                }
    
                if(!$has_gf_cap){
                    //give full access to administrators if none of the GF permissions are active by the Members plugin
                    $all_caps["gform_full_access"] = true;
                }
            }
    

    Try to leave at least one minimal capability, e.g. “gravityforms_view_entries” and check how the access of administrator user will be changed.

    in reply to: Pro Personal #427
    Vladimir
    Keymaster

    Deactivate free version. Install Pro version.
    Insert license key at the User Role Editor Pro Options page: Settings->User Role Editor.

    Yes, you can assign specific page to edit to one specific user. Read this post for more details:
    https://role-editor.com/allow-user-edit-selected-posts/

    in reply to: Activation Key and Documents #425
    Vladimir
    Keymaster

    Hi,

    1) License key input field is available for the Pro version of URE only. If you have the free version, deactivate it, delete if you wish. Then install the Pro version. Goto the “Settings->User Role Editor” (Network admin->Settings->User Role Editor – for the WordPress multisite) and insert license key there.
    2) You may find license key at your personal membership account page
    https://role-editor.com/membership-account
    after login to role-editor.com
    3) Pro version is available for download from this link
    https://role-editor.com/download-plugin/
    after login to role-editor.com
    4) General description of core functionality included into free version is available here
    http://shinephp.com/user-role-editor-wordpress-plugin/
    5) For description of additional features of Pro version read posts at our blog
    https://role-editor.com/blog/
    6) Some details for Pro version module are available here:

    If you have any additional questions, please ask. I will try to answer.

    Vladimir
    Keymaster

    Hello,

    Some times (year?) ago users started complain that there is a conflict between URE plugin and bbPress. bbPress did not store its own custom capabilities at the WordPress user roles storage but created them dynamically every page load. URE works directly with WP roles storage. It saved bbPress caps to the database when user edited some role. Thus I excluded bbPress capabilities from the User Role Editor scope of view apparently. That’s why you don’t see them in URE.

    Let me investigate the question again (couple of days). I may provide you special URE version with opened access to the bbPress capabilities. Are you ready to test how the things will go?

    in reply to: Reset the plugin #406
    Vladimir
    Keymaster

    Hi Aparna,

    If those plugins re-activation (deactivate/activate) do not help, then read this post
    https://role-editor.com/how-to-restore-deleted-wordpress-user-roles/
    I hope it will help.

    Regards,
    Vladimir.

    in reply to: Unalbe to Network Activate licencekey #403
    Vladimir
    Keymaster

    Hi,

    Please let me know if role “Administrator” with id=”administrator” exists at the main blog of your network. You should see it as “Administrator (administrator)” at the URE drop down menu.

    Regards,
    Vladimir.

    in reply to: user role "none"? #391
    Vladimir
    Keymaster

    Thank you, Christine. It is a very good addition to the existing shortcode functionality. I will add this feature.

    Regards,
    Vladimir.

    in reply to: Blank Sections? #373
    Vladimir
    Keymaster

    It’s 1st time I see such screenshot. Try to export roles. In case of success, please, send the file to support [at-sign] role-editor.com
    May be it will contain information to help resolve this issue.
    The list of active plugins could be helpful also.

    in reply to: Cannot change the plugins view #343
    Vladimir
    Keymaster

    Quick turnaround how to provide ability to use “Mingle Forum” menu items to other WP users, not “administrator” only. Mingle Forum menu is created at the mingle-forum/wpf.class.php file with this code starting from line #181.

    add_menu_page(__("Mingle Forum - Options", "mingleforum"), "Mingle Forum", "mingle-admin", "mingle-forum", array(&$wpfa, "options"), WPFURL."images/logo.png");
    add_submenu_page("mingle-forum", __("Mingle Forum - Options", "mingleforum"), __("Options", "mingleforum"), "mingle-admin", 'mingle-forum', array(&$wpfa, "options"));
    add_submenu_page('mingle-forum', __('Ads', 'mingleforum'), __('Ads', 'mingleforum'), "mingle-admin", 'mfads', array(&$wpfa, "ads"));
    add_submenu_page("mingle-forum", __("Skins", "mingleforum"), __("Skins", "mingleforum"), "mingle-admin", 'mfskins', array(&$wpfa, "skins"));
    add_submenu_page("mingle-forum", __("Forum Structure - Categories & Forums", "mingleforum"), __("Forum Structure", "mingleforum"), "mingle-admin", 'mfstructure', array(&$wpfa, "structure"));
    add_submenu_page("mingle-forum", __("Moderators", "mingleforum"), __("Moderators", "mingleforum"), "mingle-admin", 'mfmods', array(&$wpfa, "moderators"));
    add_submenu_page("mingle-forum", __("User Groups", "mingleforum"), __("User Groups", "mingleforum"), "mingle-admin", 'mfgroups', array(&$wpfa, "usergroups"));
    add_submenu_page("mingle-forum", __("About", "mingleforum"), __("About", "mingleforum"), "mingle-admin", 'mfabout', array(&$wpfa, "about"));
    

    Original code has “administrator” string instead of “mingle-admin” inside. I replaced it for your convenience. Replace original code with the code above. Then add new user capability “mingle-admin” with “User Role Editor” and turn it on for selected roles. This way user with “mingle-admin” capability in his role will be capable to use Mingle Forum menu.

    in reply to: Cannot change the plugins view #341
    Vladimir
    Keymaster

    Hello,

    Write please, what plugin do you use for forum?
    If it is bbPress, then User Role Editor will not help you to change its roles. bbPress roles and capabilities are not shown in User Role Editor.
    If you use for forum some other plugin, I may check what roles or capabilities that plugin uses and try to help you to find the decision.

    Regards,
    Vladimir.

    in reply to: Help with resetting admin roles #332
    Vladimir
    Keymaster

    Hi Segun,

    You may go this way
    http://shinephp.com/how-to-change-wordpress-user-role-capabilities/
    to restore roles directly via MyPHPAdmin.

    Regards,
    Vladimir.

    in reply to: Cannot network activate pro version #313
    Vladimir
    Keymaster

    Hi Jonathan,

    The reason of this error message is that you have the free version of User Role Editor active. Please deactivate it 1st, then activate Pro version.

    Regards,
    Vladimir.

    in reply to: import not working #305
    Vladimir
    Keymaster

    OK. I will do. Thanks. That will be more universal decision (wp-content/uploads).

    in reply to: import not working #303
    Vladimir
    Keymaster

    Thanks for your help. I will fix this error with the next update, I hope it will be published this weekend.
    Plugin tries to notify you about problem with file upload. Please check that wp-content/user-role-editor-pro folder is writable for your web server. It should have 775 permissions usually.
    Plugin uploads roles file to this folder, reads data from it and then deletes that file.

Viewing 15 posts - 2,491 through 2,505 (of 2,511 total)