abdul201588 Posted June 23, 2018 Share Posted June 23, 2018 Hello everyone. I'm trying to create an About us page for my website, I'm using the HostLooks Template. I cannot find the about us page at all, the only about us page can be found it the HTML version. Does anyone know how to do it? I'm completely lost. I'm new to WHMCS, so please take it easy on me 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted June 24, 2018 Share Posted June 24, 2018 wouldn't you just edit that html version of the above us page? if you look at the online demo, the WHMCS version can access the about us html page... 0 Quote Link to comment Share on other sites More sharing options...
abdul201588 Posted June 24, 2018 Author Share Posted June 24, 2018 42 minutes ago, brian! said: wouldn't you just edit that html version of the above us page? if you look at the online demo, the WHMCS version can access the about us html page... Hello, I'm using the WHMCS template, not the HTML version. The one that you've linked is the HTML one. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted June 26, 2018 Share Posted June 26, 2018 On 6/24/2018 at 12:23, abdul201588 said: Hello, I'm using the WHMCS template, not the HTML version. The one that you've linked is the HTML one. I think there is only one template... HTML -> https://www.themelooks.com/demo/hostlooks/html/preview/ WHMCS -> http://billing.ywhmcs.com/?systpl=HostLooks both of them link to the same about us page -> https://www.themelooks.com/demo/hostlooks/html/preview/about.html are you saying that you want to create an "About Us" page, but you want it to look like it's part of WHMCS rather than the main site ??? one option might be to create a 'aboutus.php' file in the root of WHMCS, paste the code below into it and then create an aboutus.tpl' template in your active template folder... <?php use WHMCS\ClientArea; define('CLIENTAREA', true); require __DIR__ . '/init.php'; $ca = new ClientArea(); $ca->setPageTitle('Your Page Title Goes Here'); $ca->addToBreadCrumb('index.php', Lang::trans('globalsystemname')); $ca->addToBreadCrumb('aboutus.php', 'Your Custom Page Name'); $ca->initPage(); $ca->setTemplate('aboutus'); $ca->output(); that might work as a starting point - though this template supposedly comes with "well sorted" documentation, so themelook's support might be able help more with this. 1 Quote Link to comment Share on other sites More sharing options...
abdul201588 Posted June 26, 2018 Author Share Posted June 26, 2018 2 hours ago, brian! said: I think there is only one template... HTML -> https://www.themelooks.com/demo/hostlooks/html/preview/ WHMCS -> http://billing.ywhmcs.com/?systpl=HostLooks both of them link to the same about us page -> https://www.themelooks.com/demo/hostlooks/html/preview/about.html are you saying that you want to create an "About Us" page, but you want it to look like it's part of WHMCS rather than the main site ??? one option might be to create a 'aboutus.php' file in the root of WHMCS, paste the code below into it and then create an aboutus.tpl' template in your active template folder... <?php use WHMCS\ClientArea; define('CLIENTAREA', true); require __DIR__ . '/init.php'; $ca = new ClientArea(); $ca->setPageTitle('Your Page Title Goes Here'); $ca->addToBreadCrumb('index.php', Lang::trans('globalsystemname')); $ca->addToBreadCrumb('aboutus.php', 'Your Custom Page Name'); $ca->initPage(); $ca->setTemplate('aboutus'); $ca->output(); that might work as a starting point - though this template supposedly comes with "well sorted" documentation, so themelook's support might be able help more with this. THANK YOU SO MUCH. THAT DID IT! 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.