Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Ignoring special characters › Reply To: Ignoring special characters
June 26, 2020 at 7:26 am
#28096
Keymaster
Hi Majid,
Use the lower case for both in the replacement:
$original = array(
'Ā', 'ā'
);
$replace = array(
'a', 'a'
);