Does this mod work with accents?
I've urls with these chars:
?, ?, ?, ?, ? and
?
All are missed..
I need all chars for my spanish forum.
Please, help.
---------------------------------
Well, I know how fix it. I've set "
Italian" Option in Admin > TfSEO >
Character Replacements
Then, edit this file: includes/
functions_tfseo_chr_ita.php
and modify:
function remove_accents by this one..
PHP Code:
<?php
function remove_accents($string){
return strtr($string,
"€&????????@???",
"eeieeoaiouaaun");
}
?>
It's all.