“Simple Tags can’t work with this WordPress version!” Solved For WP 2.9

by Piotr Krzyzek on December 30, 2009

Simple Tags cant work with this WordPress version! Solved For WP 2.9Less than a month ago WordPress version 2.9 rolled out. It came with some fancy new features and a few bug fixes. Though it also broke a few things. One of the best plugins for WP around is called “Simple Tags”.

Simple Tags helps you put tags on your posts or pages with more ease. It has auto-complete and tag searching. Meaning that it can find tags for you via Yahoo or ‘the web’ or even search through your own tags. Very neat plugin and a must have for the serious blogger.

The problem is that Simple Tags is not made to work with WordPress 2.9 … yet. So, we have to work around it. and it’s a very simple work around.

All you have to do is change one small line of code. Follow these steps and you’ll have Simple Tags working with WP 2.9 in no time at all.

  1. Click on “Plugins” from the left menu in the admin panel in WP. Then click on “Editor“: Simple Tags cant work with this WordPress version! Solved For WP 2.9
  2. From the top right of this page, where it says “Select plugin to edit” select ‘Simple Tags’ and click edit: Simple Tags cant work with this WordPress version! Solved For WP 2.9 … You might have to scroll to find it, depending on how many plugins you have installed.
  3. Make sure “simple-tags/simple-tags.php” is highlighted from the right file menu: Simple Tags cant work with this WordPress version! Solved For WP 2.9
  4. On this file; near the middle you will see something like the following code:
  5. // Check version.
    global $wp_version;
    if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false ) {
    require(dirname(__FILE__).'/2.7/simple-tags.client.php');

  6. All you need to do is add the following code at in between the parenthesis:
  7. || strpos($wp_version, '2.9') !== false

  8. And it will look like this after you are finished:
  9. if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false || strpos($wp_version, '2.9') !== false )

  10. Save the file by clicking “Update file” at the bottom.
  11. Problem solved!

The original post where I got this idea from is here. Thanks dude!

Related posts:

  1. Create Easy WordPress Post From Youtube Plugin
  2. IMBorder.py – ImageMagick with Python automagic photograph borders (version .1.5)
  3. Install XBMC in K/Ubuntu Karmic With Ease! liblzo1 Library Solved.
  4. No Stable Offical XBMC on Karmic Until A New Version Of XBMC Comes Out
  5. Blogging by e-mail in WordPress

{ 1 comment… read it below or add one }

HYIP January 23, 2010 at 10:06 pm

thanks, seems to have worked for me as well

Reply

Leave a Comment

CommentLuv Enabled

Previous post:

Next post: