catalogsearch の結果ページと同じように、Magento の高度な検索結果ページにレイヤード ナビゲーション フィルターを表示する必要があります。
必要に応じて、XML ブロックを catalogsearch_advanced_result に移動しました。
<reference name="left">
<block type="catalogsearch/layer" name="catalogsearch.leftnav" template="catalog/layer/view.phtml"/>
</reference>
ブロックが呼び出されますが、何も表示されません。コア ファイルを調べたところ、Catalog/Block/Layer/View.php で、この関数が属性を返さないことがわかりました (161 行目):
protected function _getFilterableAttributes()
{
$attributes = $this->getData('_filterable_attributes');
if (is_null($attributes)) {
$attributes = $this->getLayer()->getFilterableAttributes();
$this->setData('_filterable_attributes', $attributes);
}
return $attributes;
}
getFilterableAttributes() を Catalog/Model/Layer.php ファイルにトレースしましたが、この時点から、catalogsearch と高度な検索の違いがどこにあるのかを理解するのが難しくなります。
私は基本的に、これを可能な限り機能させたいだけです。ヘルプやガイダンスをいただければ幸いです。
編集:
製品属性が次のように正しく設定されています。