jswilko Posted September 28, 2006 Share Posted September 28, 2006 Hi I do not have my whmcs integrated into my website template yet as I am not 100% happy with the look of my site. Is there a way to have a link back to my main site from the client Support Area. I know they could use the back button but I would prefer a link in the top corner saying "Back to main site" Cheers John 0 Quote Link to comment Share on other sites More sharing options...
chrishaley Posted September 28, 2006 Share Posted September 28, 2006 You should just be able to add the hyperlink to one of the template files, like the header.tpl if you want it on all pages or just the homepage.tpl if you want it only on the Client Area homepage. 0 Quote Link to comment Share on other sites More sharing options...
Joel Posted September 28, 2006 Share Posted September 28, 2006 What he said ^^^. Go with the template change. 0 Quote Link to comment Share on other sites More sharing options...
wehostem Posted October 22, 2006 Share Posted October 22, 2006 Example of a header home button. On line 14: <td><table id="topnavbar"><tr><td id="navbar></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> Add this to that line (line 14): [url="../index.php"]Home[/url] Of course ../index.php would link to what ever your home page is. So it looks like this: <td><table id="topnavbar"><tr><td id="navbar">[url="../index.php"]Home[/url]</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> 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.