View Single Post
  #5  
Old 7th December 2011, 20:45
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
post your stdhead mate. that code what joos showed you is what you need to add. you need to add

Code:
if(isset($CURUSER)) {
above the block code you wan to hide from guest/login

and
Code:
}
goes below the block code so your wrap it around. only current users will see (registered)

so your categories will be from

Code:
categories_block("Cats");
to

Code:
if(isset($CURUSER)) {
categories_block("Cats");
}
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details

Last edited by daffy; 8th December 2011 at 01:50.
Reply With Quote