@demoive, the problem was not solved. In this version (3.2) I had to put again the utf8_decode command.
Line 639 for me at this moment:
$document->loadHTML( '<?xml encoding="' . $blog_charset . '" ?><h1>' . utf8_decode($title) . '</h1>' );
I’ve found the problem:
At the file
class-instant-articles-post.php
line 638
I’ve added utf8_decode to $title variable:
$document->loadHTML( '<?xml encoding="' . $blog_charset . '" ?><h1>' . utf8_decode($title) . '</h1>' );
And now it’s working corrrectly.
I don’t know if this is the best approach, but it worked for me.
(version 3.1.3)
Hello,
I’m using version 3.1.3 and getting incorrect accent chars inside H1 element (that is created automatically inside header). This is the only problem. The rest (title and text) are correct.
This is the RSS: http://fiquelinda.com.br/feed/instant-articles
Does anyone knows what should I do to fix this?
Thanks in advanced.