X-cart already has index.html file that you could use as a splash page. However, if you're like me and you wish to incorporate other .tpl files in your first page, why not create an alternate home.tpl and name it something like
"home1.tpl".
Be sure to place this alternate home.tpl in directory:
skin1/customer/
You then would need to go and edit the home.php. You will find this at:
x-cart directory/customer/home.php
(note that you cannot edit this file in "Admin" mode, you need use a text editor and FTP to your site)
At the bottom of the file you will see the following:
Quote:
$smarty->display("customer/home.tpl");
|
Edit that line to reflect your alternate home.tpl like so:
$smarty->display("customer/
home1.tpl");
This will allow you to have seperate template load when you visit your x-cart and for home.tpl to be used when shopping begins.
Enjoy!
Regards,
Glen