ashkir Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/W9M-tej.gif) Posts: 1,159 Status: Offline Gender: Male Location: Cali! Age: 36 Joined:
pmskypemsnyahoo | | [F] Display for certain groups (6th Jan 08 at 5:22am UTC) | | Hiya everyone. I'll make each of my requests different threads. =)
First one. I would like a code to display certian text/stuff to guests. And certain text/stuff to members. Why? I'm using this for a custom menu. ^_^
Thanks. | |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | | Re: Display for certain groups (6th Jan 08 at 7:38am UTC) | | Hiya everyone. I'll make each of my requests different threads. =)
First one. I would like a code to display certian text/stuff to guests. And certain text/stuff to members. Why? I'm using this for a custom menu. ^_^
Thanks.
 Code: - <span id="guestHidden">
- GUEST STUFF HERE
- </span>
- <span id="memberHidden">
- MEMBER STUFF HERE
- </span>
-
- <script type="text/javascript">
- <!--
- //Member/Guest Stuff
-
- if(vf_username=="guest"){
- document.write(document.getElementById("guestHidden").innerHTML);
- }
- else{
- document.write(document.getElementById("memberHidden").innerHTML);
- }
- //-->
- </script>
Have fun. | |
rroll.to— Shorten a link, rickroll your friends. |
|
ashkir Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/W9M-tej.gif) Posts: 1,159 Status: Offline Gender: Male Location: Cali! Age: 36 Joined:
pmskypemsnyahoo | | Re: Display for certain groups (6th Jan 08 at 7:59am UTC) | | | Thanks Cr0w! | |
|
ashkir Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/W9M-tej.gif) Posts: 1,159 Status: Offline Gender: Male Location: Cali! Age: 36 Joined:
pmskypemsnyahoo | | Re: Display for certain groups (6th Jan 08 at 11:08am UTC) | | Okay. I'm using it now. Its displaying both guest and member stuff in FF and IE for me. And it displays them both twice.
 Code: - <span id="guestHidden">
- <font color="#FFFFFF"><b>Direction</b></font><br /><a href="action/register/" style="text-decoration: none"><font color="#FFFFFF">Become</font></a><br /><a href="action/login/" style="text-decoration: none"><font color="#FFFFFF">Login</font></a><hr width="80%" />
- </span>
- <span id="memberHidden">
- <font color="#FFFFFF"><b>The World</b></font><br /><a href="board/Edek/" style="text-decoration: none"><font color="#FFFFFF">Edek</font></a><br /><a href="board/Kiu" style="text-decoration: none"><font color="#FFFFFF">Kiu</font></a><br /><a href="board/Zinr" style="text-decoration: none"><font color="#FFFFFF">Zinr</font></a><br /><a href="board/Kaso/" style="text-decoration: none"><font color="#FFFFFF">Kaso</font></a><br /><a href="board/general/" style="text-decoration: none"><font color="#FFFFFF">OoC</font></a><br /><hr width="80%" /><font color="#FFFFFF"><b>You</b></font><br /><a href="action/view_profile/" style="text-decoration: none"><font color="#FFFFFF">Profile</font></a><br /><a href="/action/members/" style="text-decoration: none"><font color="#FFFFFF">Members</font></a><br /><a href="action/pm/" style="text-decoration: none"><font color="#FFFFFF">Letters</font></a><br /><a href="action/logout/" style="text-decoration: none"><font color="#FFFFFF">Logout</font></a><hr width="80%" />
- </span>
-
-
-
-
- <script type="text/javascript">
- <!--
- //Member/Guest Stuff
-
- if(vf_username=="guest"){
- document.write(document.getElementById("guestHidden").innerHTML);
- }
- else{
- document.write(document.getElementById("memberHidden").innerHTML);
- }
- //-->
- </script>
| |
|
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: Display for certain groups (6th Jan 08 at 11:19am UTC) | |  Code: - <span id="guestHidden" style="display:none">
- <font color="#FFFFFF"><b>Direction</b></font><br /><a href="index.cgi?page=apply" style="text-decoration: none"><font color="#FFFFFF">Become</font></a><br /><a href="index.cgi?action=login" style="text-decoration: none"><font color="#FFFFFF">Login</font></a><hr width="80%" />
- </span>
- <span id="memberHidden" style="display:none">
- <font color="#FFFFFF"><b>The World</b></font><br /><a href="index.cgi?board=char" style="text-decoration: none"><font color="#FFFFFF">Characters</font></a><br /><a href="" style="text-decoration: none"><font color="#FFFFFF">Edek</font></a><br /><a href="index.cgi?board=Kiu" style="text-decoration: none"><font color="#FFFFFF">Kiu</font></a><br /><a href="" style="text-decoration: none"><font color="#FFFFFF">Zinr</font></a><br /><a href="" style="text-decoration: none"><font color="#FFFFFF">Kaso</font></a><hr width="80%" /><font color="#FFFFFF"><b>You</b></font><br /><a href="index.cgi?action=modifyprofile" style="text-decoration: none"><font color="#FFFFFF">Profile</font></a><br /><a href="index.cgi?action=members" style="text-decoration: none"><font color="#FFFFFF">Members</font></a><br /><a href="index.cgi?action=pms" style="text-decoration: none"><font color="#FFFFFF">Letters</font></a><br /><a href="index.cgi?action=logout" style="text-decoration: none"><font color="#FFFFFF">Logout</font></a><hr width="80%" />
- </span>
-
- <script type="text/javascript">
- <!--
- //Member/Guest Stuff
-
- if(vf_username=="guest"){
- document.write(document.getElementById("guestHidden").innerHTML);
- }
- else{
- document.write(document.getElementById("memberHidden").innerHTML);
- }
- //-->
- </script>
Cr0w didn't hide them! | |
|
ashkir Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/W9M-tej.gif) Posts: 1,159 Status: Offline Gender: Male Location: Cali! Age: 36 Joined:
pmskypemsnyahoo | | Re: Display for certain groups (6th Jan 08 at 11:36am UTC) | | Thanks Wrighty. Testing now. ^_^
Edit: It works! =D My site is nearly complete =D Then almost ready to leave Alpha mode to got o BETA. ^_^ | |
|
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: Display for certain groups (6th Jan 08 at 11:51am UTC) | | Happy it worked! | |
|