Title: Plugin edition
Last modified: August 20, 2016

---

# Plugin edition

 *  [zroberto2012](https://wordpress.org/support/users/zroberto2012/)
 * (@zroberto2012)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-edition/)
 * How I can give access to the editor use specific plugin e.g. The will be able
   to add events using event registration plugin?
 * [http://wordpress.org/extend/plugins/user-role-editor/](http://wordpress.org/extend/plugins/user-role-editor/)

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

 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-edition/#post-3601415)
 * Send here a link to plugin you write about.
 *  Thread Starter [zroberto2012](https://wordpress.org/support/users/zroberto2012/)
 * (@zroberto2012)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-edition/#post-3601458)
 * [http://wordpress.org/extend/plugins/event-registration/](http://wordpress.org/extend/plugins/event-registration/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-edition/#post-3601485)
 * Look into code at EVNTREG.php file, just from line #251:
 *     ```
       /*********************************   ADMIN MENUE   ********************************/
       //
       #function to load plugin admin menu to Admin sidebar
       function evr_admin_menu(){
           global $evr_date_format, $evr_ver;
           $version = "EVNTRG_" . $evr_ver;
           $role = 'manage_options';
           #Create Admin Menus
           add_menu_page($version, $version, $role, __file__, 'evr_splash');
           add_submenu_page(__file__, 'Configure Plugin', __('Configure','evr_language'), $role, 'configure','evr_admin_company');
           add_submenu_page(__file__, 'Categories', __('Categories','evr_language'),$role, 'categories','evr_admin_categories');
           add_submenu_page(__file__, 'Manage Events', __('Events','evr_language'), $role, 'events','evr_admin_events');
           add_submenu_page(__file__, 'Questions', __('Questions','evr_language'), $role, 'questions','evr_admin_questions');
           add_submenu_page(__file__, 'Manage Attendees', __('Attendees','evr_language'), $role, 'attendee','evr_attendee_admin');
           add_submenu_page(__file__, 'Manage Payments', __('Payments','evr_language'), $role, 'payments','evr_admin_payments');
           add_submenu_page(__file__, 'Register Plugin', __('Register Plugin','evr_language'), $role, 'evr_register','evr_registration');
           if (get_option('evr_was_upgraded')== "Y") {add_submenu_page(__file__, 'Remove Old Data', __('Remove Old Data','evr_language'), $role, 'purge','evr_clean_old_db');}
           add_submenu_page(__file__, 'UnInstall Plugin', __('Uninstall','evr_language'), $role, 'uninstall','evr_remove_db_menu');
   
       }
       /*********************************   END ADMIN MENU   ********************************/
       ```
   
 * At line #257 plugin defines, which role it uses to setup menu permissions for
   its users. You may change ‘manage_options’ to ‘editor’ if you wish to permit 
   your editor to manage this plugin with full access.
    You should trust enough 
   to your editor or check, if you don’t make some security whole at your WordPress
   setup with this change.
 *  [Armadamm](https://wordpress.org/support/users/armadamm/)
 * (@armadamm)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-edition/#post-3601552)
 * Hi Vladimir,
    i try to insert role in this plugin but don’t work.
 * [http://wordpress.org/extend/plugins/store-locator-le/](http://wordpress.org/extend/plugins/store-locator-le/)
 * Some user must be able to add a Location.
    How i can do this?
 * Thank’s
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-edition/#post-3601601)
 * Hi Armadamm,
 * As I consider after quick view this plugin uses the only self-created user capability‘
   manage_slp’. If user has this capability she is capable to do all things with
   store-locator-le.
 * Regards,
    Vladimir.

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

The topic ‘Plugin edition’ is closed to new replies.

 * ![](https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390)
 * [User Role Editor](https://wordpress.org/plugins/user-role-editor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-role-editor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-role-editor/)
 * [Active Topics](https://wordpress.org/support/plugin/user-role-editor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-role-editor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-role-editor/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-edition/#post-3601601)
 * Status: not resolved