2012-03-17, 07:51:01
Hey Rene,
Thanks for that, also looks nice, some I did (using some php) before turning it into a plugin...
And yes, caching might always be a problem with this, I noticed someone using a kind of local cache, checking timestamps before getting tweets. I was already thinking of doing that too.
keep you posted,
regards,
Frank
Thanks for that, also looks nice, some I did (using some php) before turning it into a plugin...
And yes, caching might always be a problem with this, I noticed someone using a kind of local cache, checking timestamps before getting tweets. I was already thinking of doing that too.
keep you posted,
regards,
Frank
Rene Wrote:Hi Frank,
Thx for the plugin, looks great.
I was busy to create a plugin for this to. But ended tweaking the default Twitter widget and this looks great in the sidebar. See my http://getsimple.dare-is.nl/twitter
Here is the code, replace 'xxx' with your Twitter username
Code:<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<h2>Twitter Feeds</h2>
<style>
.twtr-widget {
margin-left: -15px;
}
.twtr-widget .twtr-tweet {
border-bottom: 1px inset #666;
}
.twtr-hd,
.twtr-ft {
display: none!important;
}
</style>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 3000,
width: 250,
height: 300,
theme: {
shell: {
background: '#EFEFEF',
color: '#575657'
},
tweets: {
background: '#EFEFEF',
color: '#333333',
links: '#315ee6'
}
},
features: {
scrollbar: true,
loop: true,
live: true,
behavior: 'default'
}
}).render().setUser('xxx').start();
</script>
EDIT: Hmm, the widget is having a HUGE caching problem. So don't use it (yet).