MyBB Community Forums

Full Version: [How To?] Twitter feed, urgent help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add my twitter feed into my sideboxes??

When I put the HTML code in from twitter it just shows "@tweets from "mytwittername" and it doesn't show my live tweets and feed, it just shows that link which you got to click on then it takes you to my feed.
Don't know if this is what you're looking for! But I use this, just change the colours & size to suit. Then put your username in the last bit of code. username not @username

<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 30000,
  width: 250,
  height: 300,
  theme: {
    shell: {
      background: '#2e7d3f',
      color: '#ffffff'
    },
    tweets: {
      background: '#b5e4bf',
      color: '#000000',
      links: '#3e34c2'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    behavior: 'all'
  }
}).render().setUser('YOUR USER NAME').start();
</script>