diff --git a/src/Solr/Request/SearchRequest.php b/src/Solr/Request/SearchRequest.php index 29a6b06..b99baa2 100755 --- a/src/Solr/Request/SearchRequest.php +++ b/src/Solr/Request/SearchRequest.php @@ -243,6 +243,9 @@ private function getResultFromRequest($pageSize, $fuzzy = true, $activeFilterAtt if ($attributeCode == 'price' && isset($parentResult->facet_counts->facet_intervals->price_f)) { $result->facet_counts->facet_intervals->price_f = $parentResult->facet_counts->facet_intervals->price_f; } + if ($attributeCode == 'category') { + continue; + } $attribute = $this->attributeRepository->getAttributeByCode($attributeCode, null); if ($attribute->getBackendType() == 'decimal') { $indexField = new IndexField($attribute, $this->eventDispatcher);