vForums Support Banner Image



 

Welcome Guest! Please Login or Register
vForums Support :: Programming & Coding :: Database of Codes/Hacks/Mods :: View Topic - Reorder Menu
Printable View
Wrighty
Very Senior Member
*****

[Avatar]

Posts: 3,269
Status: Offline
Gender: Male
Joined: 16th Dec 2007
Reputation: 16%  



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

Image
Graystorm
New Member
*

Posts: 20
Status: Offline
Joined: 15th Jan 2008
Reputation: 0%  



Re: Reorder Menu (18th Jul 08 at 3:03pm)
Hmmmm. This isn't working for me. Smiley
Back to Top - Link to Post - Last edit: 18th Jul 08 at 3:25pm by Graystorm
Printable View

All times are GMT+1 :: The current time is 7:46pm
Page generated in 0.5647 seconds
with 15 Database Queries and 5 cache files
This Forum is Powered By vForums
Create a Forum for Free