You can try downloading the theme again and just replacing that one file. Hopefully, your theme author has updated and accounted for this. Not sure if this is true or not, but most of the solutions I’m coming to find will also be deprecated in the upcoming months. It really sucks.
I ended up making a function for a new dynamic sidebar, and downloading this widget – http://wordpress.org/extend/plugins/twitter-widget-pro/ – and putting it there. It’s easy to style and still functions. Not sure if it will continue to work, I haven’t looked at the code of it yet to see how it’s working, it was just an easy solution. Hope that helps.
I do think it needs to be noted that the solution of modifying your request URL as dan_fisher noted will be deprecated come March 2013 according to Twitter.
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=episod
will not work eventually…. https://dev.twitter.com/discussions/11631
The ampersand.
$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + o.username + '&count=' + o.count + '&callback=?', function(data){
I was using ”?count” like before. Hope this helps someone.
https://dev.twitter.com/docs/api/1.1/get/statuses/user_timelineHm, so maybe there is more to my solution? I’m trying to go through all of the old themes I purchased through Themeforest and fix them, so
$.getJSON('http://twitter.com/status/user_timeline/' + o.username + '.json?count=' + o.count + '&callback=?', function(data){
became
$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + o.username + '?count=' + o.count + '&callback=?', function(data){
and I’m being met with a [{"message":"Sorry, that page does not exist","code":34}]
I’m thinking I need to do more to ensure this is working correct. The current theme is Adora.
awesome. thanks for the responses guys.
It seems as though there is an issue with Twitter’s API recently? A lot of the themes on Themeforest that incorporate it, and some of the sites I incorporate it with, aren’t currently working because of the ‘upgrade’ to Twitter API 1 .1.
Does anyone have any knowledge of this?
https://dev.twitter.com/discussions/10803Any discussion as to what the old themes and their developers should do?
