Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 2,529 total)
  • Author
    Posts
  • in reply to: Divi Theme Options? #4207
    Vladimir
    Keymaster

    Hi,

    These user capabilities are required by Divi in order role can work with menu items under the ‘Divi’ menu:
    edit_posts
    edit_theme_options
    export
    manage_categories
    manage_options
    read
    switch_themes

    I tested with Divi verison 3.0.47.

    Vladimir
    Keymaster

    Did you try ‘manage_network_users’ from a ‘Network’ group in addition to usual ‘%_users’ capabilities under ‘Users’ group?
    It seems that such capabilities are required to edit members under multisite in addition to general ‘bp_moderate’ which is mapped in BuddyPress to the ‘manage_options’ capability.

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

    I tested the Beaver Builder Lite version available at wordpress.org and can not repeat an issue. I suppose that you use the Pro version. Can you share BB Pro plugin copy (via DropBox or similar service) – support [at-sign] role-editor.com? I would try to repeat the issue and isolate a reason then. I setup such copies locally and use for testing/investigation only.

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

    Send the screenshots of settings in “Admin menu” you made for a role and what menu a user with that role really sees at /wp-admin.
    What plugin registered menu items, which you can not block?

    in reply to: View CPT by user role #4195
    Vladimir
    Keymaster

    Hi,

    Define this new CPT with its own user capability type, not the built-in WP ‘post’, not ‘page’, but ‘video’, ‘book’, or similar. User should have ‘edit_videos’, ‘edit_others_videos’ capabilities, etc., after that to get access to this CPT.

    Vladimir
    Keymaster

    “Allow not super administrators to create, edit and delete users” option is aimed for the single site admin (user with ‘administrator’ role but without ‘Super admin’ privilege) and help to work with WordPress users. In order to manage BuddyPress members and groups at a selected single site user should have ‘manage_options’ capability. This definitely gives him an access to a lot of other staff.

    You can block access to unneeded menus using “Admin menu access” add-on.

    Just be accurate with “Block not selected” model there as it’s too restrictive and some functionality could by limited unintentionally. It blocks any link from left side admin menu, which is not directly selected at the menu items list. This includes the links which may differ just by parameters inside the same link.

    Vladimir
    Keymaster

    Hi,

    It’s not a bug. It’s a feature to protect single site admins from each other.
    If you don’t need such protection you can switch it off using custom filter ‘ure_supress_administrators_protection’. It takes a single parameter as FALSE default. Return TRUE from your custom function hooked to this filter and any single site admin will see other admins.

    in reply to: Restriction shortcode not working as needed #4184
    Vladimir
    Keymaster

    Hi,

    The latest version does not render [user_role_editor] shortcode for ‘administrator’ role, as there are no restrictions for admin.
    I will change this behavior with the next update until the end of September. There were similar requests from other users and I agreed with them.

    I tested URE shortcode with VC tabs. The issue is related to the same administrator role. Shortcode will work currently with any other role, except ‘administrator’.

    Vladimir
    Keymaster

    Hi,

    This add-on could be not fully compatible with some other plugins or themes which also replace WordPress core Walker_Nav_Menu_Edit class from wp-admin/includes/class-walker-nav-menu-edit.php file. Read this discussion for more details.

    Check if it’s not your case.

    Vladimir
    Keymaster

    Hi,

    May be register users by default without page edit permissions, as ‘subcsriber’ for example? When you are ready to decide what page to allow this user to edit, you can change him a role to ‘editor’ (if he will edit page created by other user) and input a restriction for editing just subset of a page or a single page only.

    Vladimir
    Keymaster

    Thanks for your messages.

    I use WordPress global $current_user often at User Role Editor.
    It’s the 1st message for years about such kind of PHP fatal error. I wonder, why this global variable $current_user is not initialized at your WP installation? Some code removes its value especially or custom authorization process is realized, which does not initialize $current_user for some reason the same way as WordPress does?

    Vladimir
    Keymaster

    Hi Michael,

    Yes, there is a way to allow specific pages/posts and ALL events simultaneously. You need to know a custom post type ID of ‘Event Espresso Events’ post type (as it uses at register_post_type() function) to use it in ure_restrict_edit_post_type custom filter provided by URE Pro.

    in reply to: Feature request to support WP Media Folder Plugin #4167
    Vladimir
    Keymaster

    Hi,

    Do you have any information about “WP MF” installations quantity? Is this plugin popular enough to take it into account?

    Can you provide me a copy of the latest version of “WP MF” plugin for investigation? If Yes, use Google Drive or DropBox for sharing .zip with support [at-sign] role-editor.com

    I setup copies of commercial products from my clients at the local development environment only and use them for testing/investigation purpose only.

    Vladimir
    Keymaster

    Hi @rheinstars-loeln,

    try to add this code to your active theme functions.php file:

    
    add_filter('ure_restrict_edit_post_type', 'exclude_attachments_from_edit_restrictions');
    function exclude_attachments_from_edit_restrictions($post_type) {
      $restrict_it = true;
      if (current_user_can('author')) {
          if ($post_type=='attachment') {
    	        $restrict_it = false;
          }
      }
      return $restrict_it;
    }
    

    Replace ‘author’ role inside with any other role, for which you need allow access to all attachments in spite of edit restrictions set for posts or pages.

    in reply to: Unable to update plugins on multisite #4133
    Vladimir
    Keymaster

    It’s not related to URE Pro. You can deactivate it and re-check.

    It could be a caching issue. Check if it will still exists after 12 or 24 hours.

    If it’s not related to an older cache and will bother you as a persistent issue, try to deactivate plugins one by one to isolate a conflict reason.

Viewing 15 posts - 1,426 through 1,440 (of 2,529 total)