Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 2,541 total)
  • Author
    Posts
  • in reply to: Hide "Other Roles" control #2122
    Vladimir
    Keymaster

    Hi,

    ‘Other Roles’ section is shown, if this boolean filter ‘ure_show_additional_capabilities_section’ returns true (by default). It’s hidden in case this filter returns false.

    in reply to: Login WordPress Dashboard #2119
    Vladimir
    Keymaster

    Jawad,

    Upcoming (in a couple of days I hope) 4.23.3 bug fix release will not contain this feature yet. I will include it the the 4.24.

    I will include these code snippets to the Pro version 4.24 as the options (inactive by default). So you will can safely install plugin update, remove your own copy of code from functions.php and then turn on the correspondent option at the User Role Editor Settings.

    in reply to: Login WordPress Dashboard #2117
    Vladimir
    Keymaster

    Hi Jawad,

    ‘shop_web_hook’ is a custom post type introduced by WooCommerce:
    https://docs.woothemes.com/document/webhooks/

    Please remind, for what question you did not get the answer.

    in reply to: User rights WP App (IOS and Android) #2116
    Vladimir
    Keymaster

    I think that Android and iOS applications both should work the same way in relation access to WordPress data.
    Try to clear all cached data at your iOS device.

    in reply to: User rights WP App (IOS and Android) #2113
    Vladimir
    Keymaster

    Herbert,

    Do you Сolleagues use this application to post to WordPress from mobile devices?

    in reply to: User rights WP App (IOS and Android) #2112
    Vladimir
    Keymaster

    Hi Herbert,

    Thanks for the feedback.

    I do not have a solution for the access restrictions problem with WP App right now. I will investigate it and try to offer the solution ASAP.

    in reply to: Some Buddypress menu item not detected #2111
    Vladimir
    Keymaster

    In relation to the screenshots with capabilities:
    – Is it possible that you have different set of plugins activated on these sites?

    in reply to: Some Buddypress menu item not detected #2110
    Vladimir
    Keymaster

    In order to remove ‘Emails->Customize’ menu item use this code:

    
    add_action('admin_menu', 'my_remove_buddypress', 20);
    
    function my_remove_buddypress() {
      
        if (current_user_can('your-own-role')) {     
            remove_submenu_page('edit.php?post_type=bp-email', 'bp-emails-customizer-redirect');
        }
      
    }
    
    in reply to: Some Buddypress menu item not detected #2109
    Vladimir
    Keymaster

    Hello,

    I confirm the bug with menu items similar to BuddyPress. It’s fixed at upcoming version 4.23.3. I plan to publish it in a couple of days.

    in reply to: Woocommerce restrict to view of orders #2102
    Vladimir
    Keymaster

    Orders menu is protected by ‘edit_shop_orders’ capability. It’s possible to prohibit new order creation if you activate ‘create’ capability at User Role Editor Settings.

    But ‘edit_shop_orders’ capability is enough to ‘process’ and ‘complete’ the order. The only way to allow a read-only access to the WooCommerce orders is to use this filter from WooCommerce code:

    
    $actions = apply_filters( 'woocommerce_admin_order_actions', $actions, $the_order );
    

    Your function for this filter should return empty $actions array for ‘editor’ role in order to make for them read-only access.

    Let me know if you need further help.

    in reply to: Meta boxes via ACF Pro #2101
    Vladimir
    Keymaster

    Hi,

    I have to postpone this issue investigation for 1-2 days.

    in reply to: Use the Bulk Access Edit for Custom Post Types #2097
    Vladimir
    Keymaster

    I will extend ‘Bulk Access Edit’ to the custom post type with a next update (approximately this week).

    Category/taxonomy id filter should work already for custom post types and pages (if you linked categories to them).

    in reply to: Meta boxes via ACF Pro #2096
    Vladimir
    Keymaster

    Hi,

    Could you provide ACF Pro copy for testing? Send zip to the support email. I guarantee that it will be installed it only locally and for testing purpose.

    in reply to: Login WordPress Dashboard #2092
    Vladimir
    Keymaster

    Jawad,

    I found and fix the reported issue with PHP notice from admin-menu-access.php. I will publish it with the next update in 1-2 weeks.

    in reply to: Login WordPress Dashboard #2091
    Vladimir
    Keymaster

    Hi Jawad,

    Thanks for the feedback. I very appreciate your help in making URE Pro better.

    I can repeat the PHP notice from the admin-menu-access.php using your recent information.
    I will develop a fix.

Viewing 15 posts - 2,131 through 2,145 (of 2,541 total)