View Single Post
  #4 (permalink)  
Old 18-May-2004, 06:12 AM
Darkling
Darkling's Avatar
Darkling is offline
 Founder
 Karma +/- Power: 68
 Karma: Darkling is a name known to allDarkling is a name known to allDarkling is a name known to allDarkling is a name known to allDarkling is a name known to allDarkling is a name known to all (614)
 
 Local Time: 06:43 AM
 Local Date: 30-Aug-2008
 Join Date: May 2004
 Posts: 985
 Blog Entries: 1
Default Re: Trophy Cabinet Move

Quote:
Originally Posted by kall
Well, simple as that then!

(I has $foruminfo['forumid'] for some reason....hey, what is the conditional for userid? Like 'I want to show something, but not to/for a specific user'?)
To only show something to a specific user:

Code:
<if condition="$bbuserinfo[userid] == X">
	Your code goes here
</if>
To only show something about a specific user is more complicated as it changed depending on where it is.
So, here is the most common.

To only something about a specific user in a post related context
e.g. in postbits:

Code:
<if condition="$post[userid] == X">
	Your code goes here
</if>

Darkling's Signature:
Reply With Quote