velokatz
Forum Replies Created
-
Forum: Plugins
In reply to: Simple Tags can’t work with WordPress 2.9 RCDieter —
You deleted part of the code that still needs to be there. It should look like this:
// Check version. global $wp_version; if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false || strpos($wp_version, '2.9') !== false ) { require(dirname(__FILE__).'/2.7/simple-tags.client.php'); } elseif ( strpos($wp_version, '2.5') !== false || strpos($wp_version, '2.6') !== false ) { require(dirname(__FILE__).'/2.5/simple-tags.client.php'); } elseif ( strpos($wp_version, '2.3') !== false ) { require(dirname(__FILE__).'/2.3/simple-tags.client.php'); } elseif ( strpos($wp_version, '2.2') !== false || strpos($wp_version, '2.1') !== false || strpos($wp_version, '2.0') !== false ) { add_action('admin_notices', 'simple_tagging_warning'); } else { add_action('admin_notices', 'simple_tags_warning'); }
You need to reinsert
require(dirname(__FILE__).'/2.7/simple-tags.client.php');
before the first} elseif
Forum: Plugins
In reply to: Simple Tags 1.6.4 working fine in WP 2.7 with 2.7-compat themeFatal error: Cannot redeclare class Services_JSON_Error in /home/flahutec/public_html/wp/wp-content/plugins/simple-tags/2.7/inc/class/JSON.php on line 798
Forum: Plugins
In reply to: [Plugin: Simple Tags] Tag The Net Feature dont work at 1.6.3 and 1.6.4Fatal error: Cannot redeclare class Services_JSON_Error in /home/flahutec/public_html/wp/wp-content/plugins/simple-tags/2.7/inc/class/JSON.php on line 798
Forum: Plugins
In reply to: [Plugin: Simple Tags] JSON errorFatal error: Cannot redeclare class Services_JSON_Error in /home/flahutec/public_html/wp/wp-content/plugins/simple-tags/2.7/inc/class/JSON.php on line 798
Forum: Plugins
In reply to: [Plugin: Simple Tags] JSON errorNow I’m getting it in line 798 … ST 1.6.4
Fatal error: Cannot redeclare class Services_JSON_Error in [path]/public_html/wp/wp-content/plugins/simple-tags/2.7/inc/class/JSON.php on line 798
Figured it out … I noticed that my Custom Fields box was messed up as well, and when doing other searches in the forum found this solution.
In PHPmyAdmin, run the following MySQK query:
DELETE FROM wp_postmeta WHERE post_id = 0
This deleted some errant entries in the database from importing entries from another host; and resolved my problem.
Upgraded to 2.5.1 when it came out a week or so ago, but this is the first that I’ve noticed this problem.
Forum: Everything else WordPress
In reply to: PressIt – Bookmarklet missing in 2.5I had the bookmarklet saved in Safari for both LinkIt and PressIt, and both bookmarklets still work after upgrading.
What’s annoying is that I can’t add the bookmarklets on a new computer.
Forum: Plugins
In reply to: [Plugin: Simple Tags] ST doesn’t work in write post pageI’m still getting repeated tags, and the manage tags page is blank.
Forum: Plugins
In reply to: [Plugin: Simple Tags] Extended Tag Cloud? Tags duping?Widgets are back, thank you very much, but how about the dupes on the local tags problem?
b) when I click “Local Tags” to bring up a list of tags, all tags retrieved display 5 or 6 times.