Wrighty Very Senior Member
    
![[Avatar]](http://av.wrighty.info/av.png) Posts: 3,269 Status: Offline Gender: Male Joined: 16th Dec 2007
| | Reorder Menu (17th Apr 08 at 9:15pm) | | This code will allow you to reorder the menu buttons. It's rather complex to modify so make sure you read carefully. First the code:
<script> /*Reorder Menu Coded By Wrighty Do Not: Rip, Repost or Claim*/
var a = [ ["1","0","4","5","6","3","2"], //Admin Menu ["1","0","4","5","3","2"], //Member Menu ["0","3","4","1","2"] //Guest Menu ];
var l = []; var x = get('menu_buttons','id').firstChild.firstChild.firstChild.firstChild; var y = ''; for(a=0;a<x.firstChild.getElementsByTagName('a').length;a++){ l.push('<a href="'+x.firstChild.getElementsByTagName('a')[a]+'">'+x.getElementsByTagName('a')[a].innerHTML+'</a>'); } var n = (x.innerHTML.match(/\/admin\//))? a[0] : (vf_username == 'guest')? a[2] : a[1]; for(a=0; a<n.length-1;a++){ y += l[n[a]] y += ' :: '; } y += l[n[n.length-1]]; x.firstChild.innerHTML = y </script>
Global Footer
This part is the menu order for staff with access to the admin panel. The following numbers refer to the different buttons. Omitting a number, will simply omit that button. 0 - Home 1 - Help 2 - Search 3 - Profile 4 - Admin 5 - Members 6 - Logout
This part is the menu order for normal members. The following numbers refer to the different buttons. Omitting a number, will simply omit that button. 0 - Home 1 - Help 2 - Search 3 - Profile 4 - Members 5 - Logout
This part is the menu order for guests. The following numbers refer to the different buttons. Omitting a number, will simply omit that button. 0 - Home 1 - Help 2 - Search 3 - Login 4 - Register | | Back to Top - Link to Post - Last edit: 17th Apr 08 at 9:21pm by Wrighty |
 |
|