0

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

1 回答 1

1

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

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

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

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

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

于 2012-07-03T13:23:05.273 回答