0

http://ametrade.dev.icyberking.com

これは私のサイトで、検索が正しく機能するように一日中髪を引っ張っています。現在機能しているのは、検索したものは何でも、使用したキーワードに関係なく、サイトからすべての製品を返します。 Google は、説明と簡単な説明を検索不能にすることで、結果をより正確にするのに役立つ可能性があることを発見しましたが、これは役に立ちませんでした。

マグネト 1.7 バージョンを使用しています。ありがとう。

4

1 に答える 1

0

Googleでさらに検索した後、解決策を見つけました私の問題はファイル 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/

于 2013-02-13T06:46:56.770 に答える