Quote:
Originally Posted by Dr.CustUmz
one too many ORs in there but i gave it a shot like
Code:
<if condition="$show['registerbutton'] OR ($vboptions[someOption] == 1 AND $show['admin'])">
but it didnt work =/
|
The other OR is needed with the code I posted.
Give exactly who should view what under what conditions.
To break it down..
Code:
<if condition="$show['registerbutton'] // SHOW IF TRUE
OR ($vboptions[someOption] == 1 // SHOW TO THIS OPTION
OR ($vboptions[someOption] == 1 AND $show['admin']))"> // SHOW IF BOTH THIS OPTION AND SHOW ADMIN ARE TRUE