It appears the twitter feed is sorting by most-liked tweets and not in chronological order. How do I adjust that?
]]>The feed suddenly won’t pull through on this page. We have a Premium X account and even upgraded to Premium +. We also purchased the Pro version of this Easy Twitter Plugin app to get support from developers. This wouldn’t install due to “fatal error”. Please help.
]]>Hello, thanks for creating this plugin.
the plugin works good on desktop site.
but it does not work on mobile(smartphone) site.
Why? and please tell me how to solve this problem.
Best
]]>Hi
as soon as I activate this plugin, I cannot scroll my website. I haven’t added the shortcode yet.
UPDATE : Found the reason, not related to this plugin.
]]>Guys scratching head here – plugin seems to be only picking up feed from a year ago (Oct 2022) – this is on PC Chrome, and Edge
Mobile it seems to show latest ok…
Any idea why this would be happening?
]]>Hi,
thank you for your plugin;
after activation, I’ve got my logs full of :
is_readable(): open_basedir restriction in effect. File(//wp-content/plugins/easy-twitter-feeds/languages) is not within the allowed path(s):
fromwp-includes/l10n.php:783 is_readable() wp-includes/l10n.php:783 load_textdomain() wp-content/plugins/easy-twitter-feeds/easy-twitter-feeds.php:21 etf_load_textdomain() wp-includes/class-wp-hook.php:310 do_action('plugin_loaded') wp-settings.php:472
and
wp-content/plugins/query-monitor/collectors/languages.php:169
Since it regards only easy-twitter-feeds (I have dozens of plugins), there should be something to fix in it
]]>Hi, I have been completing some site maintenance and updated WordPress to vs 6.2.2. All the feeds on this page are now saying ‘Nothing to see here – yet. When they Tweet, their Tweets will show up here’. Unfortunately, I failed to check if the feeds going into this page were working prior to updating but there is another site I look after which has the same issue and that is still running WordPress 6.1.3. See https://cunninghamhill.herts.sch.uk/
I realise that this has only been tested up to WP 6.1.3 but as you can see it isn’t working on that either so I suspect that it’s something to do with Twitter and their constant backend tinkering rather than the plugin itself.
Can you advise if you’ll be releasing anything in the short term to fix this?
Thanks
]]>Hi, is the title value in the shortcode supposed to show in the end version of the timeline/ feed? I see it briefly show up when the page loads/ refreshes in the line “My Timeline NatlParkService.” It doesn’t seem to be on the feed.
I used the second example on the Details tab with a random username on a post. [timeline username="NatlParkService" theme="light" width="300" height="400" title="My Timeline"]
Thanks!
Occurring on:
WordPress version: 6.2.2
PHP version: 7.4.28 & 8.0.25
Multisite
Post: Classic and Block editor
Text widget in Sidebar
Hi, I cannot get the Display total Followers Count to show. I can only get “false” to show correctly. Is it working for anyone else and I’m missing something? [follow_button username="NatlParkService" size="large" count="true"]
WordPress version: 6.2.2
PHP version: 7.4.28 & 8.0.25
Occurring on multisite
Can I chose the number of tweets displayed? It’s showing 20 tweets now and it’s making the page very long while the blog post itself is short.
]]>Feed isn’t showing up on Firefox but shows up just fine on chrome, edge, and safari.
]]>The feeds are taking a long time to appear and sometimes do not appear at all. Any ideas?
Your plugin has been great and easy to use so I’m reluctant to remove it!
Thanks!
]]>I’m trying to change the title height that says: “Tweets from…” and I’m not sure how to target it with css?
]]>Hi
Love Easy Twitter Feed but it seems to have stopped working with the latest version of WordPress, which at the time of writing is v 6.1.1. See towards the bottom of the page, middle column here: https://nurturing-care.org.
I’ve tried the simplest shortcode possible but still no sign of life.
I know there’s all kinds of coding changes going on at Twitter – you have my sympathy. Any idea if/when you’ll be able to get this working again?
]]>
I am looking to use Easy Twitter Feed on my website. (WordPress 5.6.2)
I have tested to the Football teams twitter feed
“https://twitter.com/WarnboroughFc”
I have embedded to following short code (with and without the @ symbol)
[timeline username=”WarnboroughFc”]
All I get is a link which when clicked takes me to the twitter page, any help appreciated.
Steve
]]>Can I limit number of tweets in the shortcode?
Lovely little plugin BTW! Thanks
]]>Is it possible to remove the Embed and View on Twitter links at the bottom please? Great plug-in… thank you!
]]>Hi @abuhayat!
Thanks for that little sweet plugin ??
I added some options and want to share it:
and I also added rel=”nofollow” to the a href element.
// Shortcode for Timeline
function etf_shortcode_func($atts){
extract( shortcode_atts( array(
'username' => null,
'width' => null,
'height' => null,
'theme' => 'dark',
'title' => null,
'lang' => 'de',
'chrome' => null,
'limit' => null,
'optout' => null,
), $atts ) );
?>
<?php ob_start();?>
<?php if (!empty($username)){ ?>
<a class="twitter-timeline" data-theme="<?php echo $theme; ?>" href="https://twitter.com/<?php echo $username; ?>" data-tweet-limit="<?php echo $tweet-limit; ?>" data-chrome="<?php echo $chrome; ?>" data-lang="<?php echo $lang; ?>" data-dnt="<?php echo $optout; ?>" rel="nofollow"><?php echo $title; ?> <?php echo $username; ?></a>
<?php }else{ echo '<h2>You must enter your Twitter handle in the username attribute of the shortcode. </h2>';}
$output = ob_get_clean();return $output;
}
add_shortcode('timeline','etf_shortcode_func');
]]>