Depending on your version of x-cart, you can open cart.php and edit the line that calls home_checkout.tpl
For 3.5.x
Code:
if (($mode == "friend_wl") || ($mode == "send_friend") || ($mode == "wlclearwl") || ($mode == "deletewl2cart") || ($mode == "add2wl") || ($mode == "wishlist") || ($mode == "addgc2wl")) {
$smarty->display("customer/home.tpl");
}
else {
$smarty->display("customer/home_checkout.tpl");
}
For 4.x
Code:
if (($mode == "friend_wl") || ($mode == "send_friend") || ($mode == "wlclearwl") || ($mode == "deletewl2cart") || ($mode == "add2wl") || ($mode == "wishlist") || ($mode == "addgc2wl")) {
func_display("customer/home.tpl",$smarty);
}
else {
func_display("customer/home_checkout.tpl",$smarty);
}