In particular a ‘purge post’ button (& bulk action) available in the admin list posts screen, similarly within the edit post screens – ditto for all/any custom post type (esp. eg. woocommerce products), pages, categories, media, etc.
It should also be possible to enable/disable the feature by role/capability (although that might already effectively be achieved via the existing roles/capabilities for edit posts, pages, etc).
To be fair I could probably write my own (extension) plugin for adding this feature, but before embarking on a major project, I just wanted to check whether a) anyone else had already done it/similar, or b) whether this is a feature that might be considered for addition to core plugin?
It really would make like so much easier & more straightforward for various website admins, editors, shop managers, etc.
Thanks for any feedback you might be able to offer.
Rob Cain
]]>I have checked off “Can edit their profile” under General Permissions and have “Can access wp-admin” checked as well.
The user is a faculty member AND can create and publish posts – so they need to show up in the member directory, but have a unique role of creating content.
I want to keep it as simple as possible. The new role can create posts, which is perfect, but they can’t edit their profile fields.
I’ve messed around with role priority from here: https://docs.ultimatemember.com/article/1494-how-to-set-role-priority-for-user-roles with the 2 roles – Member and Event+Updates Manager(this one is also a member)
]]>I am using the Plugin Capabilities – WooCommerce to manage user roles and permissions. I want to grant a specific user role (e.g., “Limited Admin”) access to the “Additional CSS” option in the WordPress Customizer. However, I need to ensure they cannot access the Theme Editor or the Plugin Editor for security reasons.
Could you please guide me on how to configure this correctly using your plugin?
Your support would be greatly appreciated. Thank you in advance!
Best regards,
]]>Connections is functioning normally on site – just can’t get into manage data.
WP 6.7, Connections Version 10.4.66, Tile Plus Version 4.1
]]>I have a multisite installation with eight instances, with the first being the “main” website of an ecosystem.
I need to add the the wp super cache settings capability to the editor and administrator roles in every “child” site.
at the moment wp super cache settings are not visible, nor accessible to other roles than the superadministrator.
the issue is that the “main” site has some custom post types that I make accessible to the “children” websites. once a post i created, i need the editors and administrator to access the “Delete Cache On All Blogs” button inside the settings.
I tried this code with no success:
function custom_grant_cache_access() {
$admin_role = get_role('administrator');
if ($admin_role) {
$admin_role->add_cap('wp_cache_manage_options');
}
}
add_action('admin_init', 'custom_grant_cache_access');
function custom_cache_menu_access() {
if (current_user_can('administrator')) {
add_menu_page('WP Super Cache', 'WP Super Cache', 'wp_cache_manage_options', 'wp-cache', '', 'dashicons-admin-generic', 56);
}
}
add_action('network_admin_menu', 'custom_cache_menu_access');
is it possible in some way? or do you plan to update the plugin with this feature?
]]>Thanks for the help
]]>addMenuFbe
uses manage_options
capability necessary for viewing link in settings.admin_menu
, since FacebookWordpressSettingsPage
class is not available, nor I see any other way to do it.