Prestashop/Smarty-扩展主题中的模块模板文件

Prestashop/Smarty-扩展主题中的模块模板文件,prestashop,smarty,prestashop-1.7,Prestashop,Smarty,Prestashop 1.7,有没有办法在主题中扩展模块模板文件(视图) 因为当我试图扩展 {extends file='module:my_module/views/templates/front/view.tpl'} 我显然有一个无限递归调用 我需要像这样的东西: {extends file='parent:module:my_module/views/templates/front/view.tpl'} 或 或者另一种扩展模块模板的方法,而无需无限递归循环 谢谢。您是想在主题中使用模块的tpl,还是想为主题更改模块

有没有办法在主题中扩展模块模板文件(视图)

因为当我试图扩展

{extends file='module:my_module/views/templates/front/view.tpl'}
我显然有一个无限递归调用

我需要像这样的东西:

{extends file='parent:module:my_module/views/templates/front/view.tpl'}

或者另一种扩展模块模板的方法,而无需无限递归循环


谢谢。

您是想在主题中使用模块的tpl,还是想为主题更改模块的tpl?我想为我的主题更改模块的tpl,但我不想覆盖模块的整个文件,而只覆盖特定部分。这就是为什么我想在我的子主题中扩展模块的tpl文件。
{extends file='parent_module:my_module/views/templates/front/view.tpl'}