Make a new class in your module that decorates the class.
Create: classes/XLite/Module/TechChicks/ChampionSkin/Controller/Customer/Customer.php
Code:
<?php
namespace XLite\Module\TechChicks\ChampionSkin\Controller\Customer;
/**
* Customer Controller
*/
class Customer extends \XLite\Controller\Customer\ACustomer implements \XLite\Base\IDecorator
{
/**
* Check if we are on home page
*/
public function isHomePage()
{
return 'main' === $this->getTarget();
}
}
?>