gpt4 book ai didi

magento - Magento 页面末尾的静态 block

转载 作者:行者123 更新时间:2023-12-02 21:24:41 24 4
gpt4 key购买 nike

将静态 block 移动到页面末尾。我搜索了很多解决方案。但是,没有运气。

我尝试在catalog/category/view.phtml中交换echo。但这没有用。

   <?php echo $this->getCmsBlockHtml() ?> <?php echo $this->getProductListHtml() ?>

我不想使用CSS来移动页面末尾的 block ,它会产生其他对齐问题。怎么解决这个问题呢?

最佳答案

你可以使用

beforeafter 属性,但仅适用于两种情况之一

当您插入core/text_list block

当您的模板 block 在不带任何参数的情况下调用 getChildHtml

当你这样做时

<reference name="root">
<block type="core/template" name="your_block" before="content" template="page/html/your-block.phtml"/>
</reference>

你正在告诉 Magento

嘿 Magento,将 example_block 放入根 block 中。

这些 block 正在被显式渲染。

<?php echo $this->getChildHtml('example_block') ?>

但是,在两种情况下顺序很重要。首先,如果你打电话

<?php echo $this->getChildHtml() ?>

希望这一定会对您有所帮助。

关于magento - Magento 页面末尾的静态 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18396245/

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