How to Add bulk Student

Home Forums Legacy Support Support queries How-to & Troubleshooting How to Add bulk Student

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #373151
    nadzhatulothman
    Participant
    Hi, i have a group 400 student that need to use wplms for learning certain course. How to auto create user id, password and add course since they are not enroll through woocommerce.
    #373278
    Veronica
    Moderator
    hi you can upload CSV from here http://prntscr.com/1wyl4th
    #373581
    nadzhatulothman
    Participant
    any template to add at here? meaning auto create account from email with password?
    #373604
    nadzhatulothman
    Participant
    This reply has been marked as private.
    #373651
    Veronica
    Moderator
    hi see this: http://somup.com/cr6tX53pX0
    #374022
    nadzhatulothman
    Participant
    i have done add but the password not same the email. :(
    #374055
    Veronica
    Moderator
    hi try to add this one: in wplms-customizer.php file
    add_filter('wplms_user_pass',function($x){
      add_filter('wp_pre_insert_user_data','chnage_vbp_data');
      return $x;
    });
    function chnage_vbp_data($data){
      $data['user_pass'] = $data['user_email'];
    
      return $data;
    }
    #374386
    nadzhatulothman
    Participant
    Hi @Veronica . After try many time. The password be like this. Example name Alex John the password will be alex-john. Any method to standardize all password?
    #374525
    Veronica
    Moderator
    hi can you please let us know exactly how the password is generating with the code? according to specific emailID
    #376196
    nadzhatulothman
    Participant
    This reply has been marked as private.
    #376297
    Anshuman Sahu
    Keymaster
    Yes the password is not the email actually the password is made up from the user's name stripping the spaces with - and removing @ etc . Another way is from backend : https://wplms.io/support/knowledge-base/addingediting-bulk-users-in-a-course/
    #376300
    nadzhatulothman
    Participant
    @Alex meaning still cannot set specific password to the every create account from backend? @Alex i put 1=start course but when student click start course, button still not change to continue course after close and open again. How to make auto change from start course to continue course after click the button?
    #376351
    Anshuman Sahu
    Keymaster
    Well in the wp-admin import system the username is the password .
Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘How to Add bulk Student’ is closed to new replies.