I wanted to add an additional TAB to the notable members page under the members link. The code in the template currently looks like this for the TAB links:
I wanted to add a line below the "points" for another user group that would be defined by the user group number. Example:
This would create another tab and list only those users assigned to that group.
Code:
<ul class="tabs">
<li class="{xen:if '{$type} == "staff"', active}"><a href="{xen:link members, '', 'type=staff'}">{xen:phrase staff_members}</a></li>
<li class="{xen:if '{$type} == "messages"', active}"><a href="{xen:link members}">{xen:phrase most_messages}</a></li>
<li class="{xen:if '{$type} == "likes"', active}"><a href="{xen:link members, '', 'type=likes'}">{xen:phrase most_likes}</a></li>
<li class="{xen:if '{$type} == "points"', active}"><a href="{xen:link members, '', 'type=points'}">
</ul>
I wanted to add a line below the "points" for another user group that would be defined by the user group number. Example:
Code:
{$user.user_group_id} == 34"
This would create another tab and list only those users assigned to that group.