I am trying to add this code to the Blank Sidebox Add On:
Code:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 30000,
  width: 'auto',
  height: 300,
  theme: {
    shell: {
      background: '#ffffff',
      color: '#000000'
    },
    tweets: {
      background: '#ffffff',
      color: '#636363',
      links: '#c8b87c'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('Somebody').start();
</script>
I am trying to add this code to the "blank_sidebox_defines.php" so that it shows up in the sidebox, but whenever I try to add it where it says 'Replace this text...', I get thrown an error. How do I add it here?:
Code:
<?php

define('BOX_HEADING_BLANK_SIDEBOX', 'Twitter');
define('TEXT_BLANK_SIDEBOX', 'Replace this text with your HTML content.');

?>