@adrianaguilera
Unfortunately LifterLMS doesn’t have any features or settings that would enable you to do this.
You could add some custom code to your site that would allow you to stop enrollment once a certain number of courses is reached but it would take quite a bit of code to do so.
The idea would be to check the number of courses a user is enrolled in before they enroll in a course and if they are not allowed to join any more courses stop the enrollment and (probably) show them an error message.
You’d probably want to hook into this action: https://developer.lifterlms.com/reference/hooks/before_llms_user_enrollment/
When that action runs you could use this method to retrieve the number of courses for the student: https://developer.lifterlms.com/reference/classes/llms_student/get_courses/
If that number equals your site course limit, redirect the user to an error page or back to the same page and use our notification function to output an error: https://developer.lifterlms.com/reference/functions/llms_add_notice/
I’m making an assumption that you are a developer but I know that’s not always the case. If you’re not sure what to do with this you could hire a developer to help write the code for you, I’d start with one of our LifterLMS Experts: https://lifterlms.com/experts
Sorry we don’t have this prebuilt and let me know if you have any other questions
Thanks Thomas! This information is very useful for me. I’ll try your approach.