使用prestashop 1.7在智能模板文件中生成友好的URL链接

时间:2018-01-22 00:15:44

标签: php prestashop smarty prestashop-1.7

使用git的最新prestashop。

我正在尝试创建指向我在管理面板的design - > Pages标签下创建的网页的链接。

我可以转到http://prestashop.ufk:8080/he/content/6-test-1

浏览链接

页面的ID为6,我选择的友好网址为test-1

如何将其转换为{url}智能链接?

谢谢

1 个答案:

答案 0 :(得分:2)

使用{$link->getCMSLink('6')}。如果您得到未定义的变量错误(可能在您的模块模板中发生),那么您需要在加载模板之前定义$link

$this->context->smarty->assign('link', $this->context->link);