Modifying the Account Menu Dropdown

Neil E.

Active member
xenforo67.webp

I'd like to remove the avatar, heading and muted text. I might also want to change the list or it's order. Can any work be done using templates or is this one big lump of JS? How would I proceed?
 
I think you'll be wanting to look into the navigation_visitor_tab template and look for AccountMenu

removing the following will remove the parts your wanting to remove.

Code:
                <xen:avatar user="$visitor" size="m" class="NoOverlay plainImage" title="{xen:phrase view_your_profile}" />
               
                <h3><a href="{xen:link members, $visitor}" class="concealed" title="{xen:phrase view_your_profile}">{$visitor.username}</a></h3>
               
                <xen:if hascontent="true"><div class="muted"><xen:contentcheck>{xen:helper usertitle, $visitor}</xen:contentcheck></div></xen:if>

The rest you want to modify is below that.
 
Top Bottom