PDA

View Full Version : How to order groups


chriz
13th of February 2004 (Fri), 03:00
Hello,

How can I order my groups ? i just added a new one which now lists as the last group but I would like to move it to the top.

Thanks,
www.photoevents.nu

Chriz

Pekka
13th of February 2004 (Fri), 03:18
There is no setting for that in 1.5, I overlooked that but will add order editor into 1.51.

while waiting for that, alphabetical sorting by name can be done in current version by replacing in index.php (public index)

WHERE
ee_exhibition_group_{$lazylang}.ee_exhibition_grou p_id = ee_exhibition_to_group.ee_exhibition_group_id

with

WHERE
ee_exhibition_group_{$lazylang}.ee_exhibition_grou p_id = ee_exhibition_to_group.ee_exhibition_group_id
ORDER BY ee_exhibition_group_name ASC

or

WHERE
ee_exhibition_group_{$lazylang}.ee_exhibition_grou p_id = ee_exhibition_to_group.ee_exhibition_group_id
ORDER BY ee_exhibition_group_name DESC

chriz
13th of February 2004 (Fri), 03:24
Thank you,

chriz