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.
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.![]()
Thanks Cr0w!
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>
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!![]()
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. ^_^
Happy it worked!![]()