Forum Replies Created

Viewing 15 posts - 2,341 through 2,355 (of 2,516 total)
  • Author
    Posts
  • in reply to: Custom capabilty #1490
    Vladimir
    Keymaster

    Fransis,

    Did you network activated URE Pro?

    in reply to: Customize is blocked but still has access #1489
    Vladimir
    Keymaster

    Hi Carolyn,

    I confirm this issue. Thanks for letting me know. I will fix it: block that button and check why ‘Customize’ URL was not blocked.

    Vladimir
    Keymaster

    Thanks for the information.

    in reply to: Edit Admin Menu but not working #1479
    Vladimir
    Keymaster

    Hi,
    I tested with ‘https’ protocol successfully. So it is not the reason of the issue. Please check the browser JavaScript console for error messages.

    Vladimir
    Keymaster

    I tested from 2 installations without problem:
    [video src="http://storage.googleapis.com/role-editor/downloads/support/ure-pro-automatic-updates.ogv" /]

    What’s happend when you click “Check for automatic updates” link?
    Send me (support [at-sign] role-editor.com) IP-address of the site where you made the screenshot. I will check my update server logs.

    in reply to: Custom capabilty #1477
    Vladimir
    Keymaster

    Hi,

    Sorry, I missed your message.
    To what plugin do that custom capabilities belong?

    in reply to: Multisite user role creation #1476
    Vladimir
    Keymaster

    Hi,

    pvendeavors,
    send super login credentials to the support [at-sign] role-editor.com. I will look on the issue.

    in reply to: Restrict Page message #1466
    Vladimir
    Keymaster

    Thanks for the suggestions. I work on it. Try beta version.
    – It is possible to select between HTTP 404 error or custom error message for the access error. You can set global message at the URE’s Options and set custom message on the post level.

    in reply to: Create role from two other existing roles #1465
    Vladimir
    Keymaster

    I thought about such feature, like inclusion roles to the other role, but it is not realized yet.

    in reply to: Hide Dashboard from user #1464
    Vladimir
    Keymaster

    Hi,

    This article may help:
    https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect

    Place that code to the functions.php file of your active theme.

    in reply to: Possible plugin conflict/error #1463
    Vladimir
    Keymaster

    Quick fix: add to the “Administrator” role these capabilities defined and used by GF Salesforce Add-On:
    gravityforms_salesforce, gravityforms_salesforce_uninstall

    in reply to: How to restrict top bar #1454
    Vladimir
    Keymaster

    Please check if code you inserted into the functions.php contains real single quotes like this “‘”, not as the message above “‘’”.

    in reply to: Plugin blocking problems #1453
    Vladimir
    Keymaster

    Hi,

    In general you need to use ‘Admin Menu’ button after activating ‘Activate Administrator Menu Access module’ option at URE’s Options page, and block unneeded menu items for the “Editor” role.

    If you can not send the links here, please, send the screenshots of the settigns you made to the support [at-sign] role-editor.com

    in reply to: "Add Role" does not function in Network Admin #1448
    Vladimir
    Keymaster

    The most probable reason is a JavaScript error, raised by some code from other plugin or theme. Please check browser JavaScript console for the error messages and try to isolate them. Or let me to help you with that.

    in reply to: How to restrict top bar #1447
    Vladimir
    Keymaster

    Hi,

    add to the active theme’s functions.php file this code:

    
    add_action('wp_head', my_hide_admin_menu_bar);
    
    function my_hide_admin_menu_bar() {
           
        if (current_user_can('role_for_which_you_block_admin_bar')) {
            show_admin_bar(false);
        }        
            
    }
    
Viewing 15 posts - 2,341 through 2,355 (of 2,516 total)