Title: Access the same plugin package from different users?
Last modified: November 30, 2022

---

# Access the same plugin package from different users?

 *  Resolved [furiosojack](https://wordpress.org/support/users/furiosojack/)
 * (@furiosojack)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/access-the-same-plugin-package-from-different-users/)
 * From a user profile a plugin was created and several version zips were added 
   to it. Then you log in with another user and you don’t see the packages you uploaded.
   How can I make a user see the plugins of other admin users.
 * thanks greetings
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Faccess-the-same-plugin-package-from-different-users%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [David Anderson / Team Updraft](https://wordpress.org/support/users/davidanderson/)
 * (@davidanderson)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/access-the-same-plugin-package-from-different-users/#post-16253072)
 * If you want user with ID 2 to access the plugins of user with ID 1, then use 
   this filter:
 *     ```
       add_filter('udmanager_user_id_for_licences', function($user_id) {
       	return (2 == $user_id) ? 1 : $user_id;
       });
       ```
   
 *  Thread Starter [furiosojack](https://wordpress.org/support/users/furiosojack/)
 * (@furiosojack)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/access-the-same-plugin-package-from-different-users/#post-16324045)
 * thanks anderson I did what you told me but apparently to the users who are administrators
   how could I give permission to other users of another profile to see the plugins
   that are not administrator if not for example collaborator
 *  Plugin Author [David Anderson / Team Updraft](https://wordpress.org/support/users/davidanderson/)
 * (@davidanderson)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/access-the-same-plugin-package-from-different-users/#post-16326444)
 * Look in the plugin file `options.php` for the method `manage_permission` – you
   can use the filter there to relax the permission used to access plugin features:
 *     ```wp-block-code
       public static function manage_permission($for_what = 'plugins') {
       		$capability_required = ('plugins' == $for_what) ? 'manage_options' : 'manage_options';
       		return apply_filters('udmanager_manage_permission', $capability_required, $for_what);
       	}
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Access the same plugin package from different users?’ is closed to new
replies.

 * ![](https://ps.w.org/simba-plugin-updates-manager/assets/icon-256x256.png?rev
   =1110626)
 * [Simba Plugin Updates Manager](https://wordpress.org/plugins/simba-plugin-updates-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simba-plugin-updates-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simba-plugin-updates-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/simba-plugin-updates-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simba-plugin-updates-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simba-plugin-updates-manager/reviews/)

## Tags

 * [profile](https://wordpress.org/support/topic-tag/profile/)
 * [user](https://wordpress.org/support/topic-tag/user/)

 * 3 replies
 * 2 participants
 * Last reply from: [David Anderson / Team Updraft](https://wordpress.org/support/users/davidanderson/)
 * Last activity: [3 years, 5 months ago](https://wordpress.org/support/topic/access-the-same-plugin-package-from-different-users/#post-16326444)
 * Status: resolved