XF 2.2 How to add custom navigation within account details?

jromaine

Active member
Hey guys,
I'm hoping this is possible, I'v searched around and looked in the forum but I can't seem to find an answer to this. Is it possible to add a custom navigation item or menu within the account details page? I need to add a link to allow members to manage billing. Thanks.

1702704878536.webp
 
In the template account_visitor_menu add a link into the account links list where you want it, e.g.

Rich (BB code):
<!--[XF:menu_separator:below_content_links]-->
    <hr class="menu-separator" />

    <ul class="listPlain listColumns listColumns--narrow listColumns--together">
        <!--[XF:account_links:top]-->
        <li><a href="/your_link/" class="menu-linkRow">Text for link</a></li>
        <li><a href="{{ link('account/account-details') }}" class="menu-linkRow">{{ phrase('account_details') }}</a></li>
        <li><a href="{{ link('account/security') }}" class="menu-linkRow">{{ phrase('password_and_security') }}</a></li>
        <li><a href="{{ link('account/privacy') }}" class="menu-linkRow">{{ phrase('privacy') }}</a></li>
 
Last edited:
Top Bottom