Actuellement Simple Tags n’est pas toute à fait compatible avec WordPress 2.8.
Une version optimisée et compatible est en préparation… patience ;)
For english users : a new version of Simple Tags for WordPress 2.8 is in preparation and will be release soon !
Pingback : Mise à jour Wordpress 2.8. Faut-il attendre ? | Le Journal du Blog
Pingback : Nach Update auf Wordpress 2.8 fehlt WYSIWYG Editor | Tagebuch eines Internetjunkies
Pingback : Maintenance de ALLNews.fr… Mes retours sur WordPress 2.8 | ALLNews.fr
8 juillet 2009 à 16:31
Peut-on les utiliser en attendant?
13 juillet 2009 à 12:05
I still have a problem when I activate your plugin on my WP 2.8.0 and 2.8.1 :
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /htdocs/wp-includes/class-simplepie.php on line 13579
(this message appear on WP administration )
5 août 2009 à 21:08
When you will release the plugin for WP 2.8 its long time.
8 août 2009 à 08:11
Great plugin, but as a suggestion, could you add a feature that only tags the first instance of a tag in a auto-link post? For example, if I mention « Florida » a few times in the article, it’d be great if only the first « Florida » was a hot-link.
17 août 2009 à 20:59
Sorry for not speaking enough french to post this, but the current version leaks one major functionality that worked earlier:
Tagging pages is not possible. Or at least, they don’t appear in the tag cloud.
When can we expect a fix? :-)
Thanks for the great plug-in by the way!
18 août 2009 à 14:28
Est-ce que cette future version va gérer les taxonomies ?
Pingback : Mise à Jour de Wordpress 2.8.4 : L’Atelier Informatique – Référencement – Création de sites
24 août 2009 à 11:16
Bonjour! Je suis contente de lire qu’on aura une version qui marchera avec WordPress 2.8. Je l’attends mais je voudrais avoir une idee au temps de « release », si vous le savez? Merci.
26 août 2009 à 13:57
Hi!
Than you for a great plugin.
Note for next release:
There seems like the count field in the term_taxonomy table is always set to zero when I use tags on pages.
20 septembre 2009 à 20:33
Bonjour.
Qu’est-ce qui se passe? Toute mise à jour?
28 septembre 2009 à 18:29
Je crois qu’il faut s’y faire… on est beaucoup à l’attendre, cette mise à jour. La gestion des tags dans wordpress reste un peu simpliste sans ce plugin.
Par contre, on ne se laissera pas faire… on réclamera une nouvelle version longtemps encore :)
24 novembre 2009 à 08:57
Thanks for the plugin….. I’ve tried a handful of auto taggers and haven’t gotten the desired results. I think yours will provide what I need however I have a question.
I’m embarassed to ask, but I can’t tell from the documentation how to get the autotagging to work. What code do I have to place in my theme to make it work….or does it work automatically?
Thanks
Scott
26 novembre 2009 à 00:37
Have been using this plugin on a couple of sites happily for some time, but since upgrade to WP 2.8.6 Click Tags, Suggested Tags and autocomplete are not working anymore!
12 décembre 2009 à 05:31
I have the same problem as Milly. However, it is inconsistent. On some of my blogs that were already established, Click Tags and Suggested Tags still work. But on this new blog, they don’t work most of the time. What I get is a notice that I need to turn Javascript on in my browser. It is already on and works just fine for the other blogs. However, it seems when I edit a post in the new blog, they work. Very strange.
Also, In my other blogs I was able to create a separate page for users that lists all the tags using the following:
but this doesn’t work for the new blog. (It does have a strange result in the older blogs in that not only are all the tags listed in the Tags page but they Tags Cloud also lists every single one of the tags also. Only for the Tags page–all other page have a normal Tags Cloud. I can live with that but I’d like it to work on my new blog.) All blogs are running under 2.8.6
How do I get this to work in the new blog on WordPress 2.8.6?
12 décembre 2009 à 05:33
Hmmm. The PHP code didn’t show up. I’ll try putting code tags around it:
12 décembre 2009 à 05:34
Perhaps without the opening and closing PHP?
st_tag_cloud(‘cloud_selection=count-desc&cloud_sort=name-desc&number=0&largest=45&smallest=12&unit=px&maxcolor=#bb4400&mincolor=#223399&format=list’);
13 décembre 2009 à 03:45
[quote]Simple Tags et WordPress 2.8
Par Amaury le 16 juin 2009
Actuellement Simple Tags n’est pas toute à fait compatible avec WordPress 2.8.
Une version optimisée et compatible est en préparation… patience ;)
For english users : a new version of Simple Tags for WordPress 2.8 is in preparation and will be release soon ![/quote]
You wrote this 6 months ago. What’s happening? It would be nice to hear from you on this blog.
19 décembre 2009 à 14:41
Le plug in ne fonctionne pas sous WP 2.9 :-(
Amicalement
20 décembre 2009 à 07:02
doesn’t work with WP 2.9 and this is by far the best pluggin for what I use it for and would like to know if an update will be made hopefully in early 2010?
20 décembre 2009 à 14:51
Attention WP 2.9 vient de sortir, et un message indique que Simple Tags n’est pas compatible. J’ai donc du le désactiver :(
21 décembre 2009 à 10:10
Hi, i have updated to wordpress 2.9 and sadly i noticed that Simple tags doesn’t work with this version. Any news regarding an update to this brilliant plug-in?
Thank you.
21 décembre 2009 à 17:39
I found the solution to the incompatibility issue with WP 2.9. If you’re comfortable editing PHP files, you can fix it too!
In the Admin panel, go to the plugins page, and find the Simple Tags plugin. Click on « Edit ». You will be editing the file « simple-tags/simple-tags.php ».
Scroll down until you find the following lines (I’ll separate code with asterisks (*) to clarify the reading, I hope):
***********************************************
// Check version.
global $wp_version;
***********************************************
Underneath that, you will find:
***********************************************
if ( strpos($wp_version, ‘2.7’) !== false || strpos($wp_version, ‘2.8’) !== false ) {
require(dirname(__FILE__).’/2.7/simple-tags.client.php’);
***********************************************
Change it to this:
***********************************************
if ( strpos($wp_version, ‘2.9’) !== false || strpos($wp_version, ‘2.9’) !== false ) {
require(dirname(__FILE__).’/2.7/simple-tags.client.php’);
} elseif ( strpos($wp_version, ‘2.7’) !== false || strpos($wp_version, ‘2.8’) !== false ) {
require(dirname(__FILE__).’/2.7/simple-tags.client.php’);
***********************************************
That should solve the problem. I bet you could do the same thing for version 2.8.6…
HTH!
21 décembre 2009 à 18:05
Hi Michelle,
Thank you for the idea. Actually you only need to change ( in initial code from simple-tags.php ) the version of wordpress from 2.8 to 2.9. And now my plug-in is working correctly.
Thanks again.
21 décembre 2009 à 21:41
Bonsoir
J’ai suivi la méthode de Mitchell et je me retrouve avec:
»
Parse error: syntax error, unexpected T_DNUMBER in /var/www/webynux/wp-content/plugins/simple-tags/simple-tags.php on line 35″ …
quelqu’un a une solution pour se servir de ce super plugin sous WP 2.9??
Merci d’avance
21 décembre 2009 à 21:49
resolu grace a
http://www.wordpress-fr.net/support/viewtopic.php?pid=173448#p173448
21 décembre 2009 à 21:52
@PFFF, tu dois changer seulement « 2.8 » avec « 2.9 » dans le dossier « simple-tags.php »
26 décembre 2009 à 14:16
Gracias Michelle Petit-Sumrall tu modificación ha funcionado perfectamente :)
Saludos.
30 décembre 2009 à 20:18
Problème réglé grâce au lien de Pfff !
11 janvier 2010 à 14:09
Thank you for the new Simple Tags update for WordPress 2.8 & 2.9.
Most certainly one of the best and most useful plugins on the block.
Cheers!
12 janvier 2010 à 18:39
Thank you for fixing simple tags, its my favorite plugin. Unfortunately I can no longer manually type in tags or as I type autocomplete would be available as this is not the case anymore. I can only click on the tags or use the tag suggestions and I need to be able to type the tags in as it is faster.
Any idea why this part does not work? Will there be a fix if ST is causing the problem? If not, how do I fix it?
12 janvier 2010 à 18:54
@Shannon, from your description it seem that you use original wordpress tags. You need to activate Simple tags form plug-in menu.
28 janvier 2010 à 12:05
I upgraded to the newest version of Simple Tags and it won’t activate now! I click « activate » and nothing happens.
28 janvier 2010 à 13:41
Même problème que M. Wend et même en revenant à la version stable précédente, je n’ai plus accès aux réglages des options … même si le plugin semble encore fonctionner.
28 janvier 2010 à 13:53
en PHP4 ?
28 janvier 2010 à 13:56
Same here. Simple Tags plugin is desactivated automatically and cannot be reactivated.
Tags itself work using WP core function, but ST’s original function like st_related_posts does not (returns error).
28 janvier 2010 à 13:58
Oops, I’m using PHP5 (Ver. 5.2.8).
12 septembre 2010 à 22:11
Thank you very much for updating this fantastic plugin to work with 3.0.1!
14 septembre 2010 à 18:36
Hi there, I found your blog via Google while searching for first aid for a heart attack and your post
looks very interesting for me.
Pingback : Artikel mit gleichen Schlagwörtern zeigen | Webseiten-Infos.de
29 décembre 2010 à 11:42
wonderful plugin,but I am still using simple tagging
Pingback : WordPress 2.3 和 Simple Tags | Jinwen Say
Pingback : HeadSpace2 WordPress | Luke Itoh Official Weblog
30 octobre 2011 à 17:22
Will try the plugin for sure.
Merci!
22 novembre 2011 à 05:45
thanks for this plugin.
Pingback : 6 WP Plugins für: ähnliche Artikel – verwandte Artikel – Mehrwert für den Leser
13 octobre 2012 à 20:03
Aw, this was an incredibly nice post. Spending some time and actual
effort to produce a top notch article but what can I say I procrastinate a lot and don’t manage to get nearly anything done.
Nigel
31 octobre 2012 à 16:01
great post I like your blog very informative
31 octobre 2012 à 16:05
thanks for sharing I will try that plug in for sure
9 novembre 2012 à 03:49
Hi Michelle,
Thank you for the idea. Actually you only need to change ( in initial code from simple-tags.php ) the version of wordpress from 2.8 to 2.9. And now my plug-in is working correctly.
Thanks again.
9 novembre 2012 à 03:51
Thanks for the plugin….. I’ve tried a handful of auto taggers and haven’t gotten the desired results. I think yours will provide what I need however I have a question.
I’m embarassed to ask, but I can’t tell from the documentation how to get the autotagging to work. What code do I have to place in my theme to make it work….or does it work automatically ?
Thanks…………
13 février 2013 à 07:14
Awesome blog! Is your theme custom made or did you download it from somewhere?
A theme like yours with a few simple tweeks would really make my blog stand
out. Please let me know where you got your theme. Bless you
25 février 2013 à 19:02
of course like your web site however you have to take a look at the spelling on
quite a few of your posts. Several of them are rife with spelling problems and I find it very troublesome to inform the reality on the other hand I will certainly come back again.
Pingback : Tag Management for Wordpress 2.3 | Anthology of Ideas
8 décembre 2015 à 15:51
Pourquoi Simple Tags n’est pas compatible avec ma version WordPress. je ne peux pas l’installer. Il me donne un message d’erreur ! :(
20 juin 2016 à 18:14
Ce plugin ne fonctionne plus il y a des bugs maintenant j’ai l’impression ?
Pingback : Best WordPress Post Tagging Plugins List with Ranking - WPCount
30 janvier 2017 à 13:24
Is it working on the latest versions of WordPress?
Pingback : Best WordPress Post Tagging Plugins List with Ranking - WPArena
15 novembre 2017 à 09:15
super blog!
9 avril 2018 à 13:15
Bonjour,
Je voudrais utiliser Simple Tags sur un site multilingue. Mais ça n’a pas l’air de fonctionner. J’ai des tags en Anglais et en Français. Je voudrais savoir s’il existe un système pour les filtrer et empêcher d’afficher les tags en Anglais sur un article écrit dans la langue de Molière. Pour le moment tous les tags apparaissent indépendamment de la langue sélectionnée.J’espère que vous trouverez une solution à mon problème
30 juin 2018 à 20:14
Danke für den Beitrag!
Weiter so!
10 octobre 2018 à 12:08
The Beef and Vegetable Stir Fry recipe is one of the best cake recipes to lose weight at home.
»For starters, the way in which the Diet Solution Program
is presented to the reader is proof enough. If you are serious on slimming down and wish to achieve a healthy body, you must do a number of adjustments in your lifestyle.
24 octobre 2018 à 19:01
thanks for Sharing this Helpful plugin.
21 février 2019 à 09:57
thanks for this plugin, its a great i use this on my site
15 avril 2019 à 10:04
thanks for Sharing this Helpful plugin.
24 avril 2019 à 11:40
thanks for this plugin, its a great i use this on my site. Than you for a great plugin.
21 mai 2019 à 05:25
Its a great Plugin , i use it on my page
27 août 2019 à 16:11
Thank you for this plugin. Really great.