Jump to content

About Us page WHMCS


Recommended Posts

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 :P 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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! :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated