inherit
16846
0
Nov 19, 2012 15:20:20 GMT -8
Chris
3,036
December 2003
cddude
|
Post by Chris on Jan 3, 2013 15:41:33 GMT -8
1) IDs. Auto-generate some form of a unique ID for each menu link. For example, if name is "Home," then "menu-home" would be the ID. In the event of conflicting names (yes, people will do this), append an int (the ability to assign an ID would be even more preferred. ) 2) The ability to select which groups to show a link too. I want to show "logout" only to logged in users, as an example.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Jan 5, 2013 11:41:25 GMT -8
What I did for number 1 was editing the template and adding and id the li in the menu and the id equaled the menu name. I used a template variable for that.
The 2nd one, I second.
|
|
inherit
16846
0
Nov 19, 2012 15:20:20 GMT -8
Chris
3,036
December 2003
cddude
|
Post by Chris on Jan 5, 2013 12:06:42 GMT -8
Ah. id wasn't listed in the available attributes, so I assumed it wasn't there. (Those available attributes are quite inaccurate sometimes. ) However, for custom menu items, the IDs are integers.... hardly friendly to work with. I'd still prefer them to let me assign my own IDs.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Jan 5, 2013 18:13:36 GMT -8
This is what I did. I gave the li id="nav-menu-$[navigation.menu.name]" so it takes the name of the menu as the id. Hope that helps.
|
|