Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用默认的 magento 产品列表块和模板,但将其与我自己的自定义产品集合一起使用。
该集合不是类别的一部分,而是由我自己的模块创建的集合。
我如何将两者联系起来?
您需要创建自己的块类,继承自Mage_Catalog_Block_Product_List,并至少覆盖其_getProductCollection()方法,以使其加载您的集合。
Mage_Catalog_Block_Product_List
_getProductCollection()
关于模板,您可以在布局定义中将默认模板分配给您的块。