Title: How to remove Admin Approval
Last modified: October 9, 2020

---

# How to remove Admin Approval

 *  Resolved [jordanfloy](https://wordpress.org/support/users/jordanfloy/)
 * (@jordanfloy)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/)
 * I want everybody to register and become instructor right from the beginning on
   tutor LMS without admin approval How can I do that?
    -  This topic was modified 5 years, 9 months ago by [jordanfloy](https://wordpress.org/support/users/jordanfloy/).
    -  This topic was modified 5 years, 9 months ago by [jordanfloy](https://wordpress.org/support/users/jordanfloy/).

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

 *  [jubayersunkhan777](https://wordpress.org/support/users/jubayersunkhan777/)
 * (@jubayersunkhan777)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13512713)
 * its so easy
 *  [jubayersunkhan777](https://wordpress.org/support/users/jubayersunkhan777/)
 * (@jubayersunkhan777)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13512715)
 * This Is The Link Brother (your domain name/wp-admin/users.php)
    -  This reply was modified 5 years, 9 months ago by [jubayersunkhan777](https://wordpress.org/support/users/jubayersunkhan777/).
 *  Thread Starter [jordanfloy](https://wordpress.org/support/users/jordanfloy/)
 * (@jordanfloy)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13513125)
 * WHAT ARE YOU TRYING TO SAY?
    I WANT AUTO APPROVAL FOR INSTRUCTORS ON MY WEBSITE.(
   WITHOUT ADMIN APPROVAL)
    -  This reply was modified 5 years, 9 months ago by [jordanfloy](https://wordpress.org/support/users/jordanfloy/).
 *  [jubayersunkhan777](https://wordpress.org/support/users/jubayersunkhan777/)
 * (@jubayersunkhan777)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13513315)
 * Ok
 *  [munayam](https://wordpress.org/support/users/munayam/)
 * (@munayam)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13516125)
 * Hello [@jordanfloy](https://wordpress.org/support/users/jordanfloy/),
 * You can go to instructor menu option from admin backend dashboard to manually
   add new instructors yourself.
 * You can also use the following snippets of code from your child theme’s functions.
   php file to auto approve instructors
 *     ```
       /**
       * Required Tutor LMS v.1.6.0
       */
   
       add_action('tutor_new_instructor_after', 'approve_new_instructor_immediately');
       /**
        * @param $instructor_id
        *
        * Immediately approve instructor after register
        */
   
       if ( ! function_exists('approve_new_instructor_immediately')){
           function approve_new_instructor_immediately($instructor_id){
               update_user_meta($instructor_id, '_tutor_instructor_status', 'approved');
               update_user_meta($instructor_id, '_tutor_instructor_approved', tutor_time());
   
               $instructor = new \WP_User($instructor_id);
               $instructor->add_role(tutor()->instructor_role);
           }
       }
       ```
   
 * You can go to WordPress settings > general to change “New User Default Role” 
   from Subscriber to Tutor Instructor so anyone who signs up with your platform
   will become instructor right from the onset but be warned that there will be 
   no student/subscriber role if you set new user default role to Tutor Instructor.
 *  [realmaria](https://wordpress.org/support/users/realmaria/)
 * (@realmaria)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13526958)
 * Hey, I also have the same query but I want to that If I’m using tutor LMS default
   login & registration pages then why I have to go and edit the code in my theme
   files?
 * And if adding the code in the theme file will work then what if I directly edit
   in the parent /main theme because I’m not using a child theme.
 * And you said that if anyone registers on our site then he/she will automatically
   become Instructor and there will be no student role. Then How this option work
   because I can’t differentiate between tutor/instructor & student.
 * Please let me know about these issues.
 * Thanks
 *  [munayam](https://wordpress.org/support/users/munayam/)
 * (@munayam)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13531175)
 * Hello [@realmaria](https://wordpress.org/support/users/realmaria/),
 * If you keep new user default role set to “Subscriber” from WordPress settings
   > general then you will be able to differentiate between students and instructors.
 * jordanfloy wanted everyone to become instructor right from the onset, if you 
   read his query again.
 * If you edit parent plugin files and not customize from child theme you will lose
   your customization when you update parent plugin.
 *  [realmaria](https://wordpress.org/support/users/realmaria/)
 * (@realmaria)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13533551)
 * okay but I don’t want that every registration becomes a subscriber or tutor. 
   I want that if any tutor registers then he/she does not have to wait for admin
   approval and I as an admin not want to manually approve each and every tutor 
   entry. So if it is possible to bypass the admin approval process for tutors only
   then please let me know.
 *  [munayam](https://wordpress.org/support/users/munayam/)
 * (@munayam)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13536113)
 * Hello [@realmaria](https://wordpress.org/support/users/realmaria/),
 * Keep the new user default role to “Subscriber” from WordPress settings > general
   and use the code I shared earlier from your child theme’s functions.php file.
   Thanks

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

The topic ‘How to remove Admin Approval’ is closed to new replies.

 * ![](https://ps.w.org/tutor/assets/icon-256x256.jpg?rev=3598934)
 * [Tutor LMS - eLearning and online course solution](https://wordpress.org/plugins/tutor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tutor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tutor/)
 * [Active Topics](https://wordpress.org/support/plugin/tutor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tutor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tutor/reviews/)

 * 9 replies
 * 4 participants
 * Last reply from: [munayam](https://wordpress.org/support/users/munayam/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/tutor-lms-5/#post-13536113)
 * Status: resolved