SOLVED:
save you some reading.
if anyone needs an if condition similar it turned out to be:
Code:
<if condition="$show['registerbutton'] OR ($vboptions[someOption] == 1 AND ($vboptions[someOption] == 1 AND is_member_of($bbuserinfo, 6)))">
My if condition is currently as follows
Code:
<if condition="$show['registerbutton'] OR $vboptions[someOption] == 1">
im trying to make it an OR AND without doing an else so i dont have to repeat the code inside each block
kind of like
Code:
<if condition="$show['registerbutton'] OR $vboptions[someOption] == 1 AND $show['admin']">
so with the option off guests see it (well anyone who can see the register button can see it)
with the option on, guests can still see it but now only admins can too.
is this possible?