Bug : can’t add tags in wordpress 2.9 and 2.9.1
-
Hi,
I think there is a bug in latest versions of WordPress. I tried to add tags in posts with WordPress 2.9 and WordPress 2.9.1.
The tags writes over the default text in field (Add keywords) and not able to add the tags when pressing the Add button.
I tried to add tags with Firefox 3.5, IE 8… no one works.
Thanks
-
We CANNOT help you here in the wordpress.COM tech support forum. We run on different software. Go to the correct forum for those self hosting wordpress.ORG installs http://wordpress.ORG/support/
-
-
No problem. Now you have the link to the correct forum so you can bookmark it for suture use. :)
-
-
Thanks timethief. I seen that this website is not the same thing than WordPress.org. Anyway, here is a link for poeples who could have same issue with the plugin and the new versions of WordPress.
http://labs.dagensskiva.com/forum/topic.php?id=234
I sent my bug to WordPress support by email. Please delete my message !!
-
“Thanks timethief. I seen that this website is not the same thing than WordPress.org.”
Thats the support forum for self hosted wordpress blogs…
-
The root was in fact this option, from more-fields-object.php:
function wp_default_scripts(&$scripts) {
$src = get_option(‘home’) . ‘/wp-content/plugins/more-fields/post.js’;
$scripts->registered[‘post’]->src = $src;
}Change this to:
function wp_default_scripts(&$scripts) {
$src = get_option(‘home’) . ‘/wp-content/plugins/more-fields/post.js’;
$scripts->add_data[‘post’]->src = $src;
}
- The topic ‘Bug : can’t add tags in wordpress 2.9 and 2.9.1’ is closed to new replies.