pzanno
Forum Replies Created
-
We are experiencing this issue as well and it’s affecting a large chunk of our site. We’ve had to disable the plugin to alleviate the issue for now.
Forum: Plugins
In reply to: [WP Twitter Feeds] feeds don't refresh with new tweetsThat wasn’t the problem for me. In
controllers/twitter_widget.classline 210 it has the followingif(false === ($tweets = get_transient($transName) ) ) :This was always evaluating tofalseand so the api was never even being called. Can you provide some details in to why this was happening? I’m not familiar withget_transientand the docs don’t shed much light on it.Anyway, after commenting out the line and the
endif;down on line262I got it working again, but I would like some explanation here.edit
As a quick follow up, I debugged the value of $timeto_store as you might ask me what it was set to, but it was set to4which means, according to the docs thatset_transientshould have expired after 4 minutes. I assume the get/set transient functions acts like a cache, and if that’s the case they were never clearing for me. I checked the database tablewp_optionsas well for thebackupoption and it was there and theautoloadcolumns was set toyes. Not sure if you need that information, but I thought I’d add it just in case.Forum: Plugins
In reply to: [WP Twitter Feeds] feeds don't refresh with new tweetsI’m having this issue as well. The latest tweets are from 1 week ago. I tried removing the widget and re-adding the api keys. I also tried deactivating and deleting the plugin and reinstalling, but neither of these resolved the issue. The latest tweets were the same, from 1 week ago.
The only relevant update we did is we did update the core of WordPress to 4.3 in the last few weeks.