XF 1.4 Remove Username Dropdown Menu

Amaury

Well-known member
A while ago I replaced the username in the username dropdown menu with a new phrase I created called Control Panel. However, I want to customize it further and remove the dropdown menu and instead have Control Panel be a direct link to /account/.

upload_2014-12-3_13-25-59.webp

How would I accomplish this?
 
I figured it out.

In the navigation_visitor_tab template, I changed this:

Code:
<a href="{xen:link account}" class="navLink accountPopup NoPopupGadget" rel="Menu">{xen:phrase your_account}

To this:

Code:
<a href="{xen:link account}" class="navLink accountPopup NoPopupGadget">{xen:phrase your_account}
 
Top Bottom