To fix the “create_function() is deprecated” error you need to change some lines in the plugins’ index.php file.
Remove:
add_action('widgets_init', create_function('', 'return register_widget("wp_tweets");'));
Add:
function new_twitter_init_widget () {
return register_widget("wp_tweets");
}
add_action ('widgets_init', 'new_twitter_init_widget');
This plugin hasn’t been update for years but I’ve yet to find another which is so simple. If you have recommendations then please let me know.
]]>The debug mode does not produce any messages, if the API limit would be reached we’d see that right? Account was not switched to private, the number of tweets to be displayed was not changed from 1. The wordpress was updated to 4.3 though. The code right before and right after [mintweet] shortcode is reachable.
]]>Hi there,
We’ve installed the plugin, and configured it. We’ve also managed to get it to display tweets via a shortcode in a post.
However, in testing, we’ve noticed that the plugin displays tweets from one account, but not tweets from the another. We are not trying to show tweets from multiple accounts simultaneously – it’s just that both accounts have been set up on Twitter in the same way, but one works and the other doesn’t.
Unfortunately, enabling the debug option does not show any debug message. It did so in the beginning (215 – Bad Authentication), when we made a mistake with the auth data, but not any more.
Do you have any suggestions for debugging? For example, is there somewhere we can tap into the output of the call that’s being made to Twitter? At the moment, it’s hard to tell where/why it’s not working.
WordPress 4.1
Plugin version 1.5
Thank you,
Nao
]]>Hello,
please add a “posted”-timestamp to the widget (and a option to activate / deactivate it). it would be great.
]]>Please check your Twitter Application details, that you have specified the number of tweets to load, if you have ran out of API requests, or if your account is set to private
Your plugin is not compatible with WordPress 4.0. I’ve verified that the Twitter access tokens are still valid. No extra information is displayed with Debug enabled.
]]>Fatal error: Cannot redeclare class OAuthSignatureMethod_HMAC_SHA1 in /home/directr1/public_html/wp-content/plugins/minimalist-twitter-widget/lib/OAuth.php on line 136
Im getting this error since i activated some functions on jetpack plugin, please help!
Thanks!
]]>Hello,
Is it possible to load a twitter icon somewhere on top so people can quickly recognize it is a twitter feed?
Thanks!
]]>Loved your plugin and it was running great on my Apache staging service but when I put it things on my Nginx production machine *sad face*
2014/09/08 19:03:40 [error] 16751#0: *3 FastCGI sent in stderr: "PHP message: PHP Warning: Invalid argument supplied for foreach() in /usr/share/nginx/domain.com/public_html/wp-content/plugins/minimalist-twitter-widget/index.php on line 19" while reading upstream, client: xxxxxx, server: domain.com, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm-www.sock:", host: "domain.com"
From what I’ve been able to Google together makes me think this is something I need to ask you about. Absolutely loved the look so hoping you can help!
]]>Hi there! This is a great plugin (as is your other Instagram one) and I love using it. I only have one question, ?how can you flush the cache? Going from development into production I changed TW accounts, but it still reflects the old tweets ??
Thanks a lot,
Sergio
Shortcodes should return content, not print it. As it’s written the shortcode always lists tweets before the content, completely ignoring placement.
]]>