Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Order of menu items
#4
Yeah, it is that easy, though I guess it might be a bit bothersome to do it for 180 different numbers? Give me a second to solve that for you…

Update:
OK, open up edit.php and go to line 232. This should be something like:
Code:
<option value="">-</option><option value="1">1</option> …
Select the whole line, all these options, and put this there instead:
Code:
<option value="">-</option><?php for($n=0;$n<180;$n++){echo '<option value="'.($n+1).'">'.($n+1).'</option>';} ?>
Just change the 180 into anything you want!
“Don’t forget the important ˚ (not °) on the a,” says the Unicode lover.
Help us test a key change for the core! ¶ Problems with GetSimple? Be sure to enable debug mode!
Reply


Messages In This Thread
Order of menu items - by Bee - 2010-05-19, 03:30:10
Order of menu items - by cumbe - 2010-05-19, 04:11:00
Order of menu items - by Bee - 2010-05-19, 04:22:19
Order of menu items - by Zegnåt - 2010-05-19, 23:18:04
Order of menu items - by Bee - 2010-05-19, 23:56:12



Users browsing this thread: 1 Guest(s)