dog199200 Guest | [F] [Wrighty] Add Button To Menu MOd (24th Feb 08 at 1:05pm UTC) | | Wrighty can i get a mod of you Add Menu Button code so that guests can see the button...plz? | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 1:38pm UTC) | | They should be able to anyway. | |
|
dog199200 Guest | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 5:13pm UTC) | | oops spelling error i mean cant
Edit: Also I just have to say your avatar cracks me up, it always lands on the ones the best fits the topic sorry i know its random. | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 5:45pm UTC) | | It's ok!
I'll get to this after I'm back! | |
|
dog199200 Guest | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 6:04pm UTC) | | ok i'll be waiting | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 8:03pm UTC) | | Text or image one? | |
|
dog199200 Guest | Re: [Wrighty] Add Button To Menu MOd (24th Feb 08 at 10:46pm UTC) | | image | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: [Wrighty] Add Button To Menu MOd (25th Feb 08 at 6:25pm UTC) | | Try this:
 Code: - <script>
- /*Add Menu Buttons
- Created By Wrighty
- support.virtualforums.co.uk*/
-
- var menu = document.getElementById('welcome_table').getElementsByTagName('td')[2];
-
- 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','Link to page', true);
- </script>
true means that it will be shown to guests as well as members. false means that it WONT be shown to guests.
(Untested) | |
|
dog199200 Guest | Re: [Wrighty] Add Button To Menu MOd (25th Feb 08 at 11:02pm UTC) | | ok that work, ty | |
|