researching and reading about wp_cache , do I have to go into the code and change this or this is something I download?
Sorry,
Ash
I believe that Twitter has changed their API recently which may have an impact on that widget. What plugin are you using for that?
The Wickett Twitter Update one ,
turns out that one was fixed by updating it 🙂 – obvious really!!!
so the only one that STILL doesn’t seem to work is..
http://www.katearnoldnutrition.co.uk/index.html
but that seems not to be a WP issue – thanks very much everyone!
Is it using the same plugin? I can see that it is using javascript in the footer with this source
http://twitter.com/statuses/user_timeline/KANutrition.json?callback=twitterCallback2&count=2
Which is exactly the issue that I was having with my plugin, if you know where that is being generated I’d change it to:
http://api.twitter.com/1/statuses/user_timeline.json?screen_name=KANutrition&count=2&callback=twitterCallback2
or at least the front part of it (I’d assume the user name, callback and count are variables so don’t change that.
hey ,
yeah it looked like this
<script type=”text/javascript” src=”http://twitter.com/javascripts/blogger.js”></script>
<script type=”text/javascript” src=”http://twitter.com/statuses/user_timeline/KANutrition.json?callback=twitterCallback2&count=2″></script>
tried switching the quoted bits to the above and it didn’t work sadly 🙁
This source seems to work (going to it via a browser generates the info). Which means if it still doesn’t work then there is a problem with the js that is processing it.
http://api.twitter.com/1/statuses/user_timeline.json?screen_name=KANutrition&callback=twitterCallback2&count=2
You are my new hero!!! thank you very much
No worries! I know the frustration this can cause. Happy coding!