RenFromPenn Posted September 25, 2005 Posted September 25, 2005 How can I make the product page display the products by price instead of by name, which appears to be the default?
Guest Posted September 26, 2005 Posted September 26, 2005 open your catalog\index.php locate these lines: if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; replace with this if ($column_list[$i] == 'PRODUCT_LIST_PRICE') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by p.products_price";
Recommended Posts
Archived
This topic is now archived and is closed to further replies.