Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 Prestashop 1.5 中使用 smarty2 而不是 smarty3 ?我已经从 1.2.5 更新,主题被破坏了。谢谢
也许尝试 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();