XF 1.2 How to add extra tab on notable members page?

TheBigK

Well-known member
I'd like to display members of a specific custom user group (bloggers) in a special tab on the notable members page, at the end. My guess is that I'll have to find -

PHP:
<li class="{xen:if '{$type} == "staff"', active}"><a href="{xen:link members, '', 'type=staff'}">{xen:phrase staff_members}</a></li>

and below, it add -

PHP:
<li class="{xen:if '{$type} == "bloggers"', active}"><a href="{xen:link members, '', 'type=bloggers'}">MY TAB TITLE</a></li>

I've no idea what 'bloggers' should be replaced with. Also, what should I enter below to actually display the bloggers list.

Would appreciate responses :)
 
Top Bottom