Hi There,
WP Twitter Feeds only showing tweets from 6 months ago, is there any way to fix this, please?
Thank you
]]>The way to do it is to authenticate each user to a single application, using https://developer.twitter.com/en/docs/twitter-for-websites/log-in-with-twitter/login-in-with-twitter.html rather than requiring each individual to register a developer account and their own app. But this has to be implemented by the plugin developer.
]]>Hi,
the plugin was working great since 3 years but I recently change my Twitter account password and the plugin don’t refresh anymore…
I didn’t change the API key or access token, nothing like this.
Just my Twitter password.
How can I update my widget with the new password ?
Thanks !
I need multiple twitter accounts/feeds on one site. I have a membership website and want them to be able to show their personal twitter feeds on their user profiles. How can I do this?
]]>Lines are wrapping in the middle of a word, for example
—
Conn
ector
—
This is a duplicate of https://www.ads-software.com/support/topic/no-word-wrap-1/ which required CSS changes to fix, which I’d prefer not to have to make. The plugin should handle this gracefully.
Hello:
I’ll like to start with a thank you to you guys for this plugin, it’s really reliable and works. However I have an issue that is flooding my debug.log file with PHP notices, since I don’t use the option “Show “ago” after the time” I’m constantly getting this: Undefined variable: displayAgo in ~/wp-content/plugins/wp-twitter-feeds/controller/twitter_widget.class.php on line 344.
A quick review and change to the code will fix this issue for me but honestly I’ll like to keep receiving updates if possible.
Thank you again and I’m looking forward that you guys provide a fix.
We were running plugin version 1.4.7 successfully on a site until recently when we upgraded to 1.4.9
We have two Twitter widgets in our sidebar and found that occasionally the page would crash on loading with a Fatal Error.
The full error was:
PHP Fatal error: Cannot redeclare class viwptf_TwitterOAuth in /xxx/wp-content/plugins/wp-twitter-feeds/controller/twitteroauth/twitteroauth.php on line 11
Tracing this through, the OAuth file is being called from line 223 of controller/twitter_widget_class.php
In 1.4.7 the OAuth file was included with require_once(), in 1.4.9 it’s included with include()
Because the OAuth file declares a class, it must not be included more than once – that’s what’s causing the fatal error.
The reason that the error only occurs occasionally is that the plugin is caching its data from Twitter in a transient. It only talks to Twitter (and hence only has a need of the OAuth class) if its transient has expired. So the first time you load the page you’ll see the fatal error. Refreshing the page will then display correctly. Waiting until the transient has expired (default 4 minutes) and then hitting refresh will cause the plugin to have to talk to Twitter again and so the error will reappear.
The fix is very easy. In wp-twitter-feeds/controller/twitter_widget_class.php on line 223, change ‘include’ back to ‘require_once’
The twitteroauth.php file is also loaded from a call in views/slider.php but that call is a require_once() in both 1.4.7 and 1.4.9 – so that’s still safe.
If you’ve been having problems with this plugin then hopefully that helps you out.
If you’re the plugin author, could you add this change into the next release please? Thanks!
]]>Hi,
I previously found a page on google that assisted me with regards to where to put the twitter code but I cant find it. The twitter feed is out of date on our site. Please assist.
Many Thanks
]]>Loklak is a search indexer that offers additional data on top of tweets and all of it anonymously. One can query loklak API to get results similar to those in Official Twitter API.
It is Open Source and does not require twitter authentication.
We request you to add support for loklak API along with twitter.
Please refer to loklak.org for more information.
We have tried to integrate Loklak API to your plugin.
Please refer to https://github.com/fossasia/wp-twitter-feeds
Hi,
Most of time below code is Conflicts with other plugin,
For resolve this problem please see below.
The code is in admin_script.js:
/******************* Code **********************/
// Widget Saved
$(document).ajaxSuccess(function(e, xhr, settings) {
// reset toggles - clean view
$('.secrets > div, .avatar > div, .twitterFollow > div, .modTime > div, .twitterIntents > div').slideUp();
$('.secrets h4 > span, .avatar h4 > span, .twitterFollow h4 > span, .modTime h4 > span, .twitterIntents h4 > span').html("▼");
// re-initiate the colour picker
if(settings.data.search('action=save-widget') != -1 ) {
$('.intentColor .wp-picker-container').remove();
updateColorPicker();
}
}); // END AJAX success
/***************** End code ********************/
The new code is :
/******************* Code **********************/
// Widget Saved
$(document).ajaxSuccess(function(e, xhr, settings) {
// reset toggles - clean view
$('.secrets > div, .avatar > div, .twitterFollow > div, .modTime > div, .twitterIntents > div').slideUp();
$('.secrets h4 > span, .avatar h4 > span, .twitterFollow h4 > span, .modTime h4 > span, .twitterIntents h4 > span').html("▼");
// re-initiate the colour picker
if(typeof(settings.data.search) != "undefined"){
if(settings.data.search('action=save-widget') != -1 ) {
$('.intentColor .wp-picker-container').remove();
updateColorPicker();
}
}
}); // END AJAX success
/***************** End code ********************/
Thanks
]]>Hi, I’m new to the great world of WP and twitter plugins and having a small problem. I’ve configured the widget with the 4 pieces of info from twitter (API,secret, access token, access token secret) and I get “Waiting for twitter.com…Try reloading the page again” displayed.
I’m sure I’m making a basic error, but I’ve regenerated the api details multiple times, delete the entire widget, re-entered details (multiple times) and it’s never worked.
The only thing I cant seem to do is regenerate the access token and token secret. When i click the button it says its regenerated but stays the same – is this correct?? Am I missing something here? Any help much appreciated.
I’ve seen a couple of other posts with the same issue, but haven’t seen a clear resolution.
]]>Hi there – I’m going through my error logs as my site is sometimes not loading properly & in the error logs I found this error message – is this normal? how can I fix it?
PHP Fatal error: Cannot redeclare class viwptf_TwitterOAuth in /var/www/vhosts/xxxx.co.uk/httpdocs/wp-content/plugins/wp-twitter-feeds/controller/twitteroauth/twitteroauth.php on line 11
]]>Hi, this plugin is ideal for my purposes, however— for some reason there are 2 x shortlinks at the end of each tweet. Any idea why this would be?
An example can be seen in the sidebar on this page:
https://myadvocatespain.com/lawyer-locator-spain/
Thanks for any ideas on how to solve this.
Steve
]]>WIdget showing twitter posts from 6 months ago. When I change twitter users it works. When I put back the twitter user it should be, it goes back to showing 6 months ago.
]]>We noticed recently that the avatar images are not showing any more.
it just shows the text => Tweet Avatar (the alt text).
How can we solve this?
]]>Does this widget embed the tweet content in to source code of the page?
]]>I keep getting an “Invalid screen name” error message come up.
I have tried countless usernames and none work.
Can someone help fix this please?
Hey,
Great plugin.
When I activate the plugin it does something to my theme that makes this text “ion-information-circled” appear on top of every listing on my site i.e. https://www.pwenet.com/listings/. If I disable the plugin it goes away.
Can you help? It is seems to be some sort of issue with this piece of code: data-icon=”ion-information-circled”
Cheers,
]]>Hello There
Currently twitter.com is suffering a massive outtage.
Because we use the plugin “WP Twitter Feeds” to show “News” our page has 30 seconds delay when the plugin is activated and twitter.com is unreachable.
It would be great if we could change the timeout setting for the plugin or when the page wouldn’t be blocked while the twitter feed is loaded.
Greetings and Thanks
Phil
Anyone seen this? the follow links (top and bottom) are off the page/container in Safari, desktop and mobile. What’s odd is that as soon as I inspect any element on the page and turn off a style, it snaps to where it should be. The white background in the iage is the page, the grey is what shouldn’t be there and is off the page. Any styles I can apply?
]]>I noticed that the links lead to user profile page for both the time and the username. Is there a way to remove one of the links? Two links to the same page for each tweet seems redundant. For now I have deselected show username but it would be nice to show the username in each tweet like twitter home page does.
Thank you
]]>I do not display the intents and I see that a bunch of @font face code is included related to intents. can I safely remove this css data uri from the wp-twitter-feeds/css/admin_style.min.css file?
Thank you for a great plugin!
]]>A black dot or “period” is showing up in the tweet_wrap on my client’s home page.
I’ve dug into the code for the page, but can not find what’s causing it.
Can you take a look and let me know how I can remove or hide it.
https://athomewithgrowingold.com
thanks,
g
A black dot or “period” is showing up in the tweet_wrap on my client’s home page.
I’ve dug into the code for the page, but can not find what’s causing it.
Can you take a look and let me know how I can remove or hide it.
https://athomewithgrowingold.com
thanks,
g
There was a mention here of a fix for those of us having strange timestamp issues (new tweets show 7 hours ago, then hours go down). I see in the code the fix was implemented but I’m still having issues.
One thing that I’ve been able to do to fix this: Going to Settings -> General, and changing my timezone to UTC. If I use my city name, or UTC-7, etc., I still have an issue. This definitely doesn’t seem to affect all users, and I used a widget from another developer and had the same exact issue. At least this pins it down on WordPress settings and not php/server/Twitter time (in my opinion).
Is there some code that can be added (I would volunteer to update my site to try it out) to fix this? Maybe a settings box programmed to use UTC in lieu of whatever WordPress timezone settings are? It would seem that since changing WordPress time fixes this for me, the widget is using that time in some fashion. Thanks!
]]>The plug in was working great all year.
Now it has stopped pulling feeds, as of two weeks ago.
What can I do to fix this?
]]>I keep getting an “Invalid screen name” error even though I’ve copied and pasted my username about 10 times. I saw someone had the same issue before. Has a work around been fixed? My username is “StandupComVault”
]]>We just had a site go down and found there were over 100,000 entries in the wp_options table with “list-tweets” in option name… about half were transients and half were backups of some sort. The server was bombing because the system was running out of memory trying to load wp_options on page loads.
We’ve removed all the transient entries and the site came back up, but there are still a ton of -backup entries. Are those safe to delete from the DB? Any idea what might be causing all the record generation (or missed cleanout/expiration?)
]]>Hi there,
How can I safely modify the plugin files without losing the changes through an update? I couldn’t find any documentation on this.
Cheers
]]>Does your plugin have a [shortcode]
capability for embedding in pages rather than implementing it as a sidebar widget?