• Resolved dzamanakos

    (@dzamanakos)


    Hi, i need the autosuggest feature to return same results with accents, etc.
    For example α is the same as ?.

    In the documentation, i see that this can be done with the “filter”: [ “asciifolding” ] during indexing.

    Is it possible to do this with your plugin without modifying the plugin code?

    best,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Felipe Elia

    (@felipeelia)

    Hi!

    As we don’t provide support here, please visit our GitHub repository and search for issues related to similar problems. If that doesn’t help, feel free to open a new one, outlining your use case and, if possible, sharing your website URL.

    As all the next steps will happen on GitHub, I’m marking the topic as resolved now. Thanks!

    Thread Starter dzamanakos

    (@dzamanakos)

    Thank you, if anyone see this post the solution is with a filter :

    add_filter( ‘ep_config_mapping’, function( $mappings ) {
    $mappings[‘settings’][‘analysis’][‘analyzer’][‘default’][‘filter’][] = ‘asciifolding’;
    return $mappings;
    } )

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘question about filters (asciifolding)’ is closed to new replies.