jceruniq
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Simple solution to gallery reloadLuckely the costumer was satisfied with the results I could produce by using the plugin Auto Refresh Single Page. It limits the time you can view the image on the page(because it reloads it) but at least it limits the reload to the page.
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Simple solution to gallery reloadAppears that the code makes the whole site, including admin pages, reload every 10 secs. Anyone with a better solution is welcome to share.
Then I have no idea why the copy Tweets are made.
I have however found that the code below gives the wanted limit and only shows tweets once, unless they are retweeted. I only see the five tweets made so far despite the limit being set at 7.
<div class="entry"> <div class="tweets"> <div class="tweets_header">My own title</a></div> <div class="content_tweets"> </div> <div class="tweets_footer"> <span id="bird"></span> </div> </div> <script type="text/javascript"> jQuery(".content_tweets").miniTwitter({ username:"Nyfortuna", retweet:true limit:7 }); </script> </div>Got the same problem, my guess is that it is the cache, as my problem came after trying to replace a normal link with one limited to 7 posts.
This also explains why [minitwitter username=”webdevdesigner” limit=7] gave the tweets from webdevdesigner followed by the tweets from the earlier source I asked for Tweets from.(asked for one, replaced it with the webdevdesigner and saw the ones from the first although the script calling the first was deleted).
Any way to clean the ‘mini Twitter feed’ cache?
It could also be a conflict from me calling the tweets in the footer with the code <div class=”entry”>
<div class=”tweets”>
<div class=”tweets_header”>Fra Twitter</div>
<div class=”content_tweets”> </div>
<div class=”tweets_footer”>
<span id=”bird”></span>
</div>
</div>
<script type=”text/javascript”>
jQuery(“.content_tweets”).miniTwitter({
username:”costumerstwitter”,
retweet:true
});
</script></div>