Support Facets 3 - currently does not work for taxonomy term reference exposed filter

Created on 11 March 2025, 24 days ago

If anyone has got Select 2 module working with Facets v3, please tell me how.

Right now, whenever I submit an exposed facet filter using taxonomy term reference, i get "The submitted value X in the Y element is not allowed." error.

πŸ› Bug report
Status

Active

Version

2.0

Component

Facets integration

Created by

πŸ‡ΊπŸ‡ΈUnited States AaronBauman Philadelphia

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

Comments & Activities

  • Issue created by @AaronBauman
  • πŸ‡ΊπŸ‡ΈUnited States fizcs3 Omaha, Nebraska; USA

    @aaronbauman - this sounds like this issue:
    "The submitted value [value] in the [name] element is not allowed."
    https://www.drupal.org/project/facets/issues/3446040 πŸ› The submitted value [value] in the [name] element is not allowed. Active

    For which MR!286 therein fixed it for me.
    https://www.drupal.org/project/facets/issues/3446040#comment-15978070 πŸ› The submitted value [value] in the [name] element is not allowed. Active

    I'm also using facets 3.0, select2 with taxonomy term references.

  • πŸ‡ΊπŸ‡ΈUnited States AaronBauman Philadelphia

    The changes in 3446040 look pretty significant.

    I was able to work around the bug with a form alter.
    I'll stick with until the patch has some more reviews or tests.

     function MY_MODULE_form_alter(&$form, FormStateInterface $form_state, $form_id) {
      if ($form_id == 'views_exposed_form' && !empty($form['#context']['bef'])) {
        // Facets 3.x + Select2 + BEF causes problems with validation.
        // Remove validation here for that scenario.
        foreach ($form['#info'] as $name => $element) {
          if (!str_starts_with($name, 'filter-facets')) {
            continue;
          }
          $key = $element['value'];
          $form[$key]['#process'][] = 'facets_exposed_filters_remove_validation';
        }
      }
    
  • πŸ‡ΊπŸ‡ΈUnited States AaronBauman Philadelphia
Production build 0.71.5 2024