Actually, when a tweet contains á é í ó ú ñ, etc, it breaks each character as a separate tweet.
How can we solve this?
Actually, when a tweet contains á é í ó ú ñ, etc, it breaks each character as a separate tweet.
How can we solve this?
I had a similar problem with things like quotes causing issues
Put this after line 122 in wp-content/plugins/elegant-twitter-widget.php
$response = str_replace('<text>', '<text><![CDATA[', $response);
$response = str_replace('</text>', ']]></text>', $response);
Might help.
Hi Oliverseal, this code works perfectly, it’s wonderful!, and this dosen´t work if you us the spanish lenguaje!
This topic has been closed to new replies.