chick Posted September 21, 2007 Share Posted September 21, 2007 <tr> <td class="navbutton" onmouseover="this.className='navbuttonover';" onmouseout="this.className='navbutton';" onclick="window.location='index.php'">{$LANG.hometitle}</td> </tr> Laugh but I have no knowledge of how to do this... I want to add a link back to my sites main index.htm page, in the Client areas whm left column where the other links are, and I'm afraid to screw it up so I'm asking, if I want to add the link to that column back to to my main index.htm page would it look like this below? <tr> <td class="navbutton" onmouseover="this.className='navbuttonover';" onmouseout="this.className='navbutton';" onclick="window.location='http://mysite/index.htm'">{$LANG.hometitle}</td> </tr> 0 Quote Link to comment Share on other sites More sharing options...
masgra Posted September 21, 2007 Share Posted September 21, 2007 chick, Your code will add a link back to your main index page, but you will loose the link back to the client area homepage. You would probably be better adding a new row: <tr> <td class="navbutton" onmouseover="this.className='navbuttonover';" onmouseout="this.className='navbutton';" onclick="window.location='http://mysite/index.htm'">Home</td> </tr> and then amend the language file entry for 'hometitle' to something like 'Support Area', so that your clients still have access to the client area homepage: /whmcspath/lang/English.txt (502) $_LANG["hometitle"] = "Support Area"; Hope this helps. 0 Quote Link to comment Share on other sites More sharing options...
sisgroup Posted September 22, 2007 Share Posted September 22, 2007 Ok my request is kind simlour, you know when you are on your WHMCS portal and you are logged in as admin when you leave the admin panel and goto say the index.php page it has a little link in the top right-hand side of the screen saying return to admin panel well is there one i can do for the clients so if they go say on the order pages and they are still logged in they could return to the client area if they want to 0 Quote Link to comment Share on other sites More sharing options...
chick Posted September 22, 2007 Author Share Posted September 22, 2007 OK masgra I am grateful for your help. I am going to try that exactly the way you said, today. 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.