prestashop以列为特色的产品

时间:2012-07-03 12:28:10

标签: prestashop

在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>

1 个答案:

答案 0 :(得分:1)

您可以创建一个新的挂钩,并将该挂钩放在<newdiv>

之后你需要编辑/modules/homefeatured/homefeatured.php并为你的新钩子添加一个钩子函数,如

function hookYouNewHook($params)
{
    return $this->hookHome($params);
}

最后一步是将homefeatured模块移植到你的新钩子上。

有很多关于如何创建新钩子以及如何移植模块的指南。