gpt4 book ai didi

php - 控制 magento 左导航渲染的位置

转载 作者:行者123 更新时间:2023-11-28 08:09:25 24 4
gpt4 key购买 nike

我想更改 magento 左侧导航的呈现位置,以便将其放置在给定类别的静态 CMS block 集之后,但在实际类别产品之前。

目前我在catalog_category_layered中设置了

    <reference name="content">
<block type="catalog/layer_view" name="catalog.leftnav" template="catalog/layer/view.phtml">
<block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
</block>
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">

这至少将它放在 col-main div 中,但它仍然呈现在静态 CMS 之上(我认为它是由 catalog/category/view.phtml 输出的?)

我需要它在该静态 block 之后呈现,因为该 block 本质上是一个全宽横幅。

当前的html输出是

<div class="col-main">
<aside class="col-left sidebar col-md-3 col-xl-2 col-left-first" style="min-height: 1003px;">
</aside>
<section class="category-top"><img alt="" src="/skin/frontend/rwd/thejewelhut/images/cat/pandora.png">
</section>
<section class="category-topmobile"><img alt="" src="https://placehold.it/768x300"></section>
<div class="col-main col-md-9 col-xl-10 category-products">
</div>
</div>

所需的输出将是

<div class="col-main">
<section class="category-top"><img alt="" src="/skin/frontend/rwd/thejewelhut/images/cat/pandora.png">
</section>
<section class="category-topmobile"><img alt="" src="https://placehold.it/768x300"></section>
<aside class="col-left sidebar col-md-3 col-xl-2 col-left-first" style="min-height: 1003px;">
</aside>
<div class="col-main col-md-9 col-xl-10 category-products">
</div>
</div>

只有细微的差别,但会产生很大的不同。

想法?

最佳答案

尝试将 before="-"放在 leftnav block 中:

    <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml">
<block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
</block>

关于php - 控制 magento 左导航渲染的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29347571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com