http://ametrade.dev.icyberking.com
这是我的网站,我整天都在为我的搜索正常工作目前正在工作的是我搜索的任何内容它从网站返回所有产品无论您使用什么关键字,我也搜索过谷歌发现,使描述和简短描述不可搜索有助于使结果更精确,但这对我没有帮助,如果有人以前有过这种情况的经验,请分享
我正在使用磁电机 1.7 版本。谢谢。
http://ametrade.dev.icyberking.com
这是我的网站,我整天都在为我的搜索正常工作目前正在工作的是我搜索的任何内容它从网站返回所有产品无论您使用什么关键字,我也搜索过谷歌发现,使描述和简短描述不可搜索有助于使结果更精确,但这对我没有帮助,如果有人以前有过这种情况的经验,请分享
我正在使用磁电机 1.7 版本。谢谢。
好吧,在通过谷歌搜索更多之后,我找到了解决方案,我的问题转到文件 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/