I am using the TGL Twitter module on a client’s site to display their two most recent tweets on the footer of every page, but even though they have newer tweets, for some reason the site seems to be stuck on a pair of tweets from 6 days ago. I have verified that this isn’t a cache issue (I’ve cleared all caches on EE and tested the site on several different computers and mobile devices). At this point all I can think of is that there’s either something wrong with the module or with Twitter’s API.
Here’s the code I’m using:
{exp:tgl_twitter screen_name="EvergreenHosp" limit="2" create_links="user_mentions|hashtags|urls"}
{if count == 1}
<div class="twitter_home_left">
{text}
<small class="tweet_info">{status_relative_date} ago.</small>
</div>
{if:else}
<div class="twitter_home_right">
{text}
<small class="tweet_info">{status_relative_date} ago.</small>
</div>
{/if}
{/exp:tgl_twitter}