Hi there,
Thanks for the answer.
It works, but not as expected, all accented characters (ááééííóó????úúüü??) went under #
I added some characters to the alphabet with the following code, it worked fine until now.
add_filter( 'a-z-listing-alphabet', 'add_hun');
function add_hun( $alphabet ) {
return 'Aáà??aáà?a,Bb,C?c?,Dd,Eéè?êeéè?ê,Ff,Gg,Hh,Iíì??iíì??,Jj,Kk,Ll,Mm,Nn,Oóò???oóò???,Pp,Qq,Rr,Ss?,Tt,Uúùü??uúùü??,Vv,Ww,Xx,Yy,Zz';
}
Thanks