Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created September 18, 2021 14:05
Show Gist options
  • Save MrVibe/3780db85c0f08444189ac37291573a77 to your computer and use it in GitHub Desktop.
Save MrVibe/3780db85c0f08444189ac37291573a77 to your computer and use it in GitHub Desktop.
Convert time to hours in Elemntor Course information widget.
add_filter('wplms_cs_get_course_unit_durations',function($human_time,$time_in_seconds){
return $time_in_seconds/3600.' hours';
},10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment