Viewing 1 replies (of 1 total)
  • Hi,
    there is a filter for that. Just add the code below to your functions.php. Change “manage_options” with the roles (i.e. “editor”) or permission (i.e. “manage_options”) you want.

    add_filter("redirection_role","yourtheme_edit_redirection_role");
    function yourtheme_edit_redirection_role($role){
        $role = "manage_options";
        return $role;
    }

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Allowing Non Admin users access to plugin’ is closed to new replies.