在Prestashop 1.5上回落到Smarty2

时间:2013-02-19 13:46:48

标签: smarty prestashop

有没有办法在Prestashop 1.5中使用smarty2而不是smarty3?我已经从1.2.5更新,主题被毁了。谢谢

1 个答案:

答案 0 :(得分:0)

也许尝试Smarty的向后兼容功能。

在文件“/config/smarty.config.inc.php”中,替换:

require_once(_PS_SMARTY_DIR_.'Smarty.class.php');
global $smarty;
$smarty = new Smarty();

通过

require_once(_PS_SMARTY_DIR_.'SmartyBC.class.php');
global $smarty;
$smarty = new SmartyBC();