Magento bug:返回搜索中的所有产品

时间:2013-02-12 12:32:31

标签: php magento magento-1.7

http://ametrade.dev.icyberking.com

这是我的网站,我整天都在拔毛,因为我的搜索正常工作当前正在工作的是我搜索它返回的所有产品从网站上无关紧要你使用过什么关键词,我也有通过谷歌搜索,发现使描述和简短描述不可搜索可以帮助使结果更精确但这没有帮助我分享,如果有任何人有任何以前的情况经验

我正在使用magneto 1.7版本。 感谢。

1 个答案:

答案 0 :(得分:0)

在搜索了更多关于谷歌我发现解决方案后我的问题 转到文件app \ code \ core \ Mage \ CatalogSearch \ Block \

现在搜索此方法setListCollection()。

public function setListCollection()
{
//        $this->getListBlock()
//           ->setCollection($this->_getProductCollection());
return $this;
}

replace below code

public function setListCollection()
{
$this->getListBlock()
->setCollection($this->_getProductCollection());
return $this;
}

这是实际的解决方案链接.... http://developerview.wordpress.com/2012/08/08/magento-search-not-returning-expected-results/