Forum Replies Created

Viewing 15 posts - 1,336 through 1,350 (of 2,537 total)
  • Author
    Posts
  • in reply to: How to give access to Redirections plugin #4490
    Vladimir
    Keymaster

    You granted access to ‘redirect’ custom post type but not to ‘Tools->Redirection’ menu.
    Bad news: Redirection plugin protect this menu item with ‘administrator’ role by default.
    Good news: It allows to developer to change this default value to your own using custom filter, like this:

    
    add_filter('redirection_role', 'change_redirection_permissions', 10, 1 );
    function change_redirection_permissions($cap) {
    
        $cap = 'manage_options';
        
        return $cap;
    }
    

    Then any role with ‘manage_options’ capability will can access ‘Tools->Redirection’ menu item. You can install this code as a part of your active theme functions.php file or as a separate .php file in a wp-content/mu-plugins folder – read more about Must Use plugins.

    in reply to: Restricting custom roles #4485
    Vladimir
    Keymaster

    Hi,

    This custom filter ure_restrict_edit_post_type may help. Return FALSE from it for the ‘event’ CPT to not restrict events editing.

    Vladimir
    Keymaster

    Hi,

    You can change this default behavior via custom filter: ure_auto_access_child_pages.

    in reply to: Partial translation display #4479
    Vladimir
    Keymaster

    Temporally switch off “Activate wp-admin pages pemissions viewer” checkbox at “Settings->User Role Editor->Additional Modules” tab.

    It seems that this add-on works not for all sites setup. I need to make this code more universal.

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

    Thanks for letting me know. I will include this to my development plans.

    in reply to: Partial translation display #4475
    Vladimir
    Keymaster

    Do you use any caching plugin? Try to clear its and browser cache – just in case in would help.
    Did you try to deactivate temporary all plugins except URE?

    in reply to: Problem with application being limited #4472
    Vladimir
    Keymaster

    Good! Thanks for letting me know.

    One recommendation – It’s the best solution to restrict a role via user capabilities 1st. So in order to not block menu items protected by ‘edit_pages’, ‘manage_categories’, ‘edit_staff_members’, etc. revoke those unneeded user capabilities from your custom role. And then block what you don’t need with “Admin menu”.

    in reply to: Problem with application being limited #4470
    Vladimir
    Keymaster

    Editor role WordPress default state:
    https://codex.wordpress.org/Roles_and_Capabilities#Editor

    Does this link work for user if you deactivate “Admin menu access” add-on in URE settings?
    If ‘Yes’ then problem is not related to the user capabilities included into a role. It’s related to “Admin menu access” add-on settings for this role. So give me more details then in order I can proceed.

    in reply to: Problem with application being limited #4468
    Vladimir
    Keymaster

    Show me the screenshots of admin menu for the “Block Selected” variant and what link does not work.

    in reply to: Problem with application being limited #4466
    Vladimir
    Keymaster

    Thanks for the feedback.
    Yes, “Admin menu access” add-on would be a reason of a problem. It blocks access to all URL with main part from admin menu if they differ by arguments list. If URE sees blocked URL it redirects user to the 1st available URL.
    If you use “block not selected” model in “Admin menu” you can invert your selection for menu items and use “Block Selected” model as a workaround.

    in reply to: Partial translation display #4465
    Vladimir
    Keymaster

    I see another picture when switch site language to Russian. So I suppose you have a corrupted translation file. Try to replace .po, .mo files with original copies from URE Pro .zip installation package.


    in reply to: Your site #4464
    Vladimir
    Keymaster

    Hi,

    There are a lot of WordPress plugins which resolve this task – click here to look at the list.

    in reply to: Access to Mapify Pro #4460
    Vladimir
    Keymaster

    Hi,

    You have to grant to a user or role these capabilities in addition to capabilities from the “Map Locations” and “Maps” you granted already as I suppose:
    MapifyPro – manage_options
    Maps – edit_posts
    Map Locations – edit_posts
    Location Tags – manage_options
    Batch Upload – manage_options
    MapifyPro Settings – manage_options

    in reply to: Partial translation display #4459
    Vladimir
    Keymaster

    Yes, there are some missing translations, thanks. I will fix this with the next update. Can you send a link to screenshot with a untranslated labels? I can not say that I see too much untranslated strings at User Role Editor pages.

    If you write about custom post type labels and user capabilities added by plugins, that they are not translated by User Role Editor.

    in reply to: Set License Key in wp-config #4458
    Vladimir
    Keymaster

    Hi,

    You can define PHP constant to provide a license key for User Role Editor automatically, like this:

    
    // User Role Editor Pro License Key
    define('URE_LICENSE_KEY', 'your-license-key-here');
    
Viewing 15 posts - 1,336 through 1,350 (of 2,537 total)