如何在Prestashop中使用我自己的模块为产品页面创建新的钩子

时间:2015-03-19 08:24:48

标签: php prestashop

我需要列出所选产品的相关产品。我有新的列出相关产品。

我有以下钩子来显示相关产品。

 public function hookDisplayProductTabContent($params) {
   $related_items = Product::getRelatedProducts((int) $this->context->language->id, 0, (int)Configuration::get('NEW_PRODUCTS_NBR'),(int) $id_product);
 return $this->display(__FILE__, 'views/frontend/relateditems.tpl');
}

ProductTabContent不显示相关产品。我怎样才能做到这一点。请帮帮我。

1 个答案:

答案 0 :(得分:0)

您需要将$ related_items变量分配给Smarty。

$this->smarty->assign('related_items', $related_items);