You are here:  » Changing default sort

Support Forum



Changing default sort

Submitted by babyuniverse on Sat, 2008-03-15 23:29 in

Hi,

Can you please advise where I would change the default search order, to show highest price first?
This would be on the first page and on the merchant page

Thanks
Richard

Submitted by support on Sun, 2008-03-16 10:09

Hi Richard,

In search.php, look for the following code near the top (line 8 in the distribution):

$sort = (isset($_GET["sort"])?$_GET["sort"]:"relevance");

For highest price first as the default, change this to:

$sort = (isset($_GET["sort"])?$_GET["sort"]:"priceDesc");

Cheers,
David.