IGNORE ORIGINAL POST
--------------- Added [DATE]1456517268[/DATE] at [TIME]1456517268[/TIME] ---------------
Quote:
Originally Posted by Dr.CustUmz
i used
Code:
<if condition="$show['registerbutton'] OR ($vboptions[someOption] == 1 OR ($vboptions[someOption] == 1 AND $show['admin']))">
but normal members can still see the content...
|
OK, one of these is what you want then...
Code:
<if condition="$show['registerbutton'] AND ($vboptions[someOption] == 1 OR ($vboptions[someOption] == 1 AND $show['admin']))">
Code:
<if condition="$show['registerbutton'] AND (($vboptions[someOption] == 1 AND !$show['admin']) OR ($vboptions[someOption] == 1 AND $show['admin']))">
If neither on of those work, then I really don't understand what you're trying to do.