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>