View Single Post
  #7  
Old 08-21-2010, 05:19 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Sort by "Date Added" in the Sort by bar...

Not tested, make sure you backup the file first:

you can try this - open include/search.tpl, find
Code:
default: $sort_string = "$sql_tbl[products].product";
and replace with
Code:
default: $sort_string = "$sql_tbl[products].add_date $direction";
Just below it find
Code:
else { $sort_string = "$sql_tbl[products].product"; }
and replace with
Code:
else { $sort_string = "$sql_tbl[products].add_date DESC"; }
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote