Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Ignoring special characters › Reply To: Ignoring special characters
June 25, 2020 at 3:22 pm
#28095
Participant
Hi Ernest,
One issue regarding small and capital letters (case sensitivity):
If we use:
$original = array(
‘Ā’, ‘ā’
);
$replace = array(
‘A’, ‘a’
);
Only search string “Ava” will find the post title “Āvā”. How to make it case insensitive so that it can also be found with search strings like: “ava” or “avA” ?
Regards,
Majid