Hi,
I have problem to search for words containing åäö-characters using the Kirby search-function. My search function fetch the data through search.json.php
. Inside this file I first used echo json_encode($data);
and got encoded json-data where å
equals to \u00e5
.
Then I tried to change it to echo json_encode($data, JSON_UNESCAPED_UNICODE);
Then I get out å
in my json-data, but I still can not search using åäö.
Any idea of what I can do?