#1 2003-10-26 13:39:02

Bernd
Guest

Order Pictures By Name!

I want my pictures sorted by Name. In default new uploaded Pictures are displayed first. How can i make that possible ? 

 

#2 2003-10-26 14:55:19

bisounours
Member
Lausanne/Suisse
2002-09-09
105

Re: Order Pictures By Name!

Hello,
i know you can change it at  include/config.inc.php

// How to change the order of display for images in a category ?
//
// You have to modify $conf['order_by'].
// There are several fields that can order the display :
//  - date_available : the date of the adding to the gallery
//  - file : the name of the file
// Once you've chosen which field(s) to use for ordering,
// you must chose the ascending or descending order for each field.
// examples :
// 1. $conf['order_by'] = " order by date_available desc, file asc";
//    will order pictures by date_available descending & by filename ascending
// 2. $conf['order_by'] = " order by file asc";
//    will only order pictures by file ascending
//    without taking into account the date_available
$conf['order_by'] = ' ORDER BY date_available DESC, file ASC';

Christophe

Offline

 

#3 2003-10-26 15:54:21

Bernd
Guest

Re: Order Pictures By Name!

Hello Christophe,

that's exactly what i needed, thanx for the help !!  :D 

 

#4 2003-10-26 15:57:04

bisounours
Member
Lausanne/Suisse
2002-09-09
105

Re: Order Pictures By Name!

Hello Bernd,
no problem, if i can help you... :-)

Christophe

Offline

 

#5 2003-11-13 17:30:27

Chimp
Guest

Re: Order Pictures By Name!

Thank you this was very useful

 

Board footer

Powered by FluxBB