XF 1.5 Adding "About" page to navbar

Diana

Active member
Can someone please explain to me how to create an "About" page and add it to the navbar?
 
Last edited:
Public navigation isn't in XF 1.5.

You'll need to edit the navigation template :

Find :
Code:
<!-- extra tabs: end -->
Above it, add :
Code:
<li class="navTab PopupClosed"><a href="LINK" class="navLink">TEXT</a></li>
Replace LINK with the link to the about page and TEXT with the link's text (eg. About).
 
Public navigation isn't in XF 1.5.

You'll need to edit the navigation template :

Find :
Code:
<!-- extra tabs: end -->
Above it, add :
Code:
<li class="navTab PopupClosed"><a href="LINK" class="navLink">TEXT</a></li>
Replace LINK with the link to the about page and TEXT with the link's text (eg. About).


How to do for xF2
 
In XF1, without using an add-on, you can do it by creating a help page, a route filter and adding the link into the navigation menu (as M@rc detailed).

In XF2, same steps but you don't need to add a link into the navigation menu via templates, and instead can use the public navigation, located at Admin CP -> Setup -> Public Navigation.
 
Top Bottom