Tag Archives: Easy Retweet

Disable/Enable retweet button for each post

Disable/Enable retweet button for each post

Okay, yet another update to my Easy Retweet Plugin. :)

Configure retweet button for each post

Now you can enable or disable the retweet button for each post or page. When you update to the new version, you will see a new box on the right hand side of the write post/page screen where you can enable or disable the button.

This setting will over ride all the other options which are set in the admin console page.

Screenshot

Easy Retweet WordPress Plugin Screenshot

Removed the hard coded wp-content path

I have also removed the hard coded reference to the wp-content path. This means that the Plugin will work for people who have moved their wp-content to a different folder.

This change involved a hack to make the JavaScript work properly. I will write an article explaining this hack in detail, meanwhile if you can’t wait then check out the source code. It is well documented. :)

Download

You can download the latest version of the Plugin from the Plugin’s homepage.

Feedback

Please keep the feedback coming and if you want me to add any new features or find a bug, please leave a comment.

Vote for the Plugin

If you have used this Plugin and like it, please vote it and help me win the WordPress Plugin competition.

Posted in WordPress | Tagged , , | 5 Comments

Easy Retweet now supports creating shorturls using your own bit.ly API key

Easy Retweet now supports creating shorturls using your own bit.ly API key

I have added some new features and fixed a couple of bugs to my Easy Retweet Plugin after the recent update.

Specifying your own bit.ly API Key

Now you can specify your own bit.ly API key to create shorturls and associate them to your own bit.ly account, instead of using the build-in default account.

The main use of this feature is that, now you can track the clicks and stats for these shorturls from your bit.ly account dashboard. But be warned that, once option is enabled, the Plugin will create shorturl for all posts in your blog. Your bit.ly account might become a mess, if you have large number of posts in your blog.

Screenshot

The following is the screenshot of the admin UI with the new features

easy-retweet-new-settings

Download

You can download the latest version of the Plugin from the Plugin’s homepage.

Feedback

Please keep the feedback coming and if you want me to add any new features or find a bug, please leave a comment.

Vote for the Plugin

If you have used this Plugin and like it, please vote it and help me win the WordPress Plugin competition.

Posted in WordPress | Tagged , , | 6 Comments

One more way of adding retweet buttons to posts in WordPress

One more way of adding retweet buttons to posts in WordPress

I have added some more new features to the Easy Retweet Plugin after the recent update.

Support for shortcode

Easy Retweet Plugin now supports shortcodes. Now you can place the retweet button anywhere (and even within) in the post. All you have to do is just to include the following shortcode, where you want the button to be displayed.

[ easy-retweet ]

The above shortcode will be replaced with the retweet button when the post is rendered. Cool hah? :)

Adding prefix to the Twitter message

The other new feature is that, now you can specify any text as prefix for the Twitter message. You can add your own twitter username or any other message that you wanted to be prefixed.

The following is the screenshot of the admin UI with this feature.

easy-retweet-new-settings-ui

Apart from this I have also made some performance improvements to the Plugin, which will work behind the scenes.

Download

You can download the latest version of the Plugin from the Plugin’s homepage.

Feedback

Please keep the feedback coming and if you want me to add any new features or find a bug, please leave a comment. By the way Easy Retweet Plugin was featured in this week’s episode of WordCast. Thank you guys.

Vote for the Plugin

If you have used this Plugin and like it, please vote it at the Plugin Competition Blog to help me win the WordPress Plugin competition.

Posted in WordPress | Tagged , , | 2 Comments

Couple of more options to configure Easy Retweet Plugin

Couple of more options to configure Easy Retweet Plugin

I am getting lot of positive feedback for my Easy Retweet WordPress Plugin and I am really very happy about it. It is really a great feeling to know that the code you wrote is liked by other people.

New Features

Getting back to the Plugin, I have added two more options to it so that you can have fine grain control over how the button it is displayed in your posts. They are

  • You can now customize the text that is displayed in button. This will be particularly useful if you are running a non English WordPress blog.
  • You can now choose whether you want the button to appear in the home page or not.

Screenshot

The following is the screenshot of the admin UI with the new features.

easy-retweet-new-features

Download

You can download the latest version of the Plugin from the Plugin’s homepage.

Feedback

Please keep the feedback coming and if you want me to add any new features or find a bug, please leave a comment.

PS: BTW today my blog has got the highest number of visits per day in its entire history of existence for the past 5 years and more than 50% of the traffic was to the Easy Retweet Plugin. :)

Posted in WordPress | Tagged , , | 4 Comments

Adding retweet buttons for WordPress posts

Adding retweet buttons for WordPress posts

One of the recent trends in the blogsphere is to display the retweet or “tweet this” button on your pages together with the number of times they were retweeted. There are lots of ways and services to do it and each of them have their own pros and cons.

Recently John Resig released a pure JavaScript solution for adding retweet buttons to your pages. It uses Bit.ly JavaScript API, has no dependencies and is totally unobtrusive.

Like my previous Geo Mark WordPress Plugin, I converted his excellent JavaScript solution into a WordPress Plugin called Easy Retweet, so that it can be used in WordPress without making many changes to the theme.

Plugin Usage

You can download the Plugin from the Plugin’s home page. There are two ways you can add the retweet button, the automatic way and the manual way.

Automatic way

Install the Plugin and choose the type and position of the button from the Plugin’s settings page.

Easy Retweet WordPress Plugni settings

Manual way

If you want more control over the way the button should be positioned, then you can manually call the button using the following code.

if (function_exists('easy_retweet_button')) {
	echo easy_retweet_button();
}

Feedback

Try out the Plugin and let me know your thoughts. The Plugin is still in the early stages of development and I will add more features based on the feedback.

Posted in WordPress | Tagged , , , , | 7 Comments