vForums Support :: Programming & Coding :: Database of Codes/Hacks/Mods :: View Topic - Add Menu Buttons v2 |  |
| Wrighty Very Senior Member
    
![[Avatar]](http://av.wrighty.info/av.png) Posts: 3,269 Status: Offline Gender: Male Joined: 16th Dec 2007
| | Add Menu Buttons v2 (27th Apr 08 at 8:38pm) | | This version allows you to choose whether the button is shown to guests or not.
just add 'false' to not show it to members.
<script> /*Add Menu Buttons Created By Wrighty support.virtualforums.co.uk*/
var menu = get('menu_buttons','id').getElementsByTagName('font')[0];
function do_menu(img_src,link, guest){ if(guest){ menu.innerHTML+= " .<a href="+link+"><img src='" +img_src+"' border=0> </a>"; }else{ if(vf_username != 'guest'){ menu.innerHTML+= " .<a href="+link+"><img src='"+img_src+"' border=0> </a>"; } } } do_menu('IMAGE LINK','URL TO LINK TO', false); </script>
Global header | | Back to Top - Link to Post |
 |
| Ash. Full Member
  
![[Avatar]](http://needaear.com/a/alwaysloveyou.gif) Posts: 477 Status: Offline Joined: 5th Jan 2008
| | Dwight Senior Member
   
![[Avatar]](http://i25.photobucket.com/albums/c51/dog199200/Naruto/RockLeeAvi.gif) I'm an evil turkey!!! Posts: 994 Status: Offline Gender: Male Location: Behind You Age: 16 Joined: 21st Jan 2008
| | Re: Add Menu Buttons v2 (15th Oct 08 at 6:10am) | | I figured I would post this before it had been requested. This version of the code works the same way, by setting is guests can view the link or not, but this one is to be used with a text menu instead of an image menu.
Just like above, set it to false if you do not want guests to see the link, but true if you want everyone to see the link.
 Code: - <script>
- /*Add Menu Buttons
- Created By Wrighty
- support.virtualforums.co.uk*/
-
- var menu = document.getElementById('menu_buttons').getElementsByTagName('font')[0];
-
- function do_menu(a_text,link, guest){
- if(guest){
- menu.innerHTML+= " :: <a href="+link+">"+a_text+"</a>";
- }else{
- if(vf_username != 'guest'){
- menu.innerHTML+= " :: <a href="+link+">"+a_text+"</a>";
- }
- }
- }
- do_menu('LINK NAME','LINK URL', false);
- </script>
Global header | | Back to Top - Link to Post - Last edit: 15th Oct 08 at 6:10am by Dwight |


 |
| |
 |  |
|