If you want just certain usergroups to know last activity, use code like this:
<if condition="is_member_of($bbuserinfo,6)"><div>$vbph rase[join_date]: $post[lastseen_date] $post[lastseen_time]</div></if>
In this <if condition="is_member_of($bbuserinfo,6)"> number 6 represents usergroup that has access to this information. 6 is default for administrators. If you want to enable this for moderators and supermoderators too, use:
<if condition="is_member_of($bbuserinfo,5,6,7)">
|