有没有办法在Prestashop 1.5中使用smarty2而不是smarty3?我已经从1.2.5更新,主题被毁了。谢谢
答案 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();