JoxWayne Posted July 5, 2006 Posted July 5, 2006 Hallo, is it possible to change the default order criteria of the product listing page? In my shop, the standard criteria is product name and I wish to set it to Item-No. Is there a possibility to handle it? Jox
Guest Posted July 5, 2006 Posted July 5, 2006 you change it in the catalog\index.php Change if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; break; } to: if ($column_list[$i] == 'PRODUCT_LIST_MODEL') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by p.products_model"; break; }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.