在magento中,我正在编写一个模块。在我的模块中,假设我mymodule.xml
想在这个块之后插入我自己的块
<catalog_product_view>
<reference name="product.info">
<block type="test/test" name="test" as="other" template="test/test.phtml" >
<block type="test/test" name="test_info" as="test_info" template="test/testinfo.phtml" />
</block>
</reference>
</catalog_product_view>
这个工作正常,product details view page
但是当我试图显示相同的块时,product category view and list view
它根本不工作。产品列表类别是这样的,我从中插入代码mymodule.xml
<catalog_product_list>
<reference name="product.info">
<block type="test/test" name="test" as="other" template="test/test.phtml" >
<block type="test/test" name="test_info" as="test_info" template="test/testinfo.phtml" />
</block>
</reference>
</catalog_product_list>
当我要检查列表视图中的更改时,我看不到任何更改(清除缓存后)。所以有人可以告诉我如何解决这个问题。任何帮助和建议都将是非常可观的。谢谢..