*

Recent

Author Topic: Categories name position  (Read 4095 times)

maverick

  • Newbie
  • *
  • Posts: 34
  • Force: +0/-1
Categories name position
« on: February 01, 2009, 02:58:42 AM »
How i can change possition example last categorie that i add goes bottom of menu.. how i can change possition to top?

Danny

  • Newbie
  • *
  • Posts: 41
  • Force: +5/-0
Re: Categories name position
« Reply #1 on: February 01, 2009, 07:16:12 AM »
open your header.php file, then find:
Code: [Select]
$rci = $db->query('SELECT * FROM dd_categories');

Replace with: (ordering by name)
Code: [Select]
$rci = $db->query('SELECT * FROM dd_categories ORDER BY name');
You could either order them by ID such as:
Code: [Select]
$rci = $db->query('SELECT * FROM dd_categories ORDER BY ID');

thanks,
Danny.

maverick

  • Newbie
  • *
  • Posts: 34
  • Force: +0/-1
Re: Categories name position
« Reply #2 on: February 03, 2009, 02:11:58 PM »
thank you!  ;)