我的问题是,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 呢?我不知道。
谢谢你的帮助。