[SMF] Add Link to Navigation Bar

In ./Themes/silentwave115/index.template.php
Find
Code:
	// Show the [home] button.
	echo	'<li><a href="', $scripturl, '">' , $txt[103] , '</a></li>';
Add after:
Code:
	// Show the [custom] button.
	echo	'<li><a href="http://yoururlhere.com">Your text here</a></li>';
Note that if you are adding an internal link, it is easier to add ', $scripturl, ' so that if you ever change the forum URL, that link will change as well (for example if you wanted the link to be yourforum.com/index.php?action=contact you would add
Code:
	// Show the [custom] button.
	echo	'<li><a href="', $scripturl, '?action=contact">Your text here</a></li>';
 
Back
Top Bottom