I'm trying to arrange courses in a category view to be in alphabetical order and have tried this in child theme functions.php
[code]
add_filter('wplms_course_filters_course_cat','sort_order_by_name');
function sort_order_by_name($arr){
$arr=array('orderby'=>'name','order'=>'ASC','parent'=>0);
return $arr;
}
[/code]
What I'm trying to achieve is an alphabetical order or pages such as
http://nilc.co.uk/course-cat/apple/
Thanks
Sorry this is not possible as of now there is no such filter on the course category page .
the filter that you are trying above is for the widget .