Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 2,516 total)
  • Author
    Posts
  • in reply to: add capability #1443
    Vladimir
    Keymaster

    Popups plugin uses ‘manage_options’ capability. So you need to add ‘manage_options’ to the editor role and block for it other menu items (like ‘Settings’) prohibited by the same ‘manage-options’ capability with admin menu blocking add-on:
    https://www.role-editor.com/block-admin-menu-items
    The similar situation was described in this post:
    https://www.role-editor.com/wp-statistics-access-other-roles/

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

    If you just create role under network admin – new role will be available at the main site of the network only. All updates made to the roles under Network Admin are applied to the main site.

    If you wish to replicate all roles data to the all other subsites use “Update Network” button.

    in reply to: Prohibit access for visitors #1439
    Vladimir
    Keymaster

    Option “No role for this site” is available at the roles list starting from the version 4.19. Currently version 4.19 is in a beta state. You may download it for testing from
    https://www.role-editor.com/download-plugin/

    in reply to: WPMU Membership compatibility #1435
    Vladimir
    Keymaster

    Hello,

    Rules defined at both plugins should be agreed. If you use URE to give marketing chap access to the certain pages and posts only, as you can not achieve the same at WPMU Dev Membership, try to make that user a member with full access to the posts and pages at WPMU Dev Membership 1st.

    in reply to: Prohibit access for visitors #1430
    Vladimir
    Keymaster

    Hi,

    Good question. It is not possible currently with roles selection metabox. I will add such functionality for the next update.

    in reply to: User posts/pages access. #1428
    Vladimir
    Keymaster

    Hi Laurence,

    Thanks for the good feedback. Please read my answer at this topic
    https://www.role-editor.com/forums/topic/user-pagesposts-only-viewable/

    in reply to: User pages/posts only viewable #1427
    Vladimir
    Keymaster

    Hi Laurence,

    You may achieve this by 2 ways:
    1) Try my other plugin https://wordpress.org/plugins/view-own-posts-media-only/
    or
    2) Use posts/pages edit restrictions add-on of a Pro version:
    https://www.role-editor.com/allow-user-edit-selected-posts/
    But do not input that users post IDs as restrictions list.
    If you wish that user add new posts add him or to the his role the ‘create_posts’ capability.
    In order to restrict him to view his own posts do the following:
    – Add to the user or to the his role ‘edit_others_posts’ capability. This will activate ‘edit posts/pages with author user ID (comma separated)’ section at that user profile.
    – Input that user ID to that field to restrict him to view/edit just his posts and any other custom posts types, like WooCommerce products, etc.

    in reply to: Thank You #1424
    Vladimir
    Keymaster

    Thank You.

    in reply to: Plugin is restricting author changes #1416
    Vladimir
    Keymaster

    Is this question still actual?

    in reply to: Plugin is restricting author changes #1414
    Vladimir
    Keymaster

    Please give more details about a problem? Don’t you see users with ‘author’ role at the ‘Author’ drop-down list at post editor or something else?

    in reply to: user_role_editor shortcode problem #1412
    Vladimir
    Keymaster

    Thanks for the additional information. I paid attention on that after read of your 1st message, but thought that text is shown by WordPress/bbPress that way. Please check the double quotes used at the shortcode. Instead of

    
    [user_role_editor roles=”caclient”]
    

    ordinal HTML complied double quote symbol should be there:

    
    [user_role_editor roles="caclient"]
    

    The same problem should be fixed here:

    
    [user_role_editor roles=”affiliate"]
    
    in reply to: user_role_editor shortcode problem #1410
    Vladimir
    Keymaster

    Thank you for the screencast. Shortcode works at my test multisite WordPress installation. So it should not be an issue.

    Could you please send your test post content as a .txt file attachment to support [at-sign] role-editor.com?

    in reply to: user_role_editor shortcode problem #1406
    Vladimir
    Keymaster

    Try other user with ‘caclient’ role. Will it change something? If ‘Yes’, assign to the former user other role and then assign ‘caclient’ back.

    I tested shortcode feature today (to be sure) and this is the record of my test.

    in reply to: Blocking page options #1401
    Vladimir
    Keymaster

    Thanks you for the suggestion. I will add interface for it with high probability. At this moment use this code (it is for the ‘Editor’ role):

    add_action('add_meta_boxes', 'remove_post_metaboxes', 11);
    
    function remove_post_metaboxes() {
      if (!current_user_can('editor')) {
        return;
      }
      
      $side_metaboxes = array('formatdiv', 'categorydiv', 'tagsdiv-post_tag', 'postimagediv');
      $normal_metaboxes = array('revisionsdiv', 'postexcerpt', 'trackbacksdiv', 'postcustom', 'commentstatusdiv', 'commentsdiv', 'slugdiv', 'authordiv');
      
      foreach($side_metaboxes as $metabox) {
        remove_meta_box($metabox, 'post', 'side');
      }
      foreach($normal_metaboxes as $metabox) {
        remove_meta_box($metabox, 'post', 'normal');
      }
            
    }
    
    add_action('add_meta_boxes', 'remove_page_metaboxes', 11);
    
    function remove_page_metaboxes() {
      if (!current_user_can('editor')) {
        return;
      }
      
      $side_metaboxes = array('pageparentdiv', 'postimagediv');
      $normal_metaboxes = array('postcustom', 'commentstatusdiv', 'commentsdiv', 'slugdiv', 'authordiv');
      
      foreach($side_metaboxes as $metabox) {
        remove_meta_box($metabox, 'page', 'side');
      }
      foreach($normal_metaboxes as $metabox) {
        remove_meta_box($metabox, 'page', 'normal');
      }
    
      
    }
    

    You may put it into functions.php file of your active theme or as the separate php file at wp-content/mu-plugins directory. Do not forget to start php file from <?php line.

    in reply to: Download package .zip corrupt? #1399
    Vladimir
    Keymaster

    More information about installation package download problem:
    https://www.role-editor.com/temporary-problems-plugin-download-automatic-updates/

Viewing 15 posts - 2,356 through 2,370 (of 2,516 total)