Wizard: The splash page is actually named index.html in the xcart folder. Delete this and it will get rid of this step and take you right to the customer/home.php instead.
frankdux: To make it so your site always goes to your own choice of page create an index.php file that refers your customer to the page you want. An example of an index.php file would be this
<?
header("Location: catalog/yourcostumpage.html");
?>
Then put it into your root folder.
Hope these 2 answers help for the questions I saw asked later in this post. Let us know if you still have problems.
|