Skip to content

Commit

Permalink
category product order by price change to order by final_price
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Sep 20, 2016
1 parent 9088d4a commit 273d88e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/appfront/config/modules/Catalog.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
],
'low-to-high' => [
'label' => '$ Low to High',
'db_columns'=> 'price',
'db_columns'=> 'final_price',
'direction' => 'asc',
],
'high-to-low' => [
'label' => '$ High to Low',
'db_columns'=> 'price',
'db_columns'=> 'final_price',
'direction' => 'desc',
],
],
Expand Down

0 comments on commit 273d88e

Please sign in to comment.