Hello,
The course progress widget with the WPLMS Dashboard add-on is currently not sorting the courses alphabetically, how can I get this?
https://imgur.com/WPBs1Nl
Thank you!
To make the courses in alphabetical order please add this php code in your wplms-customizer plugin -> wplms-customizer.php file.
add_filter('wplms_dashboard_course_progerss',function($query){$query['order'] = 'ASC';$query['orderby'] = 'title';return $query;});
Author
Posts
Viewing 2 posts - 1 through 2 (of 2 total)
The topic ‘Sort Course Progress Widget’ is closed to new replies.