Is it possible to include multiple categories on the index page? I'm currently using the following code to include 1 category on the main index.php file:
Code: Select all
// Router
if (isset($request->get['route']) && $request->get['route'] != 'common/home') {
$action = new Action($request->get['route']);
} else {
$request->get['path'] = 20;
$action = new Action('product/category');
}
<h2>Categorie 1:</h2>
<Content of categorie 1 here>
<h2>Categorie 2:</h2>
<Content of categorie 2 here>
<h2>Categorie 3:</h2>
<Content of categorie 3 here>
Who can help me out with this?
Greetings,
- Khoneini