Created
September 18, 2021 14:05
-
-
Save MrVibe/3780db85c0f08444189ac37291573a77 to your computer and use it in GitHub Desktop.
Convert time to hours in Elemntor Course information widget.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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