Make the Home Page default to catalogue mode

Hi there,



Is there a way to make the home page default to the Catalogue Mode (like index.php?mode=catalog).



Thanks,



David

[quote name=‘Dubs’]Hi there,



Is there a way to make the home page default to the Catalogue Mode (like index.php?mode=catalog).



Thanks,



David[/QUOTE]



In order to do it try to replace the following part of code:



if (empty($target)) {
$target = 'index';
}




with this one:



if (empty($target)) {
$target = 'index';
$mode = 'catalog';
}




in the “index.php” file, located in the root directory of your CS-Cart installation.

Thanks so much - worked a treat!

[quote name=‘Dubs’]Thanks so much - worked a treat![/QUOTE]



Not at all!