how to disable user confirmation from administration?

Haven’t really tested this, but WP actually uses this filter if you check the “noconfirmation” box, except that it does so only for super_admins, like you said:

add_filter( 'wpmu_signup_user_notification', '__return_false' );

Leave a Comment