XF 1.2 Add a menu item under, say, Members

jauburn

Well-known member
How do I wiggle a menu item under, say, the Members tab menu?

Did a search but found no simple answer.

I tried inserting something into the Navigation template, but for some reason it didn't show up.

Thanks!
 
The navigation template is the correct template to edit.

Post your code, including the surrounding lines.

Code:
<xen:hook name="navigation_tabs_members">
                        <li><a href="{xen:link members}">{xen:phrase notable_members}</a></li>
                        <xen:if is="{$xenOptions.enableMemberList}"><li><a href="{xen:link members/list}">{xen:phrase registered_members}</a></li></xen:if>
                        <li><a href="{xen:link online}">{xen:phrase current_visitors}</a></li>
                        <xen:if is="{$xenOptions.enableNewsFeed}"><li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li></xen:if>
                        <xen:if is="{$xenOptions.enableNewsFeed}"><li><a href="http://poetrycircle.com/forum/widget-pages/activitywall/">Activity Wall</a></li></xen:if>
                        <li><a href="https://www.google.com/calendar/embed?src=poetrycircleforum%40gmail.com&ctz=America/New_York">Front Page Calendar</a></li>
                        <xen:comment><xen:if is="{$xenOptions.enableNewsFeed}"><li><a href="http://poetrycircle.com/forum/widget-pages/revolvermap/">Revolver Map</a></li></xen:if></xen:comment>

                    </xen:hook>

The "Front Page Calendar" isn't showing.
 
Top Bottom