Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    This option is available for super-admin only – condition was hardcoded at wp-admin/user-new.php, line #307 and line #420:

    if ( is_multisite() && is_super_admin() ) {

    This may be customized. It seems possible to add needed ‘noconfirmation’ HTML checkbox field for members_manager’s role user via ‘user_new_form’ action, which is fired just before the form closing tag.

    Plugin Author Vladimir Garagulya

    (@shinephp)

    Way I mentioned above is not applicable as WordPress checked if user is superadmin before process ‘noconfirmation’ POST parameter:

    if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {

    Realized with other workaround. Try version 4.18.

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

The topic ‘Skip Confimration Email’ is closed to new replies.