vForums Support > Programming & Coding :: Code Requests & Support :: > [F] [Wrighty] Add Button To Menu MOd

[F] [Wrighty] Add Button To Menu MOd - Posted By dog199200 (dog199200) on 24th Feb 08 at 1:05pm
Wrighty can i get a mod of you Add Menu Button code so that guests can see the button...plz?

Re: [Wrighty] Add Button To Menu MOd - Posted By Michael (wrighty) on 24th Feb 08 at 1:38pm
They should be able to anyway.

Re: [Wrighty] Add Button To Menu MOd - Posted By dog199200 (dog199200) on 24th Feb 08 at 5:13pm
oops spelling error i mean cant {Smile}

Edit: Also I just have to say your avatar cracks me up, it always lands on the ones the best fits the topic {Smile} sorry i know its random.

Re: [Wrighty] Add Button To Menu MOd - Posted By Michael (wrighty) on 24th Feb 08 at 5:45pm
It's ok! {Smile}


I'll get to this after I'm back! {Cheesy}

Re: [Wrighty] Add Button To Menu MOd - Posted By dog199200 (dog199200) on 24th Feb 08 at 6:04pm
ok i'll be waiting

Re: [Wrighty] Add Button To Menu MOd - Posted By Michael (wrighty) on 24th Feb 08 at 8:03pm
Text or image one?

Re: [Wrighty] Add Button To Menu MOd - Posted By dog199200 (dog199200) on 24th Feb 08 at 10:46pm
image

Re: [Wrighty] Add Button To Menu MOd - Posted By Michael (wrighty) on 25th Feb 08 at 6:25pm
Try this:

Code:
 
  1. <script>
  2. /*Add Menu Buttons
  3. Created By Wrighty
  4. support.virtualforums.co.uk*/
  5.  
  6. var menu = document.getElementById('welcome_table').getElementsByTagName('td')[2];
  7.  
  8. function do_menu(img_src,link, guest){
  9.     if(guest){
  10.         menu.innerHTML+= " :: <a href="+link+"><img src='"+img_src+"' border=0></a>";
  11.     }else{
  12.         if(vf_username != 'guest'){
  13.             menu.innerHTML+= " :: <a href="+link+"><img src='"+img_src+"' border=0></a>";
  14.         }
  15.     }
  16. }
  17. do_menu('Image Link','Link to page', true);
  18. </script>
 



true means that it will be shown to guests as well as members.
false means that it WONT be shown to guests.

(Untested)

Re: [Wrighty] Add Button To Menu MOd - Posted By dog199200 (dog199200) on 25th Feb 08 at 11:02pm
ok that work, ty