staff list

Help Tab does show alist of staff, I couldn't find to remove staff lists on navigation template. See below.

Code:
      <xen:hook name="navigation_tabs_help">
                        <li><a href="{xen:link help/smilies}">{xen:phrase smilies}</a></li>
                        <li><a href="{xen:link help/bb-codes}">{xen:phrase bb_codes}</a></li>
                        <li><a href="{xen:link help/trophies}">{xen:phrase trophies}</a></li>
                        <li><a href="{xen:link help/cookies}">{xen:phrase cookie_usage}</a></li>
                    </xen:hook>
                    </ul>
 
It must be from an addon. Find and disable the appropriate addon.

Or if you want to leave the addon enabled then you can find and disable the specific listener for that nav link. Enable debug mode by adding this line to your library/config.php file:

Code:
$config['debug'] = 1;

Then look for template_hook listeners for the addon in question:

Admin CP -> Development -> Code Event Listeners
 
Top Bottom