Twitter Feed Issues - Profile picture not updating

Soldato
Joined
1 Dec 2004
Posts
22,367
Location
S.Wales
Hi there,

I have updated my profile picture on twitter and it shows on my main profile page, but when I go to create the code to stick on my webpage through twitter, I get the default purple icon with the bird (check out the icon here iv tried re-creating the web-code from the twitter website but yet it still doesnt update.

Here is the code that the twitter website created for my script.

Code:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 6000,
  width: 100,
  height: 270,
  theme: {
    shell: {
      background: '#1496B0',
      color: '#ffffff'
    },
    tweets: {
      background: '#edf2fa',
      color: '#242424',
      links: '#41ba0d'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('******').start();
</script>

Can anybody help?
 
Last edited:
Soldato
OP
Joined
1 Dec 2004
Posts
22,367
Location
S.Wales
It was updated about 4-5 hours ago, Iv posted on twitters forum, but if anyone here knows anything I would appriciate it. Thanks
 
Associate
Joined
17 Mar 2008
Posts
135
Yo,

Try this:

Add

Code:
<ul id="twitter_update_list">

</ul>

Then somewhere below add:

Code:
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/ARMWILSON.json?callback=twitterCallback2&amp;count=4"></script>

Replace ARMWILSON with your own twitter profile.

Least then you can style it up, and add your own images as you wish.
 
Back
Top Bottom