Great!
I finally stumbled on to this suggestion (after days or reading and playing) and it seems to work with my very limited skills
I would like to have a condition of viewing the page, or at least some of the pages that I present with this. Neither of the statements below work for me, can you tell me what I am missing?
<if condition="is_member_of($bbuserinfo,5,6,7,9,10,13) ">
$vbphrase[not_yet_full_member]
<else/>
Welcome Back to the forums!
</if>
<?php
if condition="is_member_of($bbuserinfo,5,6,7,9,10,13) " {
?>
This is for a member<br>
<?php
} else {
?>
This is for a guest<br>
<?php
}
?>
Thanks