• Resolved pregomoraes

    (@pregomoraes)


    I’m using the free version and can’t find user enrollment information in the database tables. I have various users in a sheet and I would like to enroll all of them at the same time via SQL. How can I do this? Do I need to have the paid version?

Viewing 1 replies (of 1 total)
  • Maizul

    (@maizul)

    Hi @pregomoraes ,

    You can check for enrolled users in the database with the following SQL query:

    SELECT * FROM wp_posts WHERE post_type = 'tutor_enrolled' LIMIT 50
    

    This will return a list of entries in the wp_posts table related to course enrollments.

    However, the feature to manually enroll users via the Tutor LMS admin interface is available only in the Pro version of Tutor LMS.

    If you’d like to enroll users in bulk directly through SQL, you can insert records into the necessary tables wp_posts that correspond to the tutor_enrolled post type. Keep in mind that this method requires a good understanding of the database structure.

    Thank you.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.