• Resolved kikuyumoja

    (@kikuyumoja)


    We’ve used Register Plus for a project and had the problem that only administrators would see the “unverified users” button on the users menu. However, we wanted to extend this menu also to our editors as they are the ones who shall edit all content and unlock new users.

    To achieve this, just open the register-plus.php in an editor and go to line 90 where you’ll find this:
    add_users_page( 'Unverified Users', 'Unverified Users', 10, 'unverified-users', array($this, 'Unverified') );

    Now just change the value 10 (= administrators) to e.g. 7, like this:
    add_users_page( 'Unverified Users', 'Unverified Users', 7, 'unverified-users', array($this, 'Unverified') );

    Hope this works out for anoyne else who’s been wondering about this!
    cheers,
    jke

    h/t @mzeecedric!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Register Plus] Editors may edit unverified users’ is closed to new replies.