Nested block within a reference not rendering when using ->getChildHtml()

混江龙づ霸主 提交于 2019-12-23 01:56:07

问题


this is my layout xml:

<catalog_category_default translate="label">
        <label>Catalog Category (Non-Anchor)</label>
        <reference name="content">
            <block type="core/template" name="page.brand" template="page/brand.phtml" />
            <block type="catalog/product_list" template="page/accessories.phtml">
                 <block type="catalog/navigation" name="catalog.leftnav" as="filter_menu" template="catalog/navigation/left.phtml"/> 
            </block>
        </reference>
</catalog_category_default>

And from within page.accessories.phtml, inside some div block i call:

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

but nothing renders out. Why is that?

this is code from the layered phtml file:

<div class="oh_shit"></div>
<?php if($this->canShowBlock()): ?>
<div class="block block-layered-nav">
    <div class="block-title">
        <strong><span><?php echo $this->__('Shop By') ?></span></strong>
    </div>
    <div class="block-content">
        <?php echo $this->getStateHtml() ?>
        <?php if ($this->getLayer()->getState()->getFilters()): ?>
            <div class="actions"><a href="<?php echo $this->getClearUrl() ?>"><?php echo $this->__('Clear All') ?></a></div>
        <?php endif; ?>
        <?php if($this->canShowOptions()): ?>
            <p class="block-subtitle"><?php echo $this->__('Shopping Options') ?></p>
            <dl id="narrow-by-list">
                <?php $_filters = $this->getFilters() ?>
                <?php foreach ($_filters as $_filter): ?>
                <?php if($_filter->getItemsCount()): ?>
                    <dt><?php echo $this->__($_filter->getName()) ?></dt>
                    <dd><?php echo $_filter->getHtml() ?></dd>
                <?php endif; ?>
                <?php endforeach; ?>
            </dl>
            <script type="text/javascript">decorateDataList('narrow-by-list')</script>
        <?php endif; ?>
    </div>
</div>
<?php endif; ?>

回答1:


Try adding your blocks in your layout xml to:

<catalog_category_layered translate="label">
    <label>Catalog Category</label>
    <reference name="content">
        <block type="core/template" name="page.brand" template="page/brand.phtml" />
        <block type="catalog/product_list" template="page/accessories.phtml">
             <block type="catalog/navigation" name="catalog.leftnav" as="filter_menu" template="catalog/navigation/left.phtml"/> 
        </block>
    </reference>
</catalog_category_layered>



回答2:


ok. i got it. i accidentally deleted the name attribute on the block with type="product_list". when i re-added the name="product_list" it worked.



来源:https://stackoverflow.com/questions/19753991/nested-block-within-a-reference-not-rendering-when-using-getchildhtml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!