If it's usergroup 9 you use for your subscribers, you can use this:
Code:
<if condition="$bbuserinfo[usergroupid]!=9">
<!-- Non-Subscriber Stuff Here -->
</if>
If you use a secondary group for your subscribers, use this:
Code:
<if condition="!is_member_of($bbuserinfo, 9)">
<!-- Non-Subscriber Stuff Here -->
</if>
The second block of code using the is_member_of function will work for both primary and secondary groups.
If you were wanting one block of code for subscribers and one for non-subscribers, use one of the following:
Code:
<if condition="$bbuserinfo[usergroupid]!=9">
<!-- Non-Subscriber Stuff Here -->
<else />
<!-- Subscriber Stuff Here -->
</if>
Code:
<if condition="!is_member_of($bbuserinfo, 9)">
<!-- Non-Subscriber Stuff Here -->
<else />
<!-- Subscriber Stuff Here -->
</if>