I need to change the default home page of my shop
There is only the one product, so I want to skip all the welcome and category pages and just have go straight into the product page.
This should also be the default page that any continue button points too
I tried changing the code on the index.php page but just keep getting a page not found error
Code: Select all
// Router
if (isset($request->get['route'])) {
$action = new Action($request->get['route']);
} else {
$action = new Action('common/home');
}
Thanks in advance
Julie