0

在 Magento 中,我试图在 list.phtml 中显示一个自定义模块的 phtml。我的 xml 看起来像这样:

<catalog_category_default>
    <reference name="content">
            <block type="my_prevenda/prevendalist" name="prevenda" as="prevenda" template="prevenda/prevenda_list.phtml" />
    </reference>
</catalog_category_default>

我这样称呼:<?php echo $this->getChildHtml('prevenda') ?>

但是这个方法只存在于view.phtml中。我如何出现在 list.phtml 中?将保留产品名称

我Tks所有!

4

1 回答 1

1
<?xml version="1.0"?>
<layout>
    <catalog_category_default>
        <reference name="product_list"><!-- need to add to the correct parent block -->
                <block type="my_prevenda/prevendalist"
                       name="prevenda" as="prevenda"
                       template="prevenda/prevenda_list.phtml" />
        </reference>
    </catalog_category_default>
</layout>
于 2012-09-05T22:02:24.303 回答