Hi @alex
I have new requirement.
Issue certificate on when student reach 80% attendance & 60% of marks from evaluation.
1. Can I fulfil above requirement using attendance plugin?
2. if not possibility of customisation, I can do using hooks & api?
Yes there is hook available for this :
apply_filters('wplms_course_student_certificate_check',$passing_filter,$course_id,$user_id,$marks,$passing_per)
$passing_filter : boolean : whether or not to assign certificate or not ,
$course_id : obvious,
$user_id : obvious,
$marks : obvious,
$passing_per : certificate percentage on set in course settings
you can return $passing_filter as false if attendance not more than 80%.