I've been trying to figure out a way to re-order a menu that we have so it will be alphabetical. This menu has about 500 items and is strictly used for URL structure, but we have another display menu that will be using MenuLinks and we have to choose all of those from a dropdown in the backend and it's extremely hard to figure out. I've been trying to create a mysql query that will do it but have had no avail.
along the lines of
UPDATE jos_menu set ordering = ordering+1 WHERE menutype = 'menu-name' ORDER BY name ASC
but of course it doesn't work. Just curious if anyone has figured this out.
Maybe if i manipulate the admin to display the dropdown menu (when editing a menu item) to display alphabetically, which is kind of does for the Level 0 items but not its children.