XF 1.3 How can I make a profile tab?

=MGN=RedEagle

Well-known member
Hi there,

With your help I now know how to make a new tab on XF. How can I make a tab which people can click to see their profile?
 
You can already reach your profile page by hovering over your user name and clicking "Your Profile Page".

Wouldn't a separate tab be superfluous?
 
Unfortunately, not for my people. They need it. My niche audience is 50+.

In navigation_visitor_tabs:

Find:

Code:
<xen:hook name="navigation_visitor_tabs_end" />

Replace with something like:

Code:
  <li class="navTab profilePage PopupClosed"><a href="{xen:link members, $visitor}" class="navLink">{xen:phrase your_profile_page}</a></li>
  
   <xen:hook name="navigation_visitor_tabs_end" />

A custom style but you get the idea:

http://prntscr.com/31gid8

Something like that?
 
Top Bottom