【发布时间】:2013-09-03 08:40:01
【问题描述】:
我的问题是,magento 中的高级搜索不返回任何结果(正常搜索返回)。如果我转储
$this->getLoadedProductCollection()
在我的模板中,它返回“null”。所以我在“app/code/local/Mage/CatalogSearch/Block/Advanced/Result.php”中查看了将集合设置为高级搜索模板/视图的类,并找到了这个方法:
public function setListCollection() {
$this->getChild('search_result_list')->setCollection($this->_getProductCollection());
}
如果我转储
$this->_getProductCollection();
我得到了与我的搜索查询匹配的所有产品。但是为什么返回我的第一个方法 null 呢?我不知道。
感谢您的帮助。
【问题讨论】:
标签: php magento magento-1.7