XF 1.5 How to create a new tab?

For that positioning, you can either add it after the members tab or extra tabs: end section. I usually choose the latter:

Code:
<!-- extra tabs: end -->
<xen:if is="{$extraTabs.end}">
        <xen:foreach loop="$extraTabs.end" key="$extraTabId" value="$extraTab">

...nested tags and stuff...

</xen:foreach>
        </xen:if>

<li class="navTab myNewTab PopupClosed"><a href="someHref" class="navLink">{xen:phrase someNewPhrase}</a></li>

That last line is what you'll add to make the tab. You can give it a custom CSS class like "myNewTab", as I exampled, or keep it something familiar like "home" to copy that styling. Change the "someHref" to the href, and the "someNewPhrase" to a new phrase that you can create in the Phrases section of Appearance.

EDIT: If it's a node that you want to add as a tab, there's an add-on called "Nodes as Tabs" that will let you make navTabs from nodes.
 
For that positioning, you can either add it after the members tab or extra tabs: end section. I usually choose the latter:

That last line is what you'll add to make the tab. You can give it a custom CSS class like "myNewTab", as I exampled, or keep it something familiar like "home" to copy that styling. Change the "someHref" to the href, and the "someNewPhrase" to a new phrase that you can create in the Phrases section of Appearance.

EDIT: If it's a node that you want to add as a tab, there's an add-on called "Nodes as Tabs" that will let you make navTabs from nodes.

Great, that is clear enough now! Thanks!
 
Top Bottom