Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
778 views
in Plugins by

Hello friends,

I did upload today the SEO Link Master Plugin for q2a, plugin work good, but i did found that text in post are without accents (spanish), it meant all accents in post was converted to rare characters.

Any example:

Text in post before plugin SEO link plugin:

Afición.

 

Text after apply SEO Link plugin:

afición

 

I need to resolve thi problem please!!!

Thank you friends!! 

1 Answer

0 votes
by

I have the same issue with some italian language chars (è, à, ì, ...)

Try to change this line (qa-seo-links.php, line 41)

from :

$dom->loadHTML($safe);

to :

$encod  = mb_detect_encoding($safe);
$dom->loadHTML(mb_convert_encoding($safe, 'HTML-ENTITIES', $encod));

 

by
I updated the plugin. thanks
...