vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Guest Can't View Profile

[F] Guest Can't View Profile - Posted By CåñåÐå™ (canada) on 6th Apr 08 at 12:22am
Would it be possible to get an code to stop guest from viewing profiles please. {Smile}

Re: Guest Can't View Profile - Posted By Marc (cr0w) on 6th Apr 08 at 1:03am
Just so you know, this code will not be foolproof as they can easily just add /noheaders/1/ onto the URL.

Code:
 
  1. <script>
  2. <!--
  3. /* Stop Guests From Viewing Profiles */
  4.  
  5. var tbl = get('table','tag');
  6. if(location.href.match(/action\/view_profile\//) || location.search.match(/action=view_profile/)){
  7.     for(t=6;t<tbl.length;t++){
  8.         tbl[t].style.display = 'none';
  9.     }
  10.     document.write('<table width="'+vf_width+'" class="border" align="center" cellspacing="1" cellpadding="3"><tr><td align="center" class="title1">An Error Has Occurred</td></tr><tr><td class="window1">You must be logged in to view user profiles.</td></tr></table>');
  11. }
  12. //-->
  13. </script>
 


Main footer. {Smile}

Re: Guest Can't View Profile - Posted By CåñåÐå™ (canada) on 6th Apr 08 at 2:03am
Hey Marc is not working my friend .

http://tropolis.virtualforums.co.uk/

I've got it in the very top of the main footer .(all skins)

Re: Guest Can't View Profile - Posted By Marc (cr0w) on 6th Apr 08 at 2:19am
Sorry, recopy. {Smile}

Re: Guest Can't View Profile - Posted By CåñåÐå™ (canada) on 6th Apr 08 at 2:45am
Thank you Marc its working fine now {Grin} .

Re: Guest Can't View Profile - Posted By Marc (cr0w) on 6th Apr 08 at 2:56am
No worries. {Smile}