在Prestashop中,如何在单个div,外栏和主页主体中显示特色产品?
<header>
hook header
</header>
<container>
<div central_column>
.
<!-- here is the featured products block -->
.
</div>
<div right_column>
hook right column
</div>
</container>
<newdiv><--! here where i want to show featured products --></newdiv>
<footer>
hook footer
</footer>
答案 0 :(得分:1)
您可以创建一个新的挂钩,并将该挂钩放在<newdiv>
。
之后你需要编辑/modules/homefeatured/homefeatured.php并为你的新钩子添加一个钩子函数,如
function hookYouNewHook($params)
{
return $this->hookHome($params);
}
最后一步是将homefeatured模块移植到你的新钩子上。
有很多关于如何创建新钩子以及如何移植模块的指南。