我想将模块“blockviewed”移植到hook displayFooterProduct。
Prestashop告诉我这个模块无法移植到那个钩子所以我环顾四周找到了这个教程:http://docs.promokit.eu/doku.php/prestashophelp:hookmodule
它出来了,我必须在blockviewed.php文件中添加一些代码。
我尽了最大努力,最后添加了这段代码。
public function hookdisplayFooterProduct($params) {
return $this->hookdisplayHeader('displayFooterProduct');
它不起作用并且崩溃了我的backOffice,难怪因为我没有完全掌握我应该把这些代码放进去。
你能指出我做错了什么吗?
谢谢!
答案 0 :(得分:0)
hookDisplayFooterProduct
不是hookdisplayFooterProduct
,您应该使用hookRightColumn
代替hookdisplayHeader
(正确hookDisplayHeader
):
public function hookDisplayFooterProduct($params)
{
return $this->hookRightColumn($params);
}