简体   繁体   中英

Prestashop - Add module to hook

I want to transplant the module "blockviewed" to the hook displayFooterProduct.

Prestashop tells me this module can't be transplanted to that hook so I looked around and found this tutorial : http://docs.promokit.eu/doku.php/prestashophelp:hookmodule

It came out, I have to add some code in the blockviewed.php file.

I did my best and added this code at the end.

    public function hookdisplayFooterProduct($params) {
return $this->hookdisplayHeader('displayFooterProduct');

It doesn't work and crashes my backOffice, no wonder as I didn't completely grasp what I should put into that code.

Could you point me out what I did wrong?

Thanks!

It is hookDisplayFooterProduct not hookdisplayFooterProduct and you should use hookRightColumn instead of hookdisplayHeader (correctly hookDisplayHeader ):

public function hookDisplayFooterProduct($params)
{
  return $this->hookRightColumn($params);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM