Forum Replies Created

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

    Yes, send me a link to your video. You can send it directly to support email.

    I do not resolve support questions via online sessions. If that’s possible I may look at your site directly with superadmin permissions.

    From what date (month, year) older version may help?

    in reply to: Woocommerce report #3277
    Vladimir
    Keymaster

    Hi,

    Do you restrict some admin menu items for this role with “admin menu access” add-on?

    in reply to: Job-Manager and User Role Editor #3276
    Vladimir
    Keymaster

    Hi,

    Job Manager uses WordPress built-in capabilities for its menu protection:

    Job Manager publish_posts
    Settings manage_options
    Add Job publish_posts
    Jobs publish_posts
    Applications read_private_pages
    Emails read_private_pages
    Interviews read_private_pages

    You can use “Admin menu access” add-on to block for the role of this user the access to the unneeded menu items, which will become available for it with capabilities above together, like “Settings”.

    Vladimir
    Keymaster

    Will something change if you deactivate URE temporally? If not, try to deactivate all plugins and then activate them back one by one to isolate a problem.

    Do you have “Other role access” add-on active? Did you set any restrictions for administrators with this add-on?

    in reply to: Documentation of Options and Settings #3269
    Vladimir
    Keymaster

    Hi Urs,

    Thanks for suggestion.
    Options description is there already. Click ‘Help’ link at the top right corner to URE’s Options page to see it.

    Vladimir
    Keymaster

    Use this workaround:

    
    add_filter('ure_restrict_edit_post_type', 'exclude_posts_from_edit_restrictions');
    
    function exclude_posts_from_edit_restrictions($post_type) {
        global $current_user;
        
        $restrict_it = true;
        if ($current_user->user_login=='your_user_login_here') {
            if ($post_type!=='attachment') {
                $restrict_it = false;
            }
        }
        
        return $restrict_it;
    }
    

    It applies ‘edit restrictions’ set for the user to the ‘attachment’ post type only.

    Vladimir
    Keymaster

    Yes. You can set the same restriction for a user at user profile too.

    Vladimir
    Keymaster

    There is no “except items own by some user” feature.

    If you turn ON “Own data only” checkbox for role at “Edit Posts” then user with such role will see just his own media library items only at Media Library and his own posts/pages only at Posts/Pages list too.

    in reply to: No User Role (Disable User) #3243
    Vladimir
    Keymaster

    You are right,
    the best available solution to this is simply create some empty ‘no-role’ role (without capabilities) and then use bulk action to change a role for selected user to ‘no-role’.

    in reply to: Enabling Media Library for Authors & Editors #3227
    Vladimir
    Keymaster

    I can not reproduce this difference between list and thumbnail views.

    I see a mistake in logic. This filter will never return true for user with single ‘editor’ role or user with single ‘author’ role, as 1st definitely can not ‘author’, but 2nd can not ‘editor’.

    Try to replace permissions check part with this one:

    
    if (!current_user_can('editor') &&  !current_user_can('author')) {
        return $show_all;
    }
    
    in reply to: Additional Options: Hide admin bar #3225
    Vladimir
    Keymaster

    I suppose that “Hide admin bar” checkbox is not a reason of this problem.
    Do you use WooCommerce? If yes, read this post.

    in reply to: Blank Admin page #3223
    Vladimir
    Keymaster

    I sent a version 4.32 directly to your email. If a problem with non-admin users login is really related to the URE Pro version 4.32.1 (that is downgrade to 4.32 will fix a problem) let me know.

    in reply to: Delete Role in Multisite #3218
    Vladimir
    Keymaster

    Hi Chris,

    If you have the same roles at all sites of your multisite network, it’s possible to delete a role from main site at “Network Admin -> Users -> User Role Editor” and then click “Network Update” in order to replicate this change to all other sites at once.

    In case you have the different roles at different sites, Yes – it’s individual process for every site. Open site, then delete role…

    in reply to: User Role at Product Level #3211
    Vladimir
    Keymaster

    Look at “posts/pages edit access restrictions” add-on. It has Allow – ‘Own data only’ option. It works for any custom post type too. So product owners will see and can edit at back-end just there own products and related orders only.
    This restriction is possible to set as per user via user profile, as per role via role editor.

    May be it will be suitable to resolve your task, but may be it’s better to look for a special vendors plugin too.

    in reply to: bbpress participant role #3174
    Vladimir
    Keymaster

    It was fixed with Pro version 4.32.

Viewing 15 posts - 1,711 through 1,725 (of 2,518 total)