Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
Hi, I need to do an action when a student retake a course, there is a filter or hook for this? I see that only in the activity is registered that the student retake a course.
I see that you shared something similar for quiz:
https://wplms.io/support/forums/topic/quiz-customization/
Thank you for any suggestion.
Marco
add_action('wplms_course_retake','course_retake',10,2);
function course_retake($course_id,$user_id){
}
You must be logged in to reply to this topic.