Insert this code into <xcart_dir>/smarty.php script:
PHP Code:
if (AREA_TYPE == "C") {
function replace_home_php_links($tpl_source, &$smarty)
{
global $xcart_web_dir;
return str_replace("\"home.php\"", "\"$xcart_web_dir\"", $tpl_source);
}
$smarty->register_outputfilter("replace_home_php_links");
}
right before this code fragment:
PHP Code:
$smarty->config_dir = $xcart_dir . $smarty_skin_dir;