Hello,
I am working on a search for food products (with brands and categories in the search). Indexing went well but after some tests, the client gave me a feedback that I can’t find a solution to.
Having search hits for the query “sel” (salt in french) :
{
"hits": [
{
"contentType": "product",
"name": "Sel à la truffe",
},
{
"contentType": "product",
"name": "HUILE D'OLIVE SELECTION",
},
{
"contentType": "category",
"name": "Sélection du marché",
}
]
}
The first result is perfectly what I want.
For this particular word (and maybe some others cases that we didn’t discover yet) I want to have a strict match (without accent and just 3 letters “sel”).
Is there a way to restrain results without accent and exact-match for specific words like sel ?
I have tried to use Disable typo tolerance on words in the config but without success.
Thank you