How can I display non-latin characters in friendly URLs? In my case thai letters.
This should be quite easy using url encoding.
For example, thai word for "shoe":
รองเท้า
with url encoding it's:
%E0%B8%A3%E0%B8%AD%E0%B8%87%E0%B9%80%E0%B8%97%E0%B9%89%E0%B8%B2
But prestashop filt...