- Issue created by @dabley
- π§πͺBelgium borisson_ Mechelen, π§πͺ
I don't know anything about combing facets, is this something that is built in or with another module? I think combination of values should happen at the Search API level?
I may be missing something, but I'd like to get more info
@borisson, combining facets is a built in feature. It looks like it was introduced into v2 with #3268623: Combine facets into one facet β .
- Assigned to nidhish
- πΊπ¦Ukraine khiminrm
I've faced with the same issue. Would be nice to have this option for the facets exposed filters.
I've found inDrupal\facets\Plugin\facets\processor\CombineFacetProcessor
:public function supportsFacet(FacetInterface $facet) { // Only support facets as entities, not e.g. facets_exposed_filters. return $facet->getFacetType() == 'facet_entity'; }
So we need to create solution for the facets exposed filters.
Will try to research...