Hello,
I want to remove the "Buddy / Ignore Lists" link from an specific user group's CP.
Lets say for example I want that user group id 17 does not show the "Buddy / Ignore Lists" link in the CP when users from that user group view their CP.
I know how to do it by user id. Example:
Template: USERCP_SHELL (around line: 139)
HTML Code:
<if condition="$bbuserinfo[userid] != 123456">
<tr>
<td class="$navclass[buddylist]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editlist">$vbphrase[buddy_ignore_lists]</a></td>
</tr>
</if>
I tried using $bbuserinfo[usergroup], but it didn't worked.
HTML Code:
<if condition="$bbuserinfo[usergroup] != 17">
<tr>
<td class="$navclass[buddylist]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editlist">$vbphrase[buddy_ignore_lists]</a></td>
</tr>
</if>
What's the correct usergroup id param for doing this?
Thanks!