2013-02-12 61 views
0

http://ametrade.dev.icyberking.comMagento的錯誤:返回所有產品在搜索

這是我的地盤,我拉我的頭髮整天爲我的搜索正常工作是什麼工作目前是什麼我搜索將返回所有從產品網站無論你使用什麼樣的關鍵字,我也搜索谷歌,發現使描述和簡短的描述不可搜索可以幫助使結果更精確,但這並沒有幫助我請分享,如果任何人有任何以前的經驗與情況

我使用磁1.7版本。 謝謝。

+0

不知道我們應該怎麼辦呢? – webnoob 2013-02-12 12:34:25

+0

哇..這麼大的句子來形容整個問題! – Kalpesh 2013-02-12 14:34:23

+1

您的搜索索引是最新的?這可能是一個問題。 您的研究使用LIKE或=? – dagfr 2013-02-13 13:23:10

回答

0

在谷歌搜索更多好以後,我發現我的解決問題 去文件的app \代碼\核心\法師\ CatalogSearch \塊\

現在搜索這個方法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/