Auto-suggest dropdown doesn't appear after connecting to SearchStax

Created on 24 March 2025, 12 days ago
Updated 25 March 2025, 12 days ago

Problem/Motivation

After installing the SearchStax module in Drupal and routing searches through it, the Auto-suggest dropdown doesn't appear when searching for a term in the Search view.

This happens because within the SearchStax module, the way that the suggestion terms are being accessed in the /emsuggest API's response is different from what is being received.

Steps to reproduce

  1. Create a Drupal app and connect to SearchStax.
  2. Install and enable the SearchStax module on Drupal.
  3. Enable search_api, search_api_autocomplete, and search_api_solr for the Auto-complete feature to work.
  4. Under Configuration > Search and metadata > SearchStax settings, check the boxes which say "Re-route searches through SearchStudio" and "Configure searches via SearchStudio". Add the Auto-suggest core and click on "Save configuration".
  5. Create a Search view and populate content for testing. Index the data and enable Auto-suggest on SearchStax Site Search dashboard by going to Recommendations > Auto-suggest > Enable Auto-Suggest > Save Draft > Publish.
  6. Under Configuration > Search and metadata > Search API, select the index, then go to the "Autocomplete" section.
  7. Check the "Search" box, then click on "Edit". Check "SearchStax" under "Enabled suggesters", and hit "Save".
  8. Go to the Search view, and start typing something. The suggestions won't show up.

Proposed resolution

The suggestion terms need to be fetched using the correct nested property names, so that the suggestions array gets populated with the intended data.

If I go to the following file: web/modules/contrib/searchstax/src/Plugin/search_api_autocomplete/suggester/SearchstaxSuggester.php

Inside the function: public function getAutocompleteSuggestions(QueryInterface $query, $incomplete_key, $user_input): array { ...

And change the line: foreach ($data['suggestions'] ?? [] as $suggestion) {

To: foreach ($data['suggest']['studio_suggestor_en'][$user_input]['suggestions'] ?? [] as $suggestion) {

The suggestions dropdown starts appearing again on the Drupal Search view, since the terms are being accessed correctly now.

πŸ› Bug report
Status

Active

Version

1.6

Component

General code

Created by

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

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024