Forum Replies Created

Viewing 15 posts - 481 through 495 (of 2,514 total)
  • Author
    Posts
  • in reply to: Prevent User from seeing posts from other users #7052
    Vladimir
    Keymaster

    Hi,

    Content view restrictions are about the front-end. In order to restrict the list of posts visible to a user at the back-end Posts lists, use edit restrictions “Own data only” option.

    in reply to: Editor role and moderating comments #7048
    Vladimir
    Keymaster

    Hi,

    The key permission for the comments moderation is “if user can edit a post, to which a comment was sent”: edit_posts, edit_published_posts, edit_others_posts.
    ‘moderate_comments’ is not about that. More information is here.

    I don’t have a solution, how to prevent editors or even authors from comments moderation.

    in reply to: Display users by role #7046
    Vladimir
    Keymaster

    Hi,

    Excellent!

    in reply to: Stop authors editing pending posts #7042
    Vladimir
    Keymaster

    Hi,

    There is no special capability for this purpose. It’s normal for WordPress – allow to post author to edit his pending post while it’s not published by reviewer.

    Vladimir
    Keymaster

    No. Where did you sent them?

    Vladimir
    Keymaster

    Hi,

    Do you use bbPress to manage forum?
    Is your membership plugin available at the wordpress.org/plugins? Send direct link to it.

    in reply to: Delete all plugin data #7031
    Vladimir
    Keymaster

    Hi Sunny,

    Use WordPress built-in ‘Delete’ link under deactivated URE Pro plugin. It should delete all its records from the database automatically: plugin settings and additional modules data.

    Only changes made to user roles and user permissions will stay even after URE full deletion, be cause of all such changes were made directly in WordPress internal data structures.

    Vladimir
    Keymaster

    Hi,

    You can use “Meta boxes access” add-on. Block “Yoast SEO” meta box for role “Artisan” using it.

    in reply to: how to assign a custom role as an author ? #7021
    Vladimir
    Keymaster

    Hi,

    Turn on “deprecated” ‘level_0’, ‘level_1’, ‘level_2’ user capabilities for your custom role.
    Detailed explanation is here.

    in reply to: User can’t edit own posts. #7019
    Vladimir
    Keymaster

    1st of all, let’s check if URE Pro is involved into the issue. Will user can edit own post if you deactivate URE?

    in reply to: Upgrading Pro Personal to Pro Business #7015
    Vladimir
    Keymaster

    I sent the discount code to your email address. Use it during purchase Pro Business after login.

    in reply to: Block some links in the top admin menu #7013
    Vladimir
    Keymaster

    1st option, revoke ‘edit_theme_options’ capability the user role.

    If for some reason you wish to leave ‘edit_theme_options’ capability to a role, for access to some menu item under ‘Appearance’ menu for example, then,

    2nd option, you can enable “Theme Options” admin menu item using “My The7 -> Show theme options in sidebar” checkbox. After that just block “Theme Options” admin menu item using “Admin menu access” add-on. This will automatically block “Theme Options” top admin menu too.

    Vladimir
    Keymaster

    Hi,

    You were on the right way with

    
    unset( $pages[‘product_filter’]);
    

    The problem is the priority value. ‘Product filter’ plugin adds its tab via ‘woocommerce_settings_tabs_array’ filter with priority 50. So, in order to remove it you have to add the same filter with larger priority, at least 51. So try

    
    add_filter('woocommerce_settings_tabs_array', 'change_wc_settings_tabs', 51);
    function change_wc_settings_tabs( $pages ) {
        
    
        $user = wp_get_current_user();
        if ( in_array( 'your-role', $user->roles ) ) {
    
        }
        unset( $pages['product_filter']);  // Product Filter
    }
    
    in reply to: Block some links in the top admin menu #7010
    Vladimir
    Keymaster

    Hi,

    Can you share this theme .zip with support[at-sign]role-editor.com via DropBox or similar service? I will can look at it then. I use such products for the testing purpose only.

    Vladimir
    Keymaster

    Hi,

    I need access to the “Product Filter” plugin in order to test this. Share its .zip via DropBox or similar with support [at-sign] role-editor.com
    I use such products for the investigation purpose only and install at the local development environment.

Viewing 15 posts - 481 through 495 (of 2,514 total)