 |
 |
 |
 |
 |
| Author |
Message |
yello
Joined: 08 Nov 2005 Posts: 27
|
|
Categories Position Problem |
|
I would like to choose the position of my categories. For example i want the 5th category to be the first in the list and the first to become 5th. Now the listing is based on id's. Is it possible somehow to do that?
|
|
| Wed Apr 26, 2006 9:17 pm |
|
 |
Guest
|
|
|
Please login to hide the ads.
|
|
|
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2801 Location: Germany |
|
|
|
You can add an additional row to the categories table with phpmyadmin, call it for example "order". After that you give each category a number according to the desired position.
Then you open inc/functions.inc.php and change this (about line 643):
 |  | foreach ($sql->select(array('table' => 'categories', 'where' => array("parent = $id"), 'orderby' => array('id', 'ASC'))) as $row){ |
to this:
 |  | foreach ($sql->select(array('table' => 'categories', 'where' => array("parent = $id"), 'orderby' => array('order', 'ASC'))) as $row){ |
So the categories should show by "order" instead of "id".
|
|
| Wed Apr 26, 2006 9:46 pm |
|
 |
yello
Joined: 08 Nov 2005 Posts: 27
|
|
|
|
ok
and how can i dynamically change the value of this new field from admin panel?
I am not a php expert u see 
|
|
| Wed Apr 26, 2006 9:54 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2801 Location: Germany |
|
|
|
 |  | ok
and how can i dynamically change the value of this new field from admin panel? |
Either you modify categories.mdu or you need a plugin.
|
|
| Wed Apr 26, 2006 10:13 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|
 |
 |
 |
|