attroll Posted January 22, 2007 Share Posted January 22, 2007 I would like to add my homepage link in the navbar on the following pages. Support page Client area page Announcement page Knowedgebase page Support tickets page Downloads page Is that a way I can do this? and if not this should be an option in a future update. 0 Quote Link to comment Share on other sites More sharing options...
attroll Posted January 22, 2007 Author Share Posted January 22, 2007 Never mind. I figured it out. 0 Quote Link to comment Share on other sites More sharing options...
bear Posted January 22, 2007 Share Posted January 22, 2007 Maybe you'd share your solution with those that might be having the same issue? 0 Quote Link to comment Share on other sites More sharing options...
attroll Posted January 22, 2007 Author Share Posted January 22, 2007 Ok, No problem, Sorry. You have to go to the file whmcs/templates/default/header.tpl and edit it. Find: <td><table id="topnavbar"><tr><td id="navbar">[url="index.php"]{$LANG.globalsystemname}[/url]</td><td id="navbar">[url="clientarea.php"]{$LANG.clientareatitle}[/url]</td><td id="navbar">[url="announcements.php"]{$LANG.announcementstitle}[/url]</td><td id="navbar">[url="knowledgebase.php"]{$LANG.knowledgebasetitle}[/url]</td><td id="navbar">[url="supporttickets.php"]{$LANG.supportticketspagetitle}[/url]</td><td id="navbar">[url="downloads.php"]{$LANG.downloadstitle}[/url]</td>{if $loggedin}<td id="navbar">[url="logout.php"]{$LANG.logouttitle}[/url]</td>{/if}</tr></table></td> Replace it with: <td><table id="topnavbar"><tr> <td id="navbar"><a href="http://yourwebsite.net">Homepage</td> <td id="navbar">[url="index.php"]{$LANG.globalsystemname}[/url]</td> <td id="navbar">[url="clientarea.php"]{$LANG.clientareatitle}[/url]</td> <td id="navbar">[url="announcements.php"]{$LANG.announcementstitle}[/url]</td> <td id="navbar">[url="knowledgebase.php"]{$LANG.knowledgebasetitle}[/url]</td> <td id="navbar">[url="supporttickets.php"]{$LANG.supportticketspagetitle}[/url]</td> <td id="navbar">[url="downloads.php"]{$LANG.downloadstitle}[/url]</td> {if $loggedin}<td id="navbar">[url="logout.php"]{$LANG.logouttitle}[/url]</td>{/if}</tr></table></td> Now edit the following line to what you want it to be: <td id="navbar"><a href="http://yourwebsite.net">Homepage</td> 0 Quote Link to comment Share on other sites More sharing options...
bear Posted January 22, 2007 Share Posted January 22, 2007 Thanks for posting it...always appreciated. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.