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!