HM... maybe I have figured how you can set all UTF encoding.
I'm from Serbia, and here we have characters: č,ć,š,đ,ž.
I need instead that this characters: c,c,s,dj,z.
How you can made this.
Open files:
product.product_category_form.php
product.product_form.php
shop.browse.php
shop.product_details.php
find the line in all files above:
$input_text = str_replace('_', '-', $input_text);
after that you can put every character to replace:
etc:
$input_text = str_replace('character to replace', 'character to replace with', $input_text);
you must repeat this in above 4 files.
all that files MUST be saved in UTF-8 encoding!
I think that I help!
this can be next step for Forest and coding...
add some extra field with character to replace, with some coma separator or |
etc: č | c, š | s, ....