Quote:
Originally Posted by HaMaDa4eVeR
if the poster from usergroup=7 i do not want to show his/her <joindate .....
i tried this in postbit_legency template
PHP Code:
<if condition="$post['usergroupid'] = 7">
Staff Member
</if>
but I want to hide the personal info if the user is not in "usergroup 7 " otherwise the personal info showing
. chk the attachment
|
Should be:
PHP Code:
<if condition="$post['usergroupid'] == 7">
Staff Member
</if>
to show "staff member" if he is in user group 7.