Hello,
Is their a inbuilt feature to arrange courses on domain-name/all-courses page by their price (low to high and vice versa) ??
If not, below is what I have reached so far in plugins/vibe-course-modules/includes/bp-course-filters.php in Switch case but doesn't seem to work as expected :
#######################################
case 'alphabetical':
$args['orderby'] = 'title';
$args['order'] = 'ASC';
break;
case 'h2l':
$args['orderby'] = 'price';
$args['order'] = 'DESC';
break;
case 'l2h':
$args['orderby'] = 'price';
$args['order'] = 'ASC';
break;
#######################################
Please suggest.