Quote:
Originally Posted by rabbits slayer
Without going through 80+ pages, my category sorting is by date added...any help on getting it to A to Z?
Sort by Weight is already set to off.
|
Do you mean your file listing is by date added? I don't think the categories even have a date added field.
If you want to change the default order for how the files are listed, in downloads.php around line 291 -
FIND:
PHP Code:
if ($sortfield == '')
{
$sortfield = 'date';
}
CHANGE TO:
PHP Code:
if ($sortfield == '')
{
$sortfield = 'name';
}