Forum Replies Created
-
AuthorPosts
-
Vladimir
KeymasterPopups 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/Vladimir
KeymasterIf 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.
Vladimir
KeymasterOption “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/Vladimir
KeymasterHello,
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.
Vladimir
KeymasterHi,
Good question. It is not possible currently with roles selection metabox. I will add such functionality for the next update.
Vladimir
KeymasterHi Laurence,
Thanks for the good feedback. Please read my answer at this topic
https://www.role-editor.com/forums/topic/user-pagesposts-only-viewable/Vladimir
KeymasterHi 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.Vladimir
KeymasterThank You.
Vladimir
KeymasterIs this question still actual?
Vladimir
KeymasterPlease 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?
Vladimir
KeymasterThanks 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"]
Vladimir
KeymasterThank 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?
Vladimir
KeymasterTry 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.
Vladimir
KeymasterThanks 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.
Vladimir
KeymasterMore information about installation package download problem:
https://www.role-editor.com/temporary-problems-plugin-download-automatic-updates/ -
AuthorPosts