Subscribers will see the WP Events and News widget, but they shouldn’t be seeing the other stuff. Somewhere the theme and/or plugins are adding widgets in a way that’s allowing all user levels to see them. You can either hit up the support teams for the themes and plugins that are adding them, or you can create your own plugin with code that removes these metaboxes. You’ll need to look up the name for each meta box; here’s one example that removes the “Right Now” box:
<?php
add_action('wp_dashboard_setup', 'wpse_298944_clear_dash_widgets');
function wpse_298944_clear_dash_widgets() {
if(!current_user_can(publish_posts)) {
remove_meta_box('dashboard_right_now', 'dashboard', 'normal');
}
}
?>
Another option is to call the global variable $wp_meta_boxes
and unset them one by one. See How to Remove ALL Widgets from Dashboard?
Related Posts:
- Set default page for user account in admin
- alphabetically order role drop-down selection in dashboard
- WordPress keeps asking for connection information in localhost
- Admins can’t edit each other’s posts
- Is there a simple way to manage capabilities per user?
- Can I create users that have access to *some* other users posts instead of all other users posts?
- Managing Users and Creating Groups [closed]
- Are User Levels Still Currently Used?
- Allow user access to Dashboard only!
- Fix permissions for users role
- How to force authors to ‘submit for review’?
- Rest api return all users (even without content) to all users
- How do I let contributors edit their posts after being approved once?
- No user found when using REST API
- Does it matter if the very first user, usually Admin, does not have a user ID of 1?
- Groups and subgroups for permission
- Add number of members to “Right Now” dashboard widget
- Remove users access to dashboard
- How do I modify the user role ‘subscriber’ to allow the user to delete posts
- Show posts who published after registration date
- User Permissions on custom post type
- WordPress install checking permissions of user id 0
- Restrict Access to the User Profile
- Edit dashboard based on user ID
- What’s the most secure way to grant a user permission to update in a multisite?
- Restrict access to certain dashboard pages based on user id
- How to create front-end (editable) WordPress user profile pages?
- hide woo commerce dashboard status and reports from woo commerce from specific users but display to other users
- current_user_can() returning true for capability when the user and role do not have the capability
- Editor can create any new user except administrator
- Confirmation required on email change
- get_current_user_id() returns 0?
- List users by last name in WP_User_Query
- How to redirect a specific user after log-in?
- Upload gravatar in WP profile?
- How to stop a user from updating the post date
- Recover the user that have been deleted
- determining if the user is logged in
- Adding a photo to each WP user
- How to check that if current user (ID) has posts or not
- How to get the Role Name of the current user? (WordPress)
- how to get recent registered author id?
- set_role has no effect
- Get users only if Gravatar is specified
- Authenticate with a Rails app?
- How do I list in the backend all users that were assigned to a custom role?
- Send Email to Users after Deleting Account
- Suddenly all emails in User have [email protected]
- how to make a profile entry read only except for site managers [closed]
- Users: List A to Z, for Users
- Upgrade Nightmare – No Posts, Permissions Issues and Can’t Create a new post
- Max no of simultaneous active sessions for a single user
- Search Users base on meta_value & meta_key
- Favorite taxonomy archive page?
- Removing all trace of member profiles
- Redirect subscribers to last viewed page after log-in
- User Meta Data in a Sortable Table
- Are there mutiple ways to get usernames (as a hacker)
- Column Sorting Code on users.php
- How can I allow an User to publish only 5 posts per month?
- How to stop redirect if user is already on correct page (Using Case Switch)
- search users using user name and user meta in wordpress
- WordPress Login Customization for External Authentication
- Is there any action /filter hook I can use to disable login for some user role?
- Create a “user log”
- How can I do a url redirect to include a wordpress username?
- WP_User_Query combining role and ids
- Adding fields to the “Add New User” but the form data not saved into DB
- Admin approval for editing user profile
- Using a custom field value as current users name [closed]
- What does “link” refer to when you delete a user?
- WP Create User – Preventing repeated information
- Editor role can only create/edit/delete users who have one of two roles
- Can’t add user- wrong message “this user name is invalid because it uses illegal characters”
- WordPress 5.8 – Hide or Remove personal fields from admin Profile page
- hide user is currently editing warning in admin post page
- Restricting wordpress login sessions for a web app
- change user password REST API
- Find count of WordPress users by role and search string for user name
- Append USER ID to an outbound link?
- fine-grained capabilities for user related capabilities
- How to destroy all user sessions via WP-CLI
- Is a list of user names or IDs in a custom profile field the best way to create a followers list?
- Custom User Role: Can Edit Own Page, Cannot Create New
- Get meta key with value for user
- Redirect current user
- Display Users and user url’s
- custom login form, guide me
- Get the author registration date in the header.php file
- Front end login and page restriction
- How i will get the images of highest scored users?
- i need to let a user to add a role from a frontend form
- Integrating Facebook Registration (and Login) on a WordPress page
- WordPress C# User Login
- Create users from frontend without password
- How to get user contact info
- Why does a super admin on multi site get a rest_user_invalid_id error code when requesting user details through REST?
- How can I list users by date in an array in meta_value?
- Email Subscribe for Downloads in WordPress
- Can I provide a user’s user_ID to them and can it also be searchable in a member’s directory