Rearranging courses as per their prices (Example: low to high and vice versa)

Home Forums Chit Chat WPLMS customizations Rearranging courses as per their prices (Example: low to high and vice versa)

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #12012
    Anupam Oza
    Participant
    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.
Viewing 1 post (of 1 total)
  • The topic ‘Rearranging courses as per their prices (Example: low to high and vice versa)’ is closed to new replies.