I’ve just had a trawl through the plugin code, but I’m not familiar with it at all and nothing jumped out at me.
I’d suggest contact Alex King, I’m sure he’ll be able to give you an answer!
Thanks alex, i will hope Alex King finds this post…
You can try contacting him directly at:
http://alexking.org/contact
Having just looked at his Readme, I found what the likely candidate is in the plugin for generating this output.
from line 479
$output = aktt_make_clickable(wp_specialchars($tweet->tw_text)).' <a href="http://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a>';
I would imagine that if you change this to read:
$output = ' <a href="http://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a>'. aktt_make_clickable(wp_specialchars($tweet->tw_text));
That might do it. However I can’t test this as I don’t have a twitter account 🙂
That didnt do it but thanks anyway. His website says he does not want to be contacted regarding wp plugin support. So i will see if he finds it here.
Thanks