Can you please share more information on the issue like if this is happening in all course or one course, also it would be great if you could share the page url to check the issue.
Please log on with the test student user
mike78 / bangkok7*
And take this 1hr lesson http://www.ajarnonline.com/lessons/business-english-vocabulary/
You will see once the student clicks Take This Lesson the lesson duration shows 0 hours
I find this is happening on all lessons.
You can use this student user to test on all the lesson created on the site. All lessons are test lessons.
Thanks for sharing the credentials.
This is happening since the course is of 1 hour, whenever user starts the course the duration of the course now becomes 0 hours and 59 minutes and it is showing only hours in duration.
Try changing the course duration in Minutes from : wp-admin->WPLMS->Course Manager: http://prntscr.com/8y45ro
Changing to minutes would be a problem as we are selling lessons of hourly durations 1 hr 2hr 3hr etc
How can we correct this so the duration is fixed at the duration hour set by the teacher?
Please follow these steps to resolve this :
1. Goto wp-admin -> wplms ->course manager ->set course duration parameter to automatic .
refer : http://prntscr.com/8ykjd0
2. Now add the given code in your wplms customizer.php file in wplms customizer plugin :
add_filter('vibe_course_duration_parameter','new_course_duration_parameter_in_hours');
function new_course_duration_parameter_in_hours($x){
return 3600;
}