Updated WordPress plugins – 2009/12/29

By Rene, December 29, 2009 in Updated Plugins No Comments

Updated WordPress PluginsAnother post with the latest updated WP plugins since 12/24/2009 : Compare Translations, Amazon Product In a Post Plugin, Count per Day, Shout Stream, Better Tag Cloud, Please Link 2 Me, Quick Page/Post Redirect, WP Ajax Edit Comments, Fidgetr, PhotoSmash Galleries, Zingiri Web Shop, Shorten2Ping, Comment Toolbar, Reveal IDs for WP Admin, PixoPoint Menu Plugin, Wickett Twitter Widget, Most Commented Widget, Transposh – translation filter for WordPress, GRAND Flash Album Gallery, Table of Contents Creator, Add to Any, WordPress Tabs Slides, Contextual Related Posts and WordPress CSS Drop-down Menu.

Continue reading below for more information about all these updated WP plugins !


Compare Translations  (2009-12-28)

Allows to compare translations in different .mo files. [read full description]

Allows to compare translations in different .mo files. Can be used by WordPress l10n teams to synchronize translations of WordPress, WPMU and WP.com.

  • Author
  • Version
  • Requires WP version
  • : Sergey Biryukov
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Amazon Product In a Post Plugin  (2010-01-03)

Quickly add formatted Amazon Products to post/page by using just the Amazon ASIN (ISBN-10). Great for monetizing your posts. [read full description]

Amazon Product In a Post Plugin is used to to quickly add a formatted Amazon Product/Item to a post or page by using just the Amazon product ASIN (also known as the ISBN-10).

What can you use it for? With this plugin you can:

  • Add any Amazon product or item to an existing Post (or Page).
  • Monetize your blog posts with custom Amazon Product and add your own Reviews, descriptions or any other thing you would normally want to add to a post - and still have the Amazon product there.
  • Easily add only the items that are right for your site.
  • Add the product to the TOP of the post content, the BOTTOM of the post content, or make the post content become part of the product layout (see screenshots for examples)
  • UPDATE 10/4/09 - You can now add as many products as you want to any existing page/post content using a Shortcode - see Installation or FAQ page for details.
  • UPDATE 12/22/09 - Added French and Spanish language support for text labels in displayed product.
  • UPDATE 1/3/10 - Added German Language support for text labels in displayed product.

If you have an Amazon Affiliate account and you don't think the available Amazon widgets are that great or are what you need, then this plugin might be for you.

How it Works: The plugin uses the newly revised (and re-named) Amazon Product Advertising API. Older plugins that use Old API calls will no longer work as of 8/2009 because Amazon implemented a new security call procedure that makes many of them obsolete.

To use the plugin, you must have an Amazon Affiliate Account. You can sign up here if you do not have one - it is free and pretty easy to do. Once you have an account, install the plugin, then enter your Amazon Associate ID in the plugin options page. You are now ready to start adding products to your post!

PLEASE NOTE: If you DO NOT add your own custom Associate ID, you WILL NOT get credit for any purchases made from your product posts - so don't set up products on a live site unless you enter that first - or you may lose out on some referral $$. You have been warned!

  • Author
  • Version
  • Requires WP version
  • : Don Fischer
  • : 22
  • : 2.5 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Count per Day  (2010-06-19)

Visit Counter, shows reads per page, visitors today, yesterday, last week, last months and other statistics. [read full description]

  • count reads and visitors
  • shows reads per page
  • shows visitors today, yesterday, last week, last months and other statistics on dashboard
  • shows country of your visitors
  • you can show these statistics on frontend (e.g. on sidebar) too
  • if you use Wordpress < 2.7 please use Count-per-Day v1.4

It counts 1 visit per IP per day. So any reload of the page don't increment the counter.

Languages: english, german, italian, portuguese, belorussian, uzbek, swedish, dansk

  • Author
  • Version
  • Requires WP version
  • : Tom Braider
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Shout Stream  (2010-02-03)

Shout Streams is the bridge between your shoutcast or icecast stream and WordPress! [read full description]

Shout Stream plugin is a plugin that embeds FFmp3 flash player OR mini Media Player OR Minicaster Flash player at your sidebar or at a page to connect to a stream (shoutcast or icecast) along with LIVE stats. It has also links for a popup windows for each stream so your readers could surf at your blog without stopping hearing the stream. As more feautures are being added i advise that you read all available info at the plugin's page.

From version 3 and above Shout Stream will use FFmp3 flash player. Minicaster and Media player are still supported but eventually they will be depreciated. FFmp3 is open source and avoids memory leaks by cleaning buffer in a seamless way. More info @ Shout Stream pages.

Have fun and keep blogging!

  • Author
  • Version
  • Requires WP version
  • : ..::DeUCeD::..
  • : 22
  • : 2.2 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Better Tag Cloud  (2010-07-25)

WordPress widget BETTER TAG CLOUD

WordPress widget BETTER TAG CLOUD

A better tag cloud. Lots of configuration options, a widget and a shortcode to add the tag cloud to posts and pages. [read full description]

I was pretty annoyed with the default tag cloud widget. It does a lot of things wrong, like inconsistent HTML markup and hardcoded font sizes. So I wanted to write my own. Digging through the code I found out that the wordpress wp_tag_cloud() function is pretty powerful. In fact, it could do almost everyhing I want. So I abandoned my plan to rewrite everything from scratch and added a nice admin interface to my tag cloud widget.

This plugin makes the options for wp_tag_cloud() available to multiple tag cloud widgets and shortcodes. This means that you can easily choose things like custom taxonomies, font sizes, HTML markup and ordering. See the wp_tag_cloud() page for what the normal settings can do.

Additionally, it is possible to sort tags by count and alphabetically at the same time. It is also possible to add a counter to the tags, so that your visitors can see how many posts are associated with each tag. The plugin also adds a sensible CSS class to every tag.

Usage

The easiest way to use this plugin is to drag the new multiwidget into one of your sidebars.

There is as well the shortcode [nktagcloud]. Examples:

  1. [nktagcloud] This displays the tag cloud as configured on the options page.
  2. [nktagcloud single=yes] This does the same but shows only the tags of the current post.
  3. [nktagcloud post_id=1234] Displays the tags of the post identified by post_id.
  4. [nktagcloud separator="" categories=no] Remove separator and categories.

Using the tag cloud in your theme

You can call the function nktagcloud_shortcode() from your theme to get the same output as from the shortcode. Example:

if ( function_exists( 'nktagcloud_shortcode' ) ) {
    echo nktagcloud_shortcode( null );
}

There's also the nk_wp_tag_cloud() function. You can use it to generate a tag cloud with a different configuration than the plugin's one. It accepts the same parameters as wp_tag_cloud(). Example:

if ( function_exists( 'nk_wp_tag_cloud' ) ) {
    echo nk_wp_tag_cloud( 'single=yes&separator= - &categories=no' );
}

Additonal parameters (all strings):

  • single: Only tags of the current post ('Yes', 'No')
  • categories: Inlude categories in the cloud ('Yes', 'No')
  • replace: Convert blanks to non-breaking spaces ('Yes', 'No')
  • post_id: Display only tags of the specified post (post ID)
  • mincount: Show only tags that have been used at least so many times
  • separator: Tag separator
  • inject_count: Add a counter to the tag ('Yes', 'No')
  • inject_count_outside: Add the counter outside of the tag hyperlink ('Yes', 'No')
  • nofollow: Add the noffow attribute to the tags in the cloud ('Yes', 'No')

Support

Visit the plugin's home page to leave comments, ask questions, etc.

My plugins

Ajax For All: Unleash Ajax on your WordPress theme with this plugin. It's magic.

Better tag cloud: I was pretty unhappy with the default WordPress tag cloud widget. This one is more powerful and offers a list HTML markup that is consistent with most other widgets.

Theme switch: I like to tweak my main theme that I use on a variety of blogs. If you have ever done this you know how annoying it can be to break things for visitors of your blog. This plugin allows you to use a different theme than the one used for your visitors when you are logged in.

Custom avatars for comments: Add a personal touch: Your visitors will be able to choose from the avatars you upload to your website for each and every comment they make.

Zero Conf Mail: Simple mail contact form, the way I like it. No ajax, no bloat. No configuration necessary, but possible.

MU fast backend switch: Switch between your MU blog backends with one click

Visitor Movies for WordPress: Did you ever want to know what your visitors are really doing on your site? Watch them!

Move WordPress comments: This plugin adds a small form to every comment on your blog. The form is only added for admins and allows you to move comments to a different post/page and to fix comment threading.

Delete Pending Comments: This is a plugin that lets you delete all pending comments at once. Useful for spam victims.

Snow and more: This one lets you see snowflakes, leaves, raindrops, balloons or custom images fall down or float upwards on your blog.

Fireworks: The name says it all, see fireworks on your blog!

Rhyming widget: I wrote a little online rhyming dictionary. This is a widget to search it directly from one of your sidebars.

  • Author
  • Version
  • Requires WP version
  • : Nicolas Kuttler
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Quick Page/Post Redirect  (2010-06-21)

Redirect Pages/Posts to another page/post or external URL. Adds edit box to admin edit so user can specify the redirect Location and type. [read full description]

Quick Page/Post Redirect Plugin redirects WordPress Pages or Posts to another location quickly. It adds an option box to the edit section where you can specify the redirect location and type of redirect that you want, temporary, permanent, or meta. See blow for additional features added in each new version.

Added features:

    1. you can now open a redirect link in a new window
    1. You can add a rel="nofollow" attribute to the link of a redirect
    1. You can completely re-write the URL for the redirct so it takes the place of the default page URL (rewrite the href link)
    1. Add redirects without needing to create a Page or Post to do so. This is very useful for sites that were converted to WordPress and have old links that create 404 errors (see FAQs for more information).

The redirect Location can be to another WordPress page/post or any other website with an external URL. It allows the use of a full URL path, the post or page ID, permalink or page-name.

PLEASE NOTE: At this time, the a new page or post needs to be Published in order for the redirect to happen. It WILL work on a DRAFT Status Post/Page ONLY, and I mean ONLY, if the Post/Page has FIRST been Published and the re-saved as a Draft - WordPress does not set up the post meta for the permalink until after first publish for some reason - will hopefully fix this in the future.

This plugin is also not compatible with WordPress versions less than 2.5.

TROUBLESHOOTING:

  • If you check the box for "Show Redirect URL below" on the edit page, please note that you MUST use the full URL in the Redirect URL box. If you do not, you may experience some odd links and 404 pages, as this option cahnges the Permalink for the page/post to the EXACT URL you eneter in that field. (i.e., if you enter '2' in the field, it will redirect to 'http://2' which is not the same as 'http://yoursite.com/?p=2').
  • If your browser tells you that your are in an infinite loop, check to make sure you do not have pages redirecting to another page that redirects back to the initial page. That WILL cause an infinate loop.
  • If you are using the new Quick 301 Redirects method to do your redirects, be sure that your Request URL starts with a / and is releative to the root (i.e., http://mysite.com/test/ would have /test/ in the request field).
  • If your page or post is not redirecting, this is most likely because something else like the theme functions file or another plugin is outputting the header BEFORE the plugin can perform the redirect. This can be tested by turning off all plugins except the Quick Page/Post Redirect Plugin and testing if the redirect works. 9 out of 10 times, a plugin or bad code is the culprit.
  • We have tested the plugin in dozens of themes and alongside a whole lot more plugins. In our experience, (with exception to a few bugs) most of the time another plugin is the problem. If you do notice a problem, please let us know at plugins@fischercreativemedia.com - along with the WP version, theme you are using and plugins you have installed - and we will try to troubleshoot the problem.
  • Author
  • Version
  • Requires WP version
  • : Don Fischer
  • : 22
  • : 2.5 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

The most powerful comment editing solution for WordPress. Users can edit their own comments for a limited time, while admins can edit all comments. [read full description]

  • Author
  • Version
  • Requires WP version
  • :
  • : 22
  • :
  • WordPress.org rating
  • Downloads
  • Plugin homepage
  • : /5 ()
  • :
  • :

Fidgetr  (2010-07-11)

A simple and beautiful Flickr widget that supports themes. [read full description]

Fidgetr is a WordPress widget that displays the latest photos from your Flickr photostream in an attractive manner. It features support for its own themes along with very simple setup and compatibility with most WordPress themes. Check the changelog to see what's new!

Fidgetr requires PHP 5.0 or newer as well as WordPress 2.8 or newer.

Catch new releases and other information about my plugins by following @reaperhulk on Twitter.

  • Author
  • Version
  • Requires WP version
  • : Paul Kehrer
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

PhotoSmash Galleries  (2010-07-23)

WordPress plugin PHOTOSMASH GALLERIES

WordPress plugin PHOTOSMASH GALLERIES

User contributable photo galleries for WordPress pages and posts with options. Auto-add galleries or specify. [read full description]

PhotoSmash Galleries makes it easy to create photo galleries in posts or pages that your users can upload images to. PhotoSmash has incredibly flexible and simple models for designing custom gallery and form layouts, utilizing your own custom database fields, html, and css, or just use the standard.

Links

  • Forum
  • Demo Gallery

Features

For support and more documentation, visit the plugin's new homepage: PhotoSmash

  • User contributable photo galleries - allow your users to upload images to galleries
  • NEW! Media RSS is enabled, supports PicLens (activated by including piclens=true in the shortcode)
  • Link gallery thumbnails to various destinations including full-size image, related post, and WP Attachment Page when using Media Library integration
  • Add images to the WordPress Media Library so you can use them in blog posts and even the Standard WordPress Image Gallery features
  • Multiple simultaneous image uploads in Admin, using the WordPress Media Library, then import images to PhotoSmash!
  • AJAX photo uploads from within Posts and Pages
  • Star Ratings for images
  • Control who can upload images: admin only, authors & contributors (and higher), or registered users and higher
  • Moderate images uploaded by registered users (Admins and authors are automatically approved)
  • Receive email alerts for new images that need to be moderated
  • Options page for setting general defaults or specific gallery settings
  • Auto-adding of photo galleries
  • Multiple galleries per post, added using a simple tag system
  • Integrates with popular image viewing systems like Lightbox and Shadowbox
  • Tweak appearance through the included css file
  • Add Custom Fields to tile
  • Add Custom Fields to the upload form
  • Create Custom Upload forms using simple tags and HTML
  • Create Custom Layouts using simple tags and HTML
  • Author
  • Version
  • Requires WP version
  • : Byron Bennett
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Zingiri Web Shop  (2010-07-14)

Zingiri Web Shop is a WordPress plugin that brings together a great content management system with the fantastic FreeWebShop ecommerce solution. [read full description]

Zingiri Web Shop is a Wordpress plugin that turns a great content management system into a fantastic e-commerce solution.

The main feaures are:

  • Simple installation & easy configuration
  • Sell digital and physical products
  • Many useful features that simplify your work
  • Complete order and customer management module
  • Ajax powered shopping cart & one page checkout
  • Support for payment portals like Paypal, Worldpay, Google Checkout and iDEAL and possibility to add your own
  • Multilingual support: English, Dutch, French, German, Spanish, ...
  • Easily migrate your current web shop by uploading your products via an XML file
  • Free support and updates
  • Author
  • Version
  • Requires WP version
  • : EBO
  • : 22
  • : 2.1.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Shorten2Ping  (2010-05-05)

Sends status updates to Ping.fm or Twitter everytime you publish a post, using your own domain, Bit.ly, Tr.im, and others for shortened permalinks. [read full description]

Sends status updates to Ping.fm or Twitter everytime you publish a post. Using many shorteners or even your own domain for shortened permalinks. So this way you can send status to many sites at once if you have a Ping.fm account or send only to Twitter if you prefer that.

If you find it useful, please consider to make a donation to Shorten2Ping's author (any amount will be appreciated).

Features

  • Avoids to ping again when editing previously pinged post or even when editing an old post not pinged before.
  • Option to choose between Ping.fm or Twitter for new post notifications.
  • Option to choose between bit.ly, tr.im, YOURLS, su.pr, is.gd, j.mp, wp.me, cli.gs or even you own domain for shortened permalinks.
  • Option to turn off notification or shortener service. Now you can use Shorten2Ping only for notification if your domain is already short enough for you, or use only to get shortened urls for your posts.
  • Stores created shortened permalink in a post meta field (used for template integration).
  • Using rel="shortlink" like in wp.me http://wp.me/sf2B5-shorten, creating auto-discovery link tag for the short link on single post page header.
  • You can use a template tag for showing visitors the short URL (using the same rel attribute as above for the shortened permalink).
  • Locale support. Now available in English, Spanish, Italian and Traditional Chinese (zh_TW). See translation section for more info.
  • WPMU compatible (you can have different settings for each blog).
  • Simple, fast, and useful :)

Requirements

  • PHP 5.x with CURL and JSON enabled (maybe works too in PHP4, but not tested and not supported by me).
  • WordPress 2.7.x or higher (maybe would work on older WP, but not tested and not supported by me).
  • Required your own account for the third party services that you want to use.
  • Not tested and not supported on IIS servers.

Translations

If you want to make a translation for your language, use the shorten2ping.pot included and (if you want) send me the files to correo@samuelaguilera.com for including it into the plugin package, you'll be credited, of course (NOTE: No sponsored translations allowed).

Credits for present translations:

  • Italian translation made by Riccardo Vianello AKA etms51
  • Traditional Chinese translation (zh_TW) made by Pseric.
  • Spanish translation made by myself :)
  • Author
  • Version
  • Requires WP version
  • : Samuel Aguilera
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Comment Toolbar  (2009-12-26)

Adds Comments Navigation, Quote and Reply buttons (or links or images) at the beginning or end of each comment. [read full description]

This plug-in adds up to six buttons at the end (or the top) of every comments to automatically insert Comments Navigation, Reply and Quote functions. Then you can respond to the author of each comment and quote some or all of its comment. In addition, you can move easily between comments with smooth scrolling. Now you can customize the graphic appearance of button images.

Features

  • Show or hide buttons.
  • Show or hide comments navigation buttons.
  • Choose to use buttons, links or images with mouseover effect.
  • Choose the character of separation between links, if used instead of buttons.
  • Personalize the labels of buttons (or links) 'Reply' and 'Quote'..
  • Personalize the message text "Wrote".
  • Personalize the graphic appearance of image buttons with you preferred icons.
  • Choose where to show buttons: on top or bottom of comment.
  • Select the alignment of toolbar: left, right, center or dependent from CSS rule applied.
  • Select the text to add to the code of anchor's comment.
  • Choose to activate or deactivate the bold applied to the name of the author of the comment when you click on the buttons' response 'or' quote
  • Choose to add a link to his commentary on the name of the commentator
  • Select to enable or disable "smooth scrolling".
  • supported languages of control panel: Italian, English, French (up to v.1.4), Belorusian (up to v.1.4), Russian (up to v.1.3), Turkish (up to v.1.3), Dutch (up to v.1.3) (you can translate in your preferred language using the file cf_comment_toolbar.POT)

If you have created your own language pack, or have an update of an existing one, you can send gettext .po and .mo files to me so that I can bundle it into next release of Comment Toolbar.

  • Author
  • Version
  • Requires WP version
  • : Cristiano Fino
  • : 22
  • : 2.3.1 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Reveal IDs for WP Admin  (2010-07-25)

What this plugin does is to reveal most removed IDs on admin pages, as it was in versions prior to 2.5. [read full description]

With WordPress 2.5 being released, the IDs on all admin pages have been removed as it is. Propably due to the fact that the common user dont need them. However, for advanced WordPress Users/ developers those IDs were quite interesting for some plugins or template tags.

What this plugin does is to reveal most removed entry IDs on admin pages, showing the entry IDs, as it was in versions prior to 2.5

Features:

  • Following IDs can be revealed: Posts, Pages, Categories, Links, Media, Users, Comments, Link categories, Tags (WP 2.8 and above)
  • Each ID can be de-/activated seperately, plus you can allow/permit user roles to see the IDs

Included languages:

  • English
  • German (de_DE) (Thanks to me ;-))
  • Brazilian Portuguese (pt_BR) (Thanks for contributing brazilian portuguese language goes to Maurício Samy Silva)
  • Italian (it_IT) (Thanks for contributing italian language goes to Gianluca Urgese)
  • Spanish (es_ES) (Thanks for contributing spanish language goes to Karin Sequen)
  • Russian (ru_RU) (Thanks for contributing russian language goes to Dimitry German)
  • Belorussian (by_BY) (Thanks for contributing belorussian language goes to FatCow)

Want update feeds, code documentation and more? Visit extend.schloebe.de

  • Author
  • Version
  • Requires WP version
  • : Oliver Schlöbe
  • : 22
  • : 2.5 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

PixoPoint Menu Plugin  (2010-01-29)

Adds a new menu to your WordPress powered site and allows you to control what it looks like via an easy user to interface.  [read full description]

Adds an SEO friendly, accessible regular or dropdown menu to your WordPress blog. Visit the PixoPoint Menu Plugin page for more information about the plugin, or the PixoPoint forum for help with adding the menu to your theme.

New beta plugin available

We have a version of the PixoPoint Menu plugin available which has all of the features of the current version plus a bunch more. Visit the beta plugin page for more information.

Live Demo

To see a live demo of the plugin in action, please visit our demo site.

Features

  • Control content will be displayed in the menu
  • Easy to use interface for modifying the design
  • Animation drodpown menus
  • Up to two menus
  • Plus much more

Changing the look of your menu

You can style the menu by using our easy to use editor interface to create the perfect looking menu for your site. This system operates from your own site, but behind the scenes it sends your design preferences back to the PixoPoint server for processing. The required CSS data is then sent back to your WordPress install for it to be used in your menu. When you save your design, that CSS is saved into your WordPress database. The plugin only needs to access the PixoPoint server if you choose to modify the design in the future.

The PixoPoint Menu Plugin can be implemented into any theme design, however the easiest way to set it up is to use a theme exported from the PixoPoint Template Generator. Themes from the template generator integrate flawlessly with the plugin and do not require any theme editing. Simply activate your theme, then activate the plugin and the new menu will appear instantly. Visit the PixoPoint Template Generator to get your own pre-supported theme.

Special thanks to Greg Yingling (aka malcalevak) who was a massive help with optomising the code for this plugin.

  • Author
  • Version
  • Requires WP version
  • : PixoPoint Web Development / Ryan Hellyer
  • : 22
  • : 2.9 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Wickett Twitter Widget  (2009-12-26)

Display tweets from a Twitter account in the sidebar of your blog. As seen on WordPress.com. [read full description]

Display tweets from a Twitter account in the sidebar of your blog. As seen on WordPress.com.

  • Author
  • Version
  • Requires WP version
  • : Automattic Inc.
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Most Commented Widget  (2009-12-29)

Add a widget to display a list of the posts/pages with the most comments. [read full description]

Add a widget to display a list of the posts/pages with the most comments.

  • Author
  • Version
  • Requires WP version
  • : Nick Momrik
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Please Link 2 Me  (2009-12-28)

WordPress plugin PLEASE LINK 2 ME

WordPress plugin PLEASE LINK 2 ME

A plugin that adds a text box containing all the code necessary for visitors to easily create links back to your article from their website. [read full description]

  • Author
  • Version
  • Requires WP version
  • : James McMullan
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Transposh - translation filter for wordpress  (2010-07-29)

Transposh filter allows in context quick translation of websites, it allows you to crowd-source the translation to your users. [read full description]

Transposh translation filter for WordPress offers a unique approach to blog translation. It allows your blog to combine automatic translation with human translation aided by your users with an easy to use in-context interface.

Transposh includes the following features:

  • Support for any language - including RTL/LTR layouts
  • Unique drag/drop interface for choosing viewable/translatable languages
  • Multiple selection for widget appearances - with pluggable widgets
  • Translation of external plugins without a need for .po/.mo files
  • Automatic translation mode for all content (including comments!)
  • Use either Google Translate or MS Translate backends - 57 languages supported!
  • Automatic translation can be triggered on demand by the readers or on the server side
  • RSS feeds are translated too
  • Takes care of hidden elements, link tags and titles
  • Translated languages are searchable
  • Buddypress integration

Our goals:

  • Performance - very fast - using APC cache if available
  • Support - you want it - we'll implement it, just visit our development site
  • Security - we have externally audited the plugin for improved security
  • Ease of Use - making translation as fun and as easy as possible
  • Flexibility - allowing you to take control of the user experience
  • SEO - search engines exposure increase

Technology has been thoroughly tested on a large dynamic site with millions of monthly page views. Feel free to visit Colnect, the best site for collectors.

  • Author
  • Version
  • Requires WP version
  • : Team Transposh
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

GRAND Flash Album Gallery  (2010-07-19)

GRAND Flash Album Gallery is a full integrated (flash skin based, slideshow) Image Gallery plugin with a powerfull admin back end. [read full description]

Are you looking for a better way to manage and display photos on your blogs??? Then you must try this fantastic GRAND Flash Album Gallery plugin. It provides a comprehensive interface for managing photos and images through a set of admin pages, and it displays photos in a way that makes your web site look very professional. You can display galleries with a beautiful flash skins integrated with GRAND Flash Album Gallery.

With GRAND FlAGallery you can: upload unlimited number of pictures for your slideshow galleries and albums; customize color of all the user controls and background for embeded flash skin to fit your blog colors; change width and height of flash or leave width 100% to fit your blog; view photo gallery in full screen mode for dramatic presentations; turn on/off image gallery media RSS feed; change role settings for each gallery; copy or move images between galleries; import images from folder and create gallery; easily insert shortcode in post with special button integrated in post editor; create custom thumbnails for image; sort pictures in drag-and-drop way. Make your blog nicer and your life easier!!! Code easily with codeasily.com

IMPORTANT!!!

If GRAND FlAGallery get an error after upgrade, go to FlAGallery Overview page and press 'Reset settings'.

Important Links:

  • Demonstration
  • Video tutorial
  • Language files
  • Additional skins
  • GRAND FlAGallery FAQ
  • Support Forum

Features

  • Unlimited number of pictures in slideshow.
  • Flash skins: You can add and change flash skins for displaying galleries.
  • Ability to automatically play slideshow.
  • Customize the color of all the user controls and backgrounds.
  • Full screen mode for dramatic presentations.
  • Adjustable width to fit your blog.
  • Media RSS feed.
  • Role settings: Each gallery has a author.
  • AJAX based thumbnail generator: No more server limitation during the batch process.
  • Copy/Move: Copy or move images between galleries.
  • TinyMCE: Button integration for easy adding the gallery tag with options.
  • HTML Editor: Button integration for easy adding the gallery tag with options.
  • Language support.
  • Upload tab integration: You have access to all pictures via the upload tab.
  • Import folder with images tab integration: You have access to all server directories via the import tab.
  • Sort images feature.
  • Show selected images only for registered users feature.
  • Author
  • Version
  • Requires WP version
  • : Sergey Pasyuk
  • : 22
  • : 2.9 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Table of Contents Creator  (2010-06-13)

Table of Contents Creator automatically generates a highly customizable dynamic site wide table of contents that is always up-to-date. [read full description]

Table of Contents Creator (TOCC) automatically generates a highly customizable dynamic site wide table of contents that is always up-to-date. All entries are navigable making your site very SEO friendly. TOCC can be configured to display static pages, blog entries and forum comments. Another great feature of TOCC is the ability to include anchor tags marked with a special class. This feature allows links to articles, downloads or even other sites to appear within the table of contents as if they are part of your site's navigation.

To generate a table of contents, simply include the <!-- toc-creator --> tag on any page, or use the handy page creation feature located on the plugin admin page.

Note that the table of contents is automatically generated every time it is displayed and as such it is always up to date! New comments, pages, blogs and blog categories will automatically appear as soon as they are created.

  • Author
  • Version
  • Requires WP version
  • : Mark Beljaars
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

AddToAny: Share/Bookmark/Email Button  (2010-07-23)

WordPress plugin ADD TO ANY

WordPress plugin ADD TO ANY

Help readers share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more. [read full description]

The WordPress plugin to help people share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Google Buzz, Digg, Delicious, and well over 100 more social bookmarking and sharing sites. The plugin comes with AddToAny's customizable Smart Menu, which places the services visitors use at the top of the menu, based on each visitor's browsing and usage history.

Share Button (demo)

The E-mail tab makes it easy to share via Google Gmail, Yahoo! Mail, Hotmail, AOL, and any other web-based e-mailer or desktop program. The Add to Favorites button (or Bookmark tab) helps users bookmark using any browser (Internet Explorer, Firefox, Chrome, Safari, Opera, etc.).

Individual service icons let you optimize your blog posts for specific social sites. Choose from over 100 individual services.

  • AddToAny Smart Menu
  • Individual service links (like Sociable)
  • Includes all services
  • Menu updated automatically
  • Google Analytics integration (access guide)
  • WordPress optimized, localized (English, Chinese, Spanish, Japanese, French, Portuguese, Italian, Danish, Catalan, Russian, Albanian, Romanian, Belarusian)
  • Many more publisher and user features!

After years of ongoing development, over 1 million downloads, and ongoing support from the community, AddToAny still strives to be the best WordPress plugin for sharing. We hope it's perfect for everyone by version 1.0.

Share this plugin

See also:

  • The Subscribe button plugin
  • The Share button for WordPress.com blogs
  • The standard Share button widget

AddToAny Blog | Privacy Policy

  • Author
  • Version
  • Requires WP version
  • : AddToAny
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Wordpress Tabs Slides  (2010-07-30)

Tabs and Slides (in post/page) Plugin gives you the ability to easily add content tabs and/or content slides. [read full description]

Tabs and Slides (in post/page) Plugin gives you the ability to easily add content tabs and/or content slides. The tabs emulate a multi-page structure, while the slides emulate an accordion-like structure, inside a single page!

  • Author
  • Version
  • Requires WP version
  • : Abdul Ibad
  • : 22
  • : 2.7 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Contextual Related Posts  (2010-02-20)

Show user defined number of contextually related posts [read full description]

  • Author
  • Version
  • Requires WP version
  • : Ajay D'Souza
  • : 22
  • : 2.5 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

Wordpress CSS Drop-down Menu  (2010-03-04)

Creates a dynamic multi-level navigation menu of pages, links, and post categories. Includes cross-browser-friendly CSS and an add-on Superfish plugin [read full description]

Note: This plugin requires PHP 5

Fatal Error?

This is due to pre version 3.x code in your theme. You needed to update it to continue using version 3.x of this plugin. Your options:

  • Click on Installation in the menu above to make your theme compatible
  • Downgrade to a version that works: 2.3.7
  • Contact Zack Design for help

Features at a glance:

  • Submenu support (shows the parent page, and the current page when viewing that current page)
  • Now widgetised to make it really easy to add multiple dropdowns anywhere on the page you have sidebars
  • Ability to create the menu wherever you want with PHP Classes
  • Pages, post categories, and links are all selectable and highly configurable to display however you want on whatever widget or manually-set sidebar you wish
  • Leverages the new Wordpress 2.8 widget settings to allow quick and easy multiple widget instances

Theming options:

  • Multi-level dropdown (CSS included)
  • Multi-level left/right flyouts (CSS included)
  • Support for Superfish Javascript (CSS included)
  • Works with other CSS (within reason)

If you want me to modify the CSS for you simply contact me and I will do it easily and quickly for you for a moderate sum.

It uses Stu Nicholl's final drop-down code which is a complete CSS solution - no Javascript required!!

You can look on Stu's site for other drop-down code as I got the flyout left and right code from there. Don't forget to donate if you're using his styles.

Most of his CSS should work just fine with the menu. I've made it so that the plugin automatically finds menu.css in the plugin's folder and loads it in your Wordpress site so you can instantly see how it will look. If you want to create your own CSS simply create menu.css in your theme's root directory and the plugin will load that automatically for you.

Please note that if you're upgrading you will need to change your theme files to suit the new approach. See Installation for further information.

  • Author
  • Version
  • Requires WP version
  • : Isaac Rowntree
  • : 22
  • : 2.8 or higher
  • WordPress.org rating
  • Downloads
  • Plugin homepage

That’s it for now, this was the last plugin update for 2009. Don’t forget to bookmark WPPG, as a lot of plugin reviews and news is coming your way in 2010 !

 

 

Speak Your Mind

WPPG uses Nofollow Free, which means your author link CAN be dofollow :

  • Please keep all comments on-topic and relevant to the original post.
  • Your author link default has the nofollow attribute, after you have submitted 5 comments it will be changed to dofollow permanently.
  • Use your normal name as anchor, you probably weren't born with the name 'Cheap Hotels' ...
  • The moderators of WPPG reserve the right to remove comments we feel do not adhere to these guidelines or are not in the best interest of WPPG.
Name:
(required)
Email:
(required) (will not be published)
Website:

Enter your comment below: