hostxls Posted July 29, 2016 Share Posted July 29, 2016 Hello, Who can help me how to change the WHMCS remark on the browser Tab into our own name. Also on the Reports I want to change WHMCS in to our own name. Thanks Vincent 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted July 29, 2016 Share Posted July 29, 2016 the only way to do this is to modify the report by adding the following JavaScript code: <script type="text/javascript"> var currentPageTitle = document.title; var newPageTitle = currentPageTitle.replace("WHMCS", "Your Brand"); document.title = newPageTitle; </script> you can add include it like that: $reportdata['description'] .= '<script type="text/javascript"> var currentPageTitle = document.title; var newPageTitle = currentPageTitle.replace("WHMCS", "Your Brand"); document.title = newPageTitle; </script>'; 0 Quote Link to comment Share on other sites More sharing options...
zomex Posted August 1, 2016 Share Posted August 1, 2016 I wouldn't worry too much about this, I used to change the WHMCS logo in the admin panel but come to accept that as it's only staff who see the backend it's not too much of a big deal. 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.