- Issue created by @dieterholvoet
- 🇧🇪Belgium dieterholvoet Brussels
This would be fixed if we could somehow not let Tagify filter the results. So only Drupal does filtering, Tagify just shows the list of results that's returned by Drupal.
When changing the label of a result to something completely different, the result is no longer being shown in the dropdown, even though it's present in the entity autocomplete JSON response.
Implement hook_tagify_autocomplete_match_alter() like this:
/**
* Implements hook_tagify_autocomplete_match_alter().
*/
function my_module_tagify_autocomplete_match_alter(?string &$label, ?string &$info_label, array $context): void
{
$label = 'Test';
}
Search for the original title of an entity. It should appear in the search results with 'Test' as label, but it doesn't.
Active
1.2
Code
This would be fixed if we could somehow not let Tagify filter the results. So only Drupal does filtering, Tagify just shows the list of results that's returned by Drupal.