After writing my first post about TweetSuite and TweetBacks, I noticed that the graphics were not showing up. To get the graphics to show on my blog I had to make a few changes to the TweetSuite.php file.
I changed the following lines:
$rt_this = WP_CONTENT_URL.’/plugins/’.plugin_basename(dirname(__FILE__)).’/rt_this.gif’;
to
$rt_this = ‘http://www.blogzentih.com/wp-content/plugins/TweetSuite/rt_this.gif’;
—————–
(file_exists(WP_CONTENT_URL.’/plugins/’.plugin_basename(dirname(__FILE__)).’/’.$fn)) {
to
(file_exists(wp-content.’/plugins/’.plugin_basename(dirname(__FILE__)).’/’.$fn)) {
____________________
$src=WP_CONTENT_URL.’/plugins/’.plugin_basename(dirname(__FILE__)).’/’.$fn;
to
$src=wp-content.’/plugins/’.plugin_basename(dirname(__FILE__)).’/’.$fn;
___________________
$src = WP_CONTENT_URL.’/plugins/’.plugin_basename(dirname(__FILE__)).”/rt-gif.php?count=$count”
to
$src = “http://www.blogzenith.com/wp-content/plugins/TweetSuite/rt-gif.php?count=$count”;
And then finally the graphic appeared on my site. I am still looking into if I need to make more changes to the file.
















