Comments on: TweetMeMe or Tweet Me Not! http://technotip.org/tweetmeme-or-tweet-me-not/ A Blog For Bloggers Thu, 23 Jul 2009 20:07:49 +0000 hourly 1 https://wordpress.org/?v=6.5.5 By: Strictly Online Biz http://technotip.org/tweetmeme-or-tweet-me-not/#comment-15787 Thu, 23 Jul 2009 20:07:49 +0000 http://technotip.org/?p=2888#comment-15787 I’ll download the new version right away and try it on localhost. Thanks

]]>
By: Satish http://technotip.org/tweetmeme-or-tweet-me-not/#comment-15786 Thu, 23 Jul 2009 19:55:14 +0000 http://technotip.org/?p=2888#comment-15786 @Strictly Online Biz, Hmm…I have written the manual coding part in the above post.
And removing the re-tweet buttons from “about-me” and other pages and “homepage” is very easy. Just goto the TweetMeme plugin settings page(inside your WordPress) and un-check the options to show the re-tweet buttons on homepage and other pages. This will make the re-tweet buttons to only appear on the post pages.

If you are using old TweetMeme plugin, its better you update the plugin to new version.

]]>
By: Strictly Online Biz http://technotip.org/tweetmeme-or-tweet-me-not/#comment-15782 Thu, 23 Jul 2009 19:25:50 +0000 http://technotip.org/?p=2888#comment-15782 Manual coding is the way to go.The plug-in places the button on every page of your site except the home page and that was part of what made me hardcode it into my template. Even the contact, privacy policy and sitemap page had a tweetmeme button. how frustrating.

You can use this code for blogger blogs after the tag <data :post.body/>


<script type=”text/javascript”>
tweetmeme_url = ‘<data :post.url></data>’;
tweetmeme_source = ‘your twitter id’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>

OR you can use this code for wordpress blogs after the tag < ?php the_content("Read the rest of this entry »"); ?>

tweetmeme_url = ”;
tweetmeme_source = ‘your twitter id’;

Hope that helps.

]]>