Wrap the number of results in a div of span

Created on 12 March 2025, 22 days ago

I would like to have the number of results wrapper around in a div or span.

Currently the output is something like this:

<label for="edit-field-swimming-binnenzwembad" class="option">Binnenzwembad (1)</label>

Where (1) is appended to the label. But if a want some kind of styling onto it, I can not achieve that.

In buildOptions() in /modules/contrib/facets/modules/facets_exposed_filters/src/Plugin/views/filter/FacetsFilter.php

i have to change to

  class FacetsFilter extends FilterPluginBase {
     foreach ($results as $result) {
       $label = $result->getDisplayValue();
       if ($this->options["facet"]["show_numbers"] && $result->getCount() !== FALSE) {
-        $label .= ' (' . $result->getCount() . ')';
+        $label .= ' <span class="facet-count">' . $result->getCount() . '</span>';
       }

and


class FacetsFilter extends FilterPluginBase {
// Store processed results so other modules can use these.
$this->facet_results = $facet->getResults();
$form['value'] = [
- '#type' => 'select',
+ '#type' => 'markup',

Feature request
Status

Active

Version

3.0

Component

Code

Created by

🇳🇱Netherlands michaelmol

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024