0

我正在 magento 中创建一个 CMS 页面,作为即将推出的产品的预告片。我正在使用带有右栏的两列,并在后端使用布局更新 XML 来调用我为右侧制作的一些自定义块。

好吧,现在我只加载占位符,然后在事后编辑 phtml。

如果我在右边使用两个块,它看起来很好..但是如果我添加更多,那么整个页脚会损坏并移动到右列。

我试图在右侧获得 3 个自定义块。

这是我的布局更新 XML

<reference name="right">
<block type="newsletter/subscribe" name="left.newsletter" template="newsletter/rightsubscribe.phtml"/>
<block type="core/template" name="name1" template="page/custom/custom1.phtml"/>
<block type="core/template" name="name2" template="page/custom/custom2.phtml"/>
</reference>

这是我正在使用的海关区块的 HTML。

<div id="shop-with-confidence" class="white-box">
    <h3>Custom1</h3>
    <div class="white-box-inner">
         Testing1
    </div>


    <div id="shop-with-confidence" class="white-box">
    <h3>Custom2</h3>
    <div class="white-box-inner">
         Testing2
    </div>

有谁知道为什么这会破坏我正在编辑的页面?

4

1 回答 1

0

OP 已经为自己解决了这个问题,但值得注意的是,可以轻松检查父子块关系以确定问题是否与框架或标记相关。

要检查父块具有的子块列表,只需在模板中执行以下操作:

Zend_Debug::dump($this->getChild()) //list of children
Zend_Debug::dump($this->getSortedChildren()) //list of ordered children

在缺少模板的块(core/text_list例如“right”)的情况下,也可以从子块模板中执行此操作:

Zend_Debug::dump($this->getParentBlock()->getChild()) //list of children
Zend_Debug::dump($this->getParentBlock()->getSortedChildren()) //list of ordered children

更多信息请参考Mage_Core_Block_Abstract

于 2012-06-24T12:05:23.110 回答