我正在为prestashop 1.7创建一个模块,我想在此块中添加一个文本,但我不知道该怎么做:
我不知道是否要使用钩子,以及哪个钩子!
edit:不修改主题的tpl文件 谢谢!
答案 0 :(得分:0)
您可以使用此钩子:
{hook h='displayProductPriceBlock' product=$product type="before_price"}
public function HookDisplayProductPriceBlock($params)
{
if ($params['type'] == "before_price") {
return 'TEXT'; // or return TPL file
}
}
更新:
在您的模块上,您只需要在安装过程中注册“ displayProductPriceBlock”钩子,然后将上述功能添加到yourmodule.php文件即可。