Changing User Name Link in Navigation

Luke B

Active member
Hello All,

When a user clicks their user name, it takes them to their "personal details" page. I would like to change that destination to their profile page.

How can this be achieved?

profile 2.webp
 
You'll need to edit templates to achieve this.

Admin Control Panel -> Appearance -> Templates -> navigation_visitor_tab

Find this line :

HTML:
<a href="{xen:link account}" class="navLink accountPopup" rel="Menu"><strong>{$visitor.username}</strong></a>

Replace {xen:link account} with the contents below :

Code:
{xen:link members, $visitor}
 
Top Bottom