The page of Simple Tags plugin for WordPress moved on Redmine tools.
You can now:
- Participate to wiki
- Report bugs
I look for motivated people to help me on:
- Development
- Documentation
- Creation of example
(mail me at balmer.amaury AT gmail DOT com)
At last I confirm you that Simple Tags will be adapted for WordPress 2.5!
PS: La version française est disponible à l'adresse suivante.
Simple Tags is the successor of Simple Tagging Plugin.
Compatibility: WordPress 2.3.x only !
Current version: 1.3
Table of Contents
- Purpose
- Download
- Installation
- Tags autocompletion
- Suggested tags
- Manage Tags
- Mass Edit Tags
- Simple Tags Options
- Theme Integration
- Version History and Changelog
- Donation
- Acknowledgements
- Functions Advanced Usage
Purpose
WordPres 2.3 has a built in native tag management. However it's limited and you need some plugins to exploit it.
- A basic input tag during edition
- Basic Tag Clouds
- Tags of the current post
Simple Tags is THE perfect tool to manage perfeclty your WP 2.3 tags
It was written with this philosophy : best performances, more secured and brings a lot of new functions.
- Administration
- NEWRelated tags !
- NEWAJAX Admin features !
- NEWTags suggestion from Yahoo Term Extractions API, Tag The Net and Local Tags with AJAX request
- Compatible with TinyMCE, FCKeditor, WYMeditor and QuickTags
- NEWImprove performance !
- Auto tags !
- Auto link tags in post content
- Importer for embedded tags
- type-ahead input tags / Autocompletion
- Click tags
- tags management (rename, delete, merge, search and add tags, edit tags ID)
- Edit mass tags (more than 50 posts once)
- Possibility to tag pages (not only posts) and include them inside the tags results
- Embedded tags ([tags]tag1, tag2[/tags]) for compatibility with old plugins
- Easy configuration ! (in WP admin)
- Blog
- Meta keywords generate from tags in your header's blog
- Technorati, Flickr and Delicious tags
- Dynamic Tag Clouds with colors with Widgets (random order, etc)
- Related content since common tags
- Possibility to add related posts inside RSS
- Extended the_tags function (outside the loop, technorati, etc)
Download
Installation
The Simple Tags can be installed in 3 easy steps:
- Unzip "Simple tags" archive and put all files into your "plugins" folder (/wp-content/plugins/) or to create a sub directory into the plugins folder (recommanded), like /wp-content/plugins/simple-tags/
- Activate the plugin
- Inside the WordPress admin, go to tags > tags options, adjust the parameters according to your needs, and save them.
Tags autocompletion
To help you to add easily tags, Simple Tags has an autocompletion script. When you begin to tape a letter or more, a list a tags appears : you have only to choose !
You can choose the down direction to see all the tags.
Suggested tags
Simple Tags has a suggestion list tags to save time.
To realize this, it looks between your content and your tag database, and create clickable links to add easily the tags into the post.

Manage Tags
Simple Tags has a lot of features:
- Raname one or many tags
- Merge many tags on one new
- Delete one or many tags
- Add a tag for all tags, or only posts matched by a searching tag.
- Edit slug one or many tags
Mass Edit Tags
Do you have a not yet tagged blog ?
Edit mass tags options is perfect for you : tag 20, 30 or 50 posts with autocompletion in one step !
You can filter by:
- Search
- Untagged data
- Author
- ...
Simple Tags Options
You can activate / desactivate a most of Simple Tags features in one clic !
![]()
Theme Integration
- st_related_posts(); : Display an list of related posts (must be placed in WP Loop)
- st_tag_cloud(); : Display a color (dynamic) tags cloud.
- st_the_tags(); : Display current tags post.
- st_meta_keywords(); : Display meta keywords, generated from tags. Use only on your header blog.
- st_related_tags(); : Display an list of related tags, useful for tags navigation
- st_remove_related_tags(); : Display the list of remove related tags from current view, useful for tags navigation
Version History and Changelog
See changelog from WordPress.org page plugin.
Donation
Create and maintain a plugin take lot's of time. If you like my work, do a donation.
Acknowledgements
Thanks to
- Stewart Ulm for the original autocompletion script
- Kevin Drouvin for the autocompletion script hack
- Rod for these different ideas
- Thibaut for the intensive beta test and orthographical correction
Functions Advanced Usage
Related Posts : st_related_posts()
With this functionnality, you can show related posts on your post. Is related posts which have at least one common tag.
If you don't wish to show related posts, but use them inside the loop, use st_get_related_posts() function.
Usage:
Default Usage:
'number' => 5,
'order' => 'count-desc',
'format' => 'list',
'include_page' => 'true',
'exclude_posts' => '',
'exclude_tags' => '',
'post_id' => '',
'except_wrap' => '55',
'limit_days' => '0',
'title' => __('
Related posts
', 'simpletags'),
'nopoststext' => __('No related posts.', 'simpletags'),
'dateformat' => $this->dateformat,
'xformat' => __('%post_title% (%post_comment%)', 'simpletags')
Example:
We want to show the first 10 related post without title, without pages and without comments count.
%title%'); ?>
Parameters:
- number
(integer) Number of posts to show - order
(string) Order posts sorting. Valid values are :- count-desc - (default) by number of common tags (most relevance)
- count-asc - by number of common tags (less relevance)
- date-desc - by publication's date descending
- date-asc - by publication's date ascending
- name-asc - by title ascending
- name-desc - by title descending
- random - random
- format
(string) show tags as non ordered list UL/LI- flat - (Default) posts are separated with spaces
- list - posts are inside non ordered lists containing class='related_posts'
- array -posts are inside a PHP array (use it with st_get_related_posts())
- include_page
(boolean) "true" to add pages, "false" only for posts - exclude_posts
(string) Separate posts ID to exclude with commas - exclude_tags
(string) Separate tags ID to exclude with commas - post_id
(integer) Specified post ID for display related posts - except_wrap
(integer) Words number for excerpt. - limit_days
(string) Limit result with a max days - title
(string) Specify the positioned title before the list - nopoststext
(string) Specify the text to show when there is no related post - dateformat
(string) Specify the date format. Same format as PHP date function - xformat
(string) Extended links format. Available Markups :- %post_date% - Replaced by the date of the post
- %post_permalink% - Replaced by the permalink of the link
- %post_title% - Replaced by the title of the post
- %post_comment% - Replaced by the comments count of the post
- %post_tagcount% - Replaced by the number of common tags
- %post_id% - Replaced by the ID of the post
- %post_relatedtags% - Replaced by common tag list
- %post_excerpt% - Replaced by post excerpt
Tags cloud: st_tag_cloud()
With this functionnality you can show a color tags cloud created dynamically.
If you don't want to show it, but use it, use st_get_tag_cloud() function.
Usage:
Default Usage:
'size' => 'true',
'smallest' => 8,
'largest' => 22,
'unit' => 'pt',
'color' => 'true',
'maxcolor' => '#000000',
'mincolor' => '#CCCCCC',
'number' => 45,
'format' => 'flat',
'cloud_selection' => 'count-desc',
'cloud_sort' => 'random',
'exclude' => '',
'include' => '',
'limit_days' => 0,
'min_usage' => 0,
'notagstext' => __('No tags.', 'simpletags'),
'xformat' => __('%tag_name%', 'simpletags'),
'title' => __('
Tag Cloud
', 'simpletags'),
'category' => 0
Example:
We wish to display randomly the top 100 tags, the max width will be 45px, the min 12px. The color used for max tags will be red (#FF0000) and for min tags green (#00FF0B). At last, the title will be "Tags Cloud"
Parameters:
- size
(boolean) Active or not dynamic font size generation - smallest
(integer) Length of the font to use to show the less used tags - largest
(integer) Length of the font to use to show the most used tags - unit
(string) Measuring unit of the used font for smallest and largest parameters. Use pt for point - color
(boolean) Active or not dynamic color generation. true/false - maxcolor
(string) Used color for most popular tags - mincolor
(string) Used color for less popular tags - number
(integer) Number of tags to show inside the tags cloud (Use '0' to show all of them) - format
(string) Tag's format of posting- flat - (Default) Tags are separated by spaces
- list - tags are inside a non ordered list (UL) containing class='st-tag-cloud'
- array - tags are inside a PHP array (use it with st_get_tag_cloud())
- cloud_selection
(string) Tags selection order. Valid values are :- count-desc - (default) by number of usage tags (most popular)
- count-asc - by number of usage tags (least used)
- name-asc - by tag name ascending
- name-desc - by tag name descending
- random - random
- cloud_sort
(string) Tags selection order. Valid values are :- count-desc - by number of usage tags (most popular)
- count-asc - by number of usage tags (least used)
- name-asc - by tag name ascending
- name-desc - by tag name descending
- random - (default) random
- exclude
(string) list of tags to exclude, separated by commas (term_id). For example 'exclude=5,27' means all tags which contain term_id 5 or 27 will be NOT shown. By default, any tag is excluded. - include
(string) list of tags to include, separated by commas (term_id). For example 'exclude=5,27' means all tags which contain term_id 5 or 27 will be the alone tags to be shown. By default, all tags are included - limit_days
(integer) Number of days to be considered to generated tag cloud. - min_usage
(integer) Min number of tag counter for display it into tag cloud - notagstext
(string) Text to show, if there is no tag. - xformat
(string) Extended format of links. You can personalize the formating of tag's link. Available markups :- %tag_link% - Replaced by the permalink of the tag
- %tag_feed% - Replaced by the RSS tag link
- %tag_id% - Replaced by the tag ID
- %tag_count% - Replaced by the use number (counter) of the tag
- %tag_size% - Replaced by the size of the tag (creates : font-size:17pt;)
- %tag_color% - Replaced by the color of the tag (creates : color:#666666;)
- %tag_name% - Replaced by the tag's name
- %tag_name_attribute% - Replaced by the tag's name, formatted for attribute HTML
- %tag_rel% - Replaced by rel tag markup (creates : rel="tag")
- %tag_scale% - Replaced by tag scale (between 1 and 10)
- %tag_technorati% - Replaced by Technorati tag link
- %tag_flickr% - Replaced by Flickr tag link
- %tag_delicious% - Replaced by Del.ici.ous tag link
- title
(string) Specify the positioned title shown before tags cloud - category
(string) Restrict tag cloud to a specifik category. (or more, separated with comma)
Current posts tags: st_the_tags()
This feature extend WordPress builtin function "the_tags()", you can specify tag format, text if no tags and post id, also outside the loop
If you don't want to show it, but use it, use st_get_the_tags() function.
Usage:
Default Usage:
'before' => __('Tags: ', 'simpletags'),
'separator' => ', ',
'after' => '',
'post_id' => '',
'xformat' => __('%tag_name%', 'simpletags'),
'notagtext' => __('No tag for this post.', 'simpletags'),
'number' => 0
Parameters:
- before
(string) Text to display before the actual tags are displayed. Defaults to Tags: - separator
(string) Text or character to display between each tag link. The default is a comma (,) between each tag. - after
(string) Text to display after the last tag. The default is to display nothing. - post_id
(integer) Specified post ID for display tag posts (outside loop by example) - xformat
string) Extended format of links. You can personalize the formating of tag's link. Available markups :- %tag_link% - Replaced by the permalink of the tag
- %tag_feed% - Replaced by the RSS tag link
- %tag_id% - Replaced by the tag ID
- %tag_name% - Replaced by the tag's name
- %tag_name_attribute% - Replaced by the tag's name, formatted for attribute HTML
- %tag_rel% - Replaced by rel tag markup (creates : rel="tag")
- %tag_technorati% - Replaced by Technorati tag link
- %tag_flickr% - Replaced by Flickr tag link
- %tag_delicious% - Replaced by Del.ici.ous tag link
- notagtext
(string) Text to show, if there is no tag. - number
(integer) Limit tags output with this max number
Related tags: st_related_tags()
This feature display a list of related tags into tag view. It allow to restrict tag search with an another tag.
This function output a list only on tag view, else it display nothing.
If you don't wish to show related tags, but use them inside the loop, use st_get_related_tags() function.
Usage:
Default Usage:
'number' => 5,
'order' => 'count-desc',
'separator' => ' ',
'format' => 'list',
'method' => 'OR',
'title' => __('
Related tags
', 'simpletags'),
'notagstext' => __('No related tag found.', 'simpletags'),
'xformat' => __('%tag_count% + %tag_name%', 'simpletags')
Parameters:
- number
(integer) Number of posts to show - order
(string) Order posts sorting. Valid values are :- count-desc - (default) by tag counter (most popular)
- count-asc - by tag counter (less used)
- name-asc - by tag name ascending
- name-desc - by tag name descending
- random - random
- format
(string) output format- flat - (Default) tags are separated with spaces
- list - tags are inside non ordered lists containing class='related_posts'
- array - tags are inside a PHP array (use it with st_get_related_posts())
- method
(string) Method of tags intersections and unions used to build related tags link:- OR - Fetches posts with either the "Tag1" or the "Tag2" tag.
- AND - Fetches posts with both the "Tag1" and the "Tag2" tag.
- title
(string) Specify the positioned title before the list - notagstext
(string) Specify the text to show when there is no related tags - xformat
(string) Extended links format. Available Markups :- %tag_link_add% - Replace by the link, build from the actual URL + Tag to add
- %tag_link% - Replaced by the permalink of the tag
- %tag_feed% - Replaced by the RSS tag link
- %tag_id% - Replaced by the tag ID
- %tag_count% - Replaced by the use number (counter) of the tag
- %tag_name% - Replaced by the tag's name
- %tag_name_attribute% - Replaced by the tag's name, formatted for attribute HTML
- %tag_rel% - Replaced by rel tag markup (creates : rel="tag")
- %tag_technorati% - Replaced by Technorati tag link
- %tag_flickr% - Replaced by Flickr tag link
- %tag_delicious% - Replaced by Del.ici.ous tag link
- format
(string) output format- flat - (Default) tags are separated with spaces
- list - tags are inside non ordered lists containing class='related_posts'
- array - tags are inside a PHP array (use it with st_get_related_posts())
- notagstext
(string) Specify the text to show when there is no related tags - xformat
(string) Extended links format. Available Markups :- %tag_link_remove% - Replaced by the link with current tags except tags to remove
- %tag_link% - Replaced by the permalink of the tag
- %tag_feed% - Replaced by the RSS tag link
- %tag_id% - Replaced by the tag ID
- %tag_count% - Replaced by the use number (counter) of the tag
- %tag_name% - Replaced by the tag's name
- %tag_name_attribute% - Replaced by the tag's name, formatted for attribute HTML
- %tag_rel% - Replaced by rel tag markup (creates : rel="tag")
- %tag_technorati% - Replaced by Technorati tag link
- %tag_flickr% - Replaced by Flickr tag link
- %tag_delicious% - Replaced by Del.ici.ous tag link
Remove related tags: st_remove_related_tags()
This feature display a list of remove related tags into tag view. It allow to remove one tag from URL.
This function output a list only on tag view, else it display nothing.
If you don't wish to show remove related tags, but use them inside the loop, use st_get_remove_related_tags() function.
Usage:
Default Usage:
'separator' => ' ',
'format' => 'list',
'notagstext' => ' ',
'xformat' => __('» Remove %tag_name%', 'simpletags')

How to import the tags from the Plugin « simple tagging ».
All of my tags are not available.
You must use the Simple Tagging Importer include by default in WordPress 2.3
Admin WP : « Manage > Import »
Thank you for Sharing. :-)
So, this has nothing to do with ther other « Simple Tags » plugin?
Shoot, I thought they updated.
@Jason: He wrote: « Simple Tags is the successor of Simple Tagging Plugin. » ;)
@Amaury: Thank you for the new version.
Jason > Simple Tags is a NEW plugin. Developped from scratch. Not the same ;)
The .zip file only contains one file, and it looks corrupted. I’ll try back tomorrow. Thank you for keeping this project up-to-date.
Thank you Amaury!
Todd > Strange, try the alternative file.
This plugin is a great addition to WordPress’s current tag system.
I already have the Related Posts plugin (link broken, can’t give URL) in my blog. Should I replace its template tag with
st_related_posts()?This is an AWESOME plugin. I really liked the Simple Tagging Plugin, and so this is a great way to manage the built in tags on WordPress. Thanks for writing this plugin!
BoltClock > Yes off course ;)
Donovan > Thanks.
Great plugin! Thanks! SimpleTagging was a great plugin and I loved it, and this is no exception.
Thankyou!
Thanx for this plugin;)
Thank you for putting this together! I noticed that the tags I had on my pages did not show up in the Simple Tag management page until I opened each page in the editor and then saved it. Once I did that the page tags showed up.
Also, is there anyway to make the tags in the tag cloud show up in a random order?
Thanks!
Jonamerica > You use WP Object Cache ?
Random order for tag cloud. Ok. Add in next version.
Amaury > Sorry, yes, I have cache enabled. :)
Thanks for adding random in the next version!
Jonamerica > Okay, due to the object cache, i will fix this at the next version.
Just a little mistake: in the widget, auto tag coloring is unchecked, but the control says default checked.
BoltClock > In todo list ! thank you !
Thanks for your hard work, this plugin is formidable! With the Simple Tagging plugin, I found the ‘limit days’ value to be helpful to only pull in tags from a recent period of time:
$limit_days: Maximum number of days to be considered.
Could this be integrated? Thanks again!
Thank you for this excellent plugin. Very intuitive to use and lots of features.
I have a bit of a problem: when I activate the plugin in WordPress, I get this error:
`Fatal error: Call to undefined function: wp_register_sidebar_widget() in /home/codyloga/public_html/blog/wp-content/plugins/simple-tags/inc/simple-tags.widgets.php on line 231`
I have to completely delete the plugin folder to get site functionality back. I have a feeling this has to do with how I have the WordPress widgets disabled so my theme will work, but I thought you might like to know that your plugin breaks when widgets are disabled.
thanks, I will use it
Great plugin, it’s a huge improvement for WP. One request I would have is to paginate that list of untagged posts… I currently have over a thousand of them, so pulling up the whole list is unnecessary for me, and overly taxing on the system. Also, my post count is always set to zero on that screen, I don’t know why.
FYI I edited my copy of simple-tags.admin.php to say « Untagged » instead of « Not Tagged Content ». It was just bothering me. ;-)
Thanks for this great plugin! I still miss UTW, but this will help me move on. :)
Okay, I fixed my problem. I renamed the functions on lines 231 and 232 of simple-tags/inc/simple-tags.widgets.php. It probably broke the widget functionality, but that’s okay because I don’t use widgets.
Looks like quite an impressive job, will give it a try :)
Brilliant plugin!
The advanced usage documentation is very helpful. :-) How can I apply some of the same parameters to the Related Posts that shows in the feed. Should I edit your plugin directly or is there a way to configure it?
Cody > Okay. I find the bug. It’s fix in next version. Thank you.
Chris > Novodays, related posts in feed will use default param.
The version 1.1 will fix this problem ;)
RobotDan > Yes, i will add a limit days in version 1.1 (next week)
<?php st_related_posts(‘number=10&title=&include_page=false&xformat=%title%‘); ?>
When I use this code on my site, I get the following markup validation on http://validator.w3.org
« Sorry, I am unable to validate this document because on line 231 it contained one or more bytes that I cannot interpret as utf-8 (in other words, the bytes found are not valid values in the specified Character Encoding). Please check both the content of the file and the character encoding indication.
The error was: utf8 « \xDA » does not map to Unicode »
Other than this small problem, Simple Tags is the best user interface for WordPress in my opinion.
Donovan > Can you give me your blog address ?
In comment, or contact page.
New version !! 1.0.2 ;)
I understand that this is the follow up to Simple Tagging. But there is another Simple Tags plugin.
http://www.broobles.com/scripts/simpletags/
I thought this was an update to that one, but I guess not. *L*
Hi there..
Thanks for this excellent plug in !!
We try to use the xformat parameter, but allways get a bad date string…
We try with:
%date%
%post_date%
but dont work…
Can you help us?
I get a ‘file corrupted’ message when I attempt to download either of the zipped files on an XP2 SP2 machine with IE7. I have been able to download other zip files.
Wendy > I upload an archive compressed with Windows XP.
You use what ftp client ?
javi > Good spot, i will fix this bug.
The good marker is %date%
Jason > yes, i know. But the specified plugin isn’t updated since two years. And Simple Tags isn’t a registered trademark. If you have a fantatic idea for new name, give it to me
Thanks for the great plugin!
I have migrated from UTW to this one.
I’m writing a introduction to Simple Tags in Chinese, hoping more people find how gorgeous it is.But I’ve got a trouble understanding « type-ahead input tags ». Could you please explain it in detail?
FYI:I’ve finished a translation in Simplified Chinese. Maybe you are interested in adding it to your official release?
Thanks again for hard work!:-)
Hi,
Love the plugin – I managed to tag all my posts in about an hour flat thanks to the missing tags page :D.
One small bug – st_tag_cloud doesn’t seem to recognize the « order » parameter. order=asc and order=desc produces the same result. This is irrespective of whether I use « orderby » or not.
Would be great if you could fix that!
Hi, im currently using Simple Tags plugin, but that one, http://www.broobles.com/scripts/simpletags
This plugin is the evolution?
I must specify that im currently using WP 2.2 and i want to upgrade to the new version, but before i want know how i can proceed with the tags. I can with no problem upgrade with this old plugin, then i can import all the tags and then deactivate old plugin and then install this new plugin?
This is the right sequence?
Thanks in advice!
Leo > Send me your translation by email (you find it in plugin)
What is your problem with type ahead ?
Balaji > Strange, this parameter is a copy of original wp_tag_cloud, i will see that.
Simone > No, it’s two differents plugins. SimpleTags != Simple Tags :D
The specified plugin isn’t update since two years… in theory you can use your old plugin in WP2.3, but you missed all features brings by my Simple Tags plugin.
Your old plugin use « fake » tags…
You can download my translation from my site. An introduction in Chinese is here
Of course I know every word of « type ahead »:-D I’m just confused about the whole phrase itself.:-(
Thanks.
Could you add to st_related_posts() the ability to list which tags the posts have in common. It’d be something like:
<?php St_related_posts(‘xformat=%title% – Related tags: %relatedtags%’); ?>
The result would be:
Related Posts:
*I ate cheese in France – Related tags: news, France
Ideally the tags would be links.
Thanks!
Hi ! I use Advanced Tag Entry (http://www.poplarware.com/tagplugin.html) but yours seem to be more elaborate. Can I switch from the first to yours without loosing my tags ?
Jonamerica > Good idea.
koz > Your plugin use the WordPress 2.3 Tags. My plugin too. No problem !
Tags are the same !
Ok, so I have yet another feature request, but I’m not sure how it could be implemented.
It’s possible to look at posts that contain multiple tags, for example:
http://www.website.com/tags/cheese/ shows you all posts with the tag cheese
http://www.website.com/tags/France/ shows you all posts with the tag France
http://www.website.com/tags/cheese+France/ shows you all posts with both tags, cheese and France.
This type of multi-tag search is already possible, but the only way to do a search for multiple tags is to type the tags into the address directly.
You could put something at the top of the results page like this:
Now searching: cheese(x) + France(x)
and clicking on the (x) would remove the tag from the search, but how to add another tag has me stumped.
I have another feature request!
Right now it is possible to get multi-tag results, for example:
website.com/tags/cheese/ shows all posts with the tag cheese
website.com/tags/France/ shows all posts with the tag France
website.com/tags/cheese+France/ shows all posts with both tags
However, in order to see multi-tag search results you have to type the tags into the address bar.
I’m not sure how it could be done, but it would be nice to make it easy for people to add additional tags to their search.
For removal the top of the page could say,
Now viewing tags: cheese(x) + France(x)
Clicking on the (x) would remove the tag. I’m just not sure how adding tags could be done easily.
BIG BIG BIG Thanks for this one – the WP-Core Tagging is bullshit – thanks for making possible what was destroyed by the WP team…
Oh no, I think it’s a great name. I was just confused.
It looks like a great plugin. It looks a lot better than the stuff in WP 2.3.
Thank you – you have made my life a lot easier :)
Nice plugin! I’m having an issue with the %date% string in xformat, using the example provided above.
But instead of date substitution, what gets rendered to the page is this:
�te%
This seems to be true regardless where I put %date% and regardless what kind of quoting I use. Any suggestions? Thanks.
[WP外掛] Simple Tags幫你管理標籤…
Simple Tags是Simple Tagging的後續版本,可用來管理WordPress 2.3預設的標籤功能,但它的功能可不僅止於此,還包括:
自動建議可用的標籤
標籤管理(更名、刪除、搜尋、增加、編輯等)
列出尚未…
I have made a traditional Chinese (zh_TW) translation for version 1.0.2.
Please visit my blog and download it!
http://www.wmfield.idv.tw/488
Thanks for your amazing plugin.
Hi,
I´m a bit confused ´cause I can´t find where to ajust the settings of the Tag-cloud and the related posts.
In the « old » simple tagging plugin it was under « Tags > options » but now I can´t find it there…
本博所用的Theme和Plugins说明…
嗯!这两天放假在家,没事就在调整blog,转遍了各大wordpress theme站,刨去极花哨的和极复杂的,发现没有几个合适的,Theme换来换去都不合适,极度郁闷。终于,无意中转到了郁也风的blog,…..
Me again,
people who are able to read have lots of advantegaes in their life… ;-)
Of course I found how to change the settings of the Cloud and the related posts etc. So everything works fine. Thanks for the plugin.
Would be even much nicer If you would give it additional admin possibilities via the interface as it was in the « simple tagging » plugin. Changeing the settings of the cloud etc. would be much easier then.
michael.oeser > yes, i agreed with you. This options will be come back in version 1.1 ;)
Perhaps can you make german translation ? ;)
Neil > thanks ! add in next version ;)
Jonamerica > Read this posts :
http://boren.nu/archives/2007/10/01/taxonomy-intersections-and-unions/
Scot Hacker > Il will verify this feature for next release ;)
@Amaury: I guess I can do the Translation. Will you send me the nessecairy files?! Or can I already use the ones that are included in the current version?
michael.oeser > Yes, POT file is already in archive. You just use Poedit for translate all sentences :)
(rename simple-tags.pot to simple-tags-de_DE.po and use Poedit)
Hallo Michael,
die Einstellung machst Du jetzt direkt in der simple-tags.php !!
Etwas umständlich und bei jedem Update neu zu machen. Hab aber einen « kleinen Umweg » gefunden.
Poste ich evtl. mal im WP-Forum.
tboggi > In english please…
How include the tags of the current posts ??
isnt’t it.
Thanks
tboggi > http://codex.wordpress.org/Template_Tags/the_tags
WordPress 2.3 default feature !
Ok, sorry.
Next time again in english
it works,
thanks for the 24/7 support ;-)
German Translation is on the way…should be finished after my brunch break… ;-)
DONE!
You might download the German translation files at:
http://www.pro-felis.de/SimpleTags-German.zip
Since it was my first translation please appologize any mistakes I possibly made
michael.oeser > Thanks ! Added in version 1.0.3 ;)
Thanks for this plugins. Good work
New version ! 1.0.3 !
Bonjour!
Ton plugin, il permit de chercher pour plus qu’un tag dans le meme temps? par example, tout les posts taggé avec surf, eau, planches…
Merci et pardon, mon français est un peu limité :)
tozé > Read this:
http://boren.nu/archives/2007/10/01/taxonomy-intersections-and-unions/
Suggestions:
A tag for title=true or false (on/off), which allows for a title to be displayed, or not, on related posts, and a tag cloud.
Tag that can be placed in the header of non-supported themes to display meta keywords with parameters such as number of keywords, all, or most recently used in home page, or single post page.
For tag cloud: ability to keep font and color the same for max and minimum.
Amaury: One feature I liked with Simple Tagging was the ability to list a post’s tags outside of the loop (e.g. in the sidebar). I noted, though, that the feature was missing from the theme integration.
Am I missing something or are we now counting on the built-in WordPress tag list integration?
We really need the posts tag list outside the loop so we can add meta keywords using this plugin!
@ToiSolid: Actually, there’s an option for generating the meta keywords in the plugin’s options.
However, that doesn’t solve my problem.
LoL, yes, the keywords are there, I didnt notice them because the meta keywords tag was in the bottom of the header :)
Thanks for the tip!
Great plug-in! I can not seem to get st_related_posts to work with exclude_tags. Is that the tag name? or the term_ID number? I have tried both but neither seem to exclude the related posts with the certain tag from showing up.
Thanks
The plug is very great!I like it very much!
http://www.sujiaoban.com/blog
Hi,
is the code of Simple Tags available via a subversion repository? That would make updating much easier.
Thanks
CB > Currently i work with a local SVN. My request for WP.org is always « Pending » since 8 days…
Andy > Bug found. Fix in next release. You must exclude with the tag name. I will edit documentation ;)
Travis Vocino > In fact, i thought that the default function would be sufficient. I will make an extended function in version 1.1
Todd > For title, an example
st_related_posts(‘title=&number=10′)
For tag cloud, you can already use the same color for max and min. For font-size, it’s no possible. But you can customize xformat and no use style… and use only your CSS …
Great plugin. Don’t you think that it would be possible to include some CSS as the WP tagging structure is not very comfortable and the classes defined by WP are a mess.
Bonjour,
I like the plugin! Is it possible to display the tags of a post under the post, like it was with « STP_PostTags() »
Barbara > http://codex.wordpress.org/Template_Tags/the_tags
WordPress 2.3 default feature !
This plug-in is GREAT~ High lighted in my blog ~
Hi, thank you for this plugin!
Excuse me,
I used an option « Display suggested tags only: » with « unchecked » in SimpleTagging.
I hope you will add the option in order to show all tags. Thanks!
Awesome plugin. It would be great if there was a way to include tags in the RSS feed. Is this possible?
WordPress 2.3 default feature ! Oh yes of course. Sorry, I’m stupid :-)
Now it’s time for me to update my wordpress blog on version 2.3 :D Thanks !
As other people have mentioned, there is already a SimpleTags plugin (http://www.broobles.com/scripts/simpletags/). I don’t think that « Simple Tags », with a space in between, makes such a difference for the name and it will bring to confusion.
I recommend you to change the name to, for example, SimpleWPTags. That will make everybody’s life easier.
Merci!
Amaury, Thank you for finding the bug in st_related_posts & exclude_tags.
Feature request: Would it be possible to to create a %variable% that would be defined in the GUI for st_related_posts & xformat in relation to %tag_count% and a string to be defined on if it may be plural? If %tag_count% == 1 then the new %variable%= »tag » else it = « tags »
This way we could say matches 1 tag or matches 5 tags etc.
Or in my case it contains 1 ingredient or 5 ingredients.
I hope this makes sense?
Thanks!
I don’t see why Amo would change the name of its plugin when the other belongs to the old past of old plugins … in 2 or 3 weeks, Simple tags will be the reference of tag management.
I get always the Related Posts in my feed. Any idea to fix it?
D’oh, got it. « Lost in translation …? » ;)
In the next version can you add an « Order By » option to the Tag Cloud widget?
Thanks for a great plugin.
Rafa > SimpleWPTags… hmmm, not so good… an another idea ?
Andy > Il will use the plurial localization function for next release. More easy :)
iKArus > Even with option desactived ?
AJ > Okay.
I couldn’t understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.
Daniel > Sorry for my poor english :P
New version 1.0.4 !
The latest before first 1.1 series !
Try, like and share !
@ Rafa and all: So it means i will loose all my actual tags until now? I didn’t experiment if WP 2.3 can import the « Simple Tags » tags made with the plugin by broobles.com and so then i can install this great plugin…
For the new name i have 2 suggestions: « Simple Damn Tags » or « Damn Simple Tags » or « Simpliest Tags » :-)
Simone
Simone > Tags with « plugin by broobles.com » isn’t use real tags. Not use a database… Juste keywords in post who are modify on display…
You can’t import theses in native tag support. (ask to the author plugin to create a converter for 2.3 tags…)
Thanks a lot Amaury for the reply :-)
Thanks for modifying it for WP2.3, works perfect
New version 1.0.4a.
Fix a bug introduced in 1.0.4.
Sorry…
Hi Amaury,
Does 1.0.4a fix the problem with orderby I had mentioned earlier?
I will fix this in version 1.1. Soon !
Nope I think it’s still not working.. here is the command I use
php st_tag_cloud('format=list&smallest=9&largest=9&maxcolor=#FF0000&mincolor=#000000&exclude=243,244&order=desc&orderby=counttitle=Tag List')No matter whether I use order=asc or order=desc, the tag with the largest number of occurrences always comes at the bottom of the list.
Any suggestions?
Whoa! Sorry I missed your comment – Amaury! Will wait for 1.1 then :)
Your plugin is definitely better than Advance Tag (sorry for its author… nothing personal). Extremely useful, specially when you come to tagging after months not using it.
Congratulations & thanks !
Balaji > In fact, i just extend the wp_tag_cloud()… the bug is also in official function.
@Amaury: No, thanks, the option is deactivated and it’s all O.K. now. But there is still no advice to see, that this option (german and english) only concerns the feed.
Amaury, Thanks for the Fix « exclude tags » in related posts in 1.04a. It works great for me now.
Hi – Thanks for making this plugin.
Does Simple Tags have an equivalent function from Simple Tagging Plugin for
if (STP_IsTagView()){echo ''.STP_GetCurrentTagSet();}for displaying the current tag? Or does WordPress 2.3 do this natively when browsing tags?Thanks
I would also like the related tag function. I miss this thing really.
Hi, is there any way to make Simple Tags work with Live writer? Im using the [tags]tags, here[/tags] stuff, but the problem is the same as the UTW. You can publish, the tags dont show in the post, but when you edit the post the tags are in the post but not in the tag field, I mean, you publish, everything works fine, but the post just dont get tagged. When publishing from the WP panel, the [tags] thing works perfectly, but not from the Live Writer posting. maybe the xmlrpc.php need some hacking? :)
Hi, seem to be having issues using the Manage Tags functions… in particular, the renaming of tags…
Due to some sloppy authors, I have a lot of very similar tags that I am trying to rename to be consistent… for example
World
Worlds
world
Am trying to rename to a single tag, but the plugin isnt changing any tags even though it says it did so successfully… suspect its a case thing…
Any thoughts?
:lol: nvm… sorry, got it working now…
but, one suggestion… when on the manage tags page you have three options for ordering the tags… when I rename, add, delete, of change slug of a tag, the reloaded page should come back up with the sort I had already changed to instead of the default most popular order…
thanks!
When I have a larger Tag which is separated by a space like « Dani Pedrosa » Simple Tags is changing this to « Dani-Pedrosa », so it is separated by « - ». In my old Simple-Tagging-Plugin it was separated by « _ ». How can I change that???
Hello,
thank you for this cool plugin!
But I have a question! It is possible to integrate a tagcloud (with all tags) in an normal article?
Hello!
Thank you for offering this great Plugin!
Cordialment,
Jan
Hi there,
the plugin is realy cool and it works for in blogs, without the eventcalendar installed. Mhm… I should better say, the eventcalendar won’t work anymore with simple tag installed… I do not know which fault it is ;) I just post it here ;)
I am not able to chose the time for a event, when simple tag is enabled.
Does anybody knows something about that?
http://wpcal.firetree.net/ <– URL from the eventcalendar.
Aaron :: miLienzo.com > You can use default function: single_tag_title()
Robert Hartl > Not before version 1.2
TioSolid > I will work on this for version 1.1
Mr Papa > You use WP Object Cache ?
Mirco > You can edit slug. The problem provided from WordPress and not Simple Tags.
traveler > With a plugin that allow PHP in post content yes !
MAWSpitau > I will test…
MAWSpitau > Error provided from Event Calendar. Javascript error. contact author plugin !
Thanks for Your answere.
Another real problem is, that Your tags.php-template-file doesn’t word any more. So I can not influence the tag-page itself. No conditional template-tags, … in WP.
Maybe before versiion 1.2? ;-)
Hi, and thanx for plugin – it’s the best solution for WP tags!
There were some discussions on WP forums about tag groups or sets. For example, if i have 2 root categories as separate sections of my website (let’s say: blog and portfolio), every one has it’s own subcategories and i want to have 2 different independent sets of tags for this root categories. Is it possible to achieve this with your plugin and some extra tweaking, or can it be implemented as an additional feature in future? Anyway, is this even possible? Thanx ahead for any response.
I use the Geopress plugin (http://georss.org/geopress)on my site which allows you to add locations to each post and plot them on a map. I have noticed that when this plugin is loaded, the type ahead and suggested tags feature of your plugin don’t work. Removing Geopress fixes the problem, but it would be nice to be able to use both.
I have also noticed (once Simple Tags is working) that the suggested tags only come up after the post has been saved. Is it possible to have the suggested tags come up dynamically?
no, I dont use the wp object cache… was that question aimed at the question I resolved or the remembering sort order of the tags when managing?
Hi, I am ready to refresh my site with WP2.3!
Thank you very much for your plug-in.
I found a little bug.
@simple-tags.admin.php / line.65
‘str_replace()’ will fail if server is windows.
I replaced (‘/’ -> ‘\’) for my development server.
No problem with linux server.
Thank you so much for the updated plugin. My tags (formerly categories) got a little out of control and this will help greatly in managing them.
Great work!
more or less a bug reports:
embedded tags only works for me as long as i do post using tinymce. If i do post using xmlrpc the embedded tags will not be used.
–rgds marcO
Robert Hartl > You can use default tag.php ! no ?
Ihor Vorotnov > Il will work on that. (not for version 1.1, perhaps 1.2 or 1.3)
AJ > I will test. Surely conflict JS.
Mr Papa > Lol ! Okay, i fix it for 1.1
k2crow > Okay. Fix in 1.1
marco > Already reported. Thanks. Fix in 1.1
Amaury, thanx a lot! For now i will stick to multiple blogs via one WP install but after your plugin will do the job i will use it for sure ;)
Hi there, it is me again….
I contacted the developer from the eventcalendar extension and he blames you ;)
To be honest, I do not have any ideas about this javascript thing, but I pasted the mail within his comments in a noPaster-Service. May be you could take a look, what he writes, because it’s all greek for me.
http://nopaste.ch/018556c0268c01d.html
Thanks a lot
Marcel
Your Plugin is great, but it kills the Event Calender Plugin, will be nice you can fix that.
Everytime i want to add an new event i have to put simple-tags off :(((
yours
DustDevil
Let me congratulate you on putting a much needed interface to the default WordPress 2.3 tagging system.
Just one question, does it ping Technorati etc. with the Tags of the post?
Amo: the plugin doesn’t work on Windows, because of stuff like str_replace(‘/inc/’, ‘/’, dirname(__FILE__)) (simple-tags.admin.php line 65)
You need to make sure you str_replace(‘\\’, ‘/’, $everything) before.
Hi, first wanna say, that this plugin is very nice and comfortable. Thanks a lot!!!
But I have the problem, that the TAG-CLOUD is NOT showed as a cloud. It always appears as LIST!!!
Any Ideas to solve this problem???
Thanks and Regards
Dennis
Hi,
I am sorry if it is answered but i have a question.
What do I have to enter into the single post.php to have the tags displayed close to the title?
Bye
WordPress 2.3 和 Simple Tags…
把日志升级到2.3版本,对于tags的重新调用,我选择了 Simple Tags 这个插件,我选择的原因很简单,因为之前我一直是使用 Simple Tagging Plugin 这个插件的,而他们的作者是同一个人,所以希望能…..
Bonjour,
Merci de votre nouveau plugins. Je viens de la China, avant j’ai utilise votre ancien pluging pour les tags,et mtn j’ai change a simple tags.
Ici,j’ai une question, avec simple tagging, on peut utiliser les code », est-ce qu’il y a la meme fonction dans simple tags?
Merci!
le code comme:
MAWSpitau > Ok. I solving the conflict.
Ajay > No. Documentation ?
Ozh > Also reported. Fixed in this version.
Dennis > Try with the default theme.
Mat > single_tag_title()
Jinwen > Not use PHP delimiter in comment ;)
just function(‘toto’);
New version 1.1 on progress !
Thumbs up. :)
AJ > Geopress not work for me in WP 2.3 without plugin installed… contact author plugin
It’s a great new plugin, Amaury! I used your other Simple Tagging plugin for the previous version(s) of WP and was happily surprised at how quickly you came up with a new plugin for WP 2.3. Your support has also been outstanding. Can’t wait for 1.1!
No complaints at the moment. :)
Kirk M > Yeah ;)
1.1 will be published this evening or tomorrow :)
Awesome plugin! Thank you so much for writing it! Excellent documentation as well. Got « Related Posts » integrated into my template files without a problem.
I’ve been searching and searching (and I’m sure this is something dead easy that I have totally missed)… But can anyone tell me how to display the list of tags attached to the post, at the end of the post, as it was possible with the older plug in. I don’t want a cloud. I don’t want a list of related posts. All I want are the tags attached to my post… (see http://www.tryphoon.com and look for the « tags: coming soon » if you want to see what I am trying to achieve)
Tryphoon > Use the default function the_tags() ?
What a great plugin. I’m wondering if code from this plugin might eventually be added to the WordPress core. It offers so much capability to edit and add tags. Thank you so much for putting this together.
I don’t get how to make the tags appear in a cloud. I can only get them to appear in a list or lined up horizontally, line by line. Does it have something to do with the array string of the format parameter? I understand « array – tags are inside a PHP array (use it with st_get_tag_cloud()) ».
***I don’t see why Amo would change the name of its plugin when the other belongs to the old past of old plugins … in 2 or 3 weeks, Simple tags will be the reference of tag management.**
Just to reduce confusion. There are many sites out there mentioning the other simpletags plugin. If you go to google and look for simple tags you might get results regarding the other plugin. And someone looking for theplugin for the first time might (quite easily) have no idea they are not the same. Just look at the biz of domainers taking advantage of people misstyping a domain name.
Both SimpleTags and « Simple Tags » will profit from having different, distinct, unique names.
PS: keep in mind I have nothing against any of the plugins and am not related in any way with anyone here. I just can see, from a « newbie looking for the simple tags plugin » point of view, the problematic of having two different plugins, with different functionalities, made by different people, with virtually the same name.
what I miss is a list of all tags in the writers field. the suggestion feature is nice, but it would be better to have all taqs in a list and then to select (thats what I had with UTW). I can´t remember all my tags, so it´s difficult to suggest.
Kind of a long shot, but I’m wondering if there’s any way to get a list (cloud) of all tags used on an archive page. For example, say you’re viewing /tag/foo and it shows 10 story entries tagged with foo. But those 10 individual entries are also tagged with other tags. I can easily show all tags for each entry under each entry, but is there any way to get a cloud of all tags used in all entries on the page – and to show that « meta » cloud at the top, rather than at the bottom of the page? Thanks.
Sansibar,
I’m sure if you request this, Amaury will consider adding it in a future release but until then the following two Tagging plugins for WP 2.3 should do the trick and I had both installed along with Simple Tagging and I didn’t have any compatibility problems.
Click Tags This will give you a clickable tag cloud below the write field of the WP editor. Clicking on a tag will insert it into the tag field. Clicking on multiple tags adds each tag to the tag field each separated by a comma. Not for those with 500 to 1000 tags of course since it would take up to much room but for 100-200 or less, it’s okay.
Advanced Tag Entry Also lives on the WP editor page below the Excerpt section and is collapsible like those sections above are. This gives the drop down list of tags that I think you’re looking for plus the ability to add/remove tags on a post (separate functions both with drop down lists), create a new tag or edit an existing one and a yet another drop down list of unused tags with the option to delete them.
This might be more functions than would be feasible to put into the Simple Tagging plugin but since the Simple Tagging, Click Tags and Advanced Tag Entry plugins all exercise the same WP database, I can’t see where they shouldn’t all work well together.
@Amaury,
I’m not trying to encroach on your project at all, I’m just letting Sansibar (and any others) the alternatives he might use until you’re able to decide just how many features are actually feasible to put into one plugin. I know how easy it is for a plugin to get « bloated ». Great job so far.
Thank you for developing this plugin. I was excited to install it, but it began to clash and then crash my WP 2.3 install. I was getting database errors when loading my site.
I think the plugin causing the errors was the What Would Seth G Do? plugin.
If you need to me to get you the exact error I can reactivate it and let you know, otherwise you could possibly install the other plugin and test it yourself.
Thanks again. Hopefully these bugs can be fixed.
P.S. When I get some more time over the next couple of days I will try again with the latest version to make sure it isn’t something that has already been fixed.
Actually, I was looking for something that shapes the tag cloud more circular, like is seen on the wikipedia.org example for tag cloud. How do I go about getting something like that?
>sansibar
I think so too.
Here is quick solution for you until author give us an option « Display suggested tags only: No ». :)
Just comment out two lines,
%plugins%/simple-tags/inc/simple-tags.admin.php (v1.0.4a)
1036: « if ( is_string($tag->name) && … » and 1038: « } ».
I refreshed my site based on WP2.3! Author, Thank you very very much!!
I’ve here a little problem. I try to rename the tag « Firefox & Co. » to « Firefox », but it doesn’t work. I can give other new names like « Firefox-Browser », but always, if i name it only « Firefox » i get the old name « Firefox & Co. » back. Any idea?
How to auto-make tags using already created keywords (meta tag)?
Thax!
i can’t use it ~~
:(
wp2.3
@china club: Your TagCloud page? You use php in the post, you’ve to create a template!
Thank you for a great plugin :)
I have a question, when I click on one of the tags displayed in the tag cloud, does that take me to a page, or a post? I ask because it doesn’t display my background and I need to make an adjustment to my css file but I don’t know where to look. (I am a WP newbie).
Thank you
Never mind, I figured it out :)
I have a tag that is in upper case (Alex) that I would like to be in lower case (alex). I’ve tried renaming the tag, deleting (Alex) renaming and deleting, deleting and renaming…. I just can’t seem to get rid of the (Alex) tag. Can you help me?
I saw another comment about this, but I don’t know if or how he resolved his issue.
Anyway, thanks for the AMAZING plugin. This is amazingly well thought out.
bonjour,
je voudrais utiliser le code [if (STP_IsTagView())] commme l’ancien pluging simple tagging. a-t-il la meme fonction dans simple tags?
Merci.
I’ve little problem with this plugin. Does not recognize ąćźó syntax. How to fix it??
LUUUUUV your plug-in!
is it possible to restrict a tag-cloud to certain categories?
(child-of-cat-XX)
this would help me a lot!!
thank you!!! keep up the good work!!!!
Version 1.1 released !! :)
BB > Customize your CSS.
sansibar > See v1.1
Scot Hacker > I will work on this for 1.2
Nath @ Reformed Geek > Give me your error message ?
BB > It’s an image :D
k2crow > Version 1.1 added options for this part.
iKArus > With WP Object Cache ?
Fred > This page list all posts/pages tagged with specified tag
Alex > Work for me. You use cache ?
Jinwen > use default function is_tag();
west28 > Which part of the plugins don’t work ?
Jacob Tekiela > For version 1.2
Would be great to be able to see in realtime a preview of a colored Tag Cloud with settings controls so we don’t have to keep changing colors an update the theme to see the results. Also is there a way to handle the hover over a tag in the cloud? Would be nice to be able to change the color to whatever we need when the mouse moves over one tag.
Congratulations for the plugin, is great
What is « cache »?
Alex > WP-Cache / WP Object Cache to improve blog performance ^^
I’m running WP-Cache 2.1.2 with Simple Tags 1.1. Still no luck! It says that the tag is renamed, but it still shows up in upper case instead of in lower case. Help!
I figured out why I can’t rename it to lower case. It’s because I also have a category named ‘Alex.’ When I change the category ‘Alex’ to ‘alex’ then the tag changes to lower case as well. This seems like a problem inherent with WordPress. Any idea about fixing it?
Problem. On version 1.1 I can’t find the way to display the most relevant tags (by count) ordered by name. The idea is to get a tag cloud that shows the tags with more ‘counts’ and have the list ordered by name, but with the new settings I can’t figure out how to do it.
Hi Amaury!
To have a dynamic siderbar or use special functions concerning my headers meta i used concerning your simple-tagging-Plugin the following expression:
php /* Tagging Page */ if ( STP_IsTagView() )
is there an equal tag I can use with simple-tags?
Thanxs
michael
Alex > Haaaaa, same name as a category ? okay, i will try this.
Perraco > Argh. You must user st_get_tag_cloud(),use the format array (PHP). After you must sort array with PHP. and output.
I will make an example this evening…
michael > default function is_tag() ?
Thank you——!!
Create Plugin! Now I can stop developing my own tags managing plugin…
@Amaury: No, Cache was my first thought too. I think the point at the end could the problem … hmh.
BTW. is the autocompletion gone? I loved this feature, is tehre a way to get it back?
It would be great (if you have enough time ^^) if you would add a second type-in field in the backend, where you can define the keywords (so 1 field for the tags and under this field one for the keywords).
You did a great Job, thanks a lot!
I’ve updated to 1.1. But there are some problems.
I can’t change Related Posts’ sort order and Tag cloud’s. It doesn’t work. Can you check this?
Thank you!
Thank you for this great plugin and porting to 2.3.
Trying to show related posts I get following error:
[You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '(term_taxonomy.term_id) as terms_id FROM wp_posts AS ]SELECT DISTINCT posts.post_title, posts.comment_count, posts.post_date, posts.ID, COUNT(term_relationships.object_id) as counter, GROUP_CONCAT(term_taxonomy.term_id) as terms_id FROM wp_posts AS posts INNER JOIN wp_term_relationships AS term_relationships ON (posts.ID = term_relationships.object_id) INNER JOIN wp_term_taxonomy AS term_taxonomy ON (term_relationships.term_taxonomy_id = term_taxonomy.term_taxonomy_id) WHERE term_taxonomy.taxonomy = 'post_tag' AND (term_taxonomy.term_id IN ("48", "59", "66", "10")) AND posts.ID != 128 AND posts.post_status = 'publish' AND posts.post_date < '2007-10-19 17:13:27' AND posts.post_type IN ('page', 'post') GROUP BY term_relationships.object_id ORDER BY posts.post_title DESC, posts.post_date DESC LIMIT 0, 7
Any idea what the reason may be?
iKArus > No, check JS error ?
Neil > I will check. But it’s work for me.
cywhale > Which MySQL Version ?
MySql: 4.0.23
ST: 1.1
GROUP_CONCAT does seem to be implemented from MySQL 4.1 up.
Hrmpf… now everything works for me, meta keywords, tag list,…
Is there any way to/chance to make the related posts query compatible for mysql versions < 4.1 ?
Version 1.1 released !
Fix compatibily with MySQL < 4.1 (Marker "related_tags" of Related Posts is desactived.)
cywhale > propose a patch ?
Thank you very much for that very, very fast fix. ~ 1 hour, related posts work – i wish i could fix errors on my plugin as fast as you. Thanks.
Just like iKArus, autocompletion isn’t working for me anymore. When I go to edit a post, the list of suggested tags is enormous, probably every tag I have. And nothing happens autocompletion-wise when I start typing in the tag field. In my Firefox error console it says ST_WindowOnload is not defined? I hope that helps.
Try : « Crtl – F5″ to force clear Firefox/IE/Safari cache.
Okay! Autocompletion is back now that I’ve cleared the cache. But the suggested tags list is still ginormous, on OS X Firefox and Safari too. And btw I’m getting javascript errors even when I launch Firefox on a blank page. So that must be a weirdness in my Firefox, nothing to do with the plugin. Sorry for the confusion.
Oh jeez. I just noticed the option for that. NEVER MIND… :-|
Edith Frost > an another problem ?
Hmh, here on my linuxclient is all O.K. and the plugins uses autocompletion! Sry, my windowsclient are kidding me. ;)
I changed the option to display only a few suggested tags — the field was blank so it was displaying *all* my tags. I think it’s still a little weird though. If that option is set to blank, then the whole taglist gets displayed backwards, Z through A. If I limit it to show 10 suggested tags, then I get a list of the last 10 tags alphabetically backwards. (zebra, yaddayadda, xerox, etc.) Is that how it’s supposed to look? I kinda thought it was supposed to be pulling a list of tags corresponding to words in my post; seems like that would be more helpful.
While I’m hogging this thread can I resubmit an earlier request I had, to paginate the list of untagged posts? I have thousands of them so it’s a very long page, a little rough on the system.
Yo Amaury. Thx works like a charm with the Calendar thingy! Thumbs up…
But I am still fighting with the Cloud. It is some how not possible to show it in a alphabetic order… I tried it in the « tag-tab » and in the widget-properites both do not work… weird Thing.
great release once again. one problem with embedded tagging together with twitter tools from alex king. i have modified twitter tools to add a embedded tag so the tweets are tagged with « tweets » (simply added [tags]blabla[/tags] to content). This embedded tags will not be seen by simple tags.
–rgds marcO
How can I convert Categories to Tags??
Thanks
Toujours aussi bien ce plugin, mais les options de classement alpha du Tag cloud fonctionnent bizarrement.
Alpha/sens descendant classe les tags du plus populaire au moins populaire
Can I get some help on how to use the st_get_related_posts() function so I can use the related posts function as I wish from within my template? I’m no WordPress expert but if someone could point me in the right direction, I’m sure I can take care of it.
Thanks!
Tim,
Here’s a basic example that should put the list of related posts at the end of a single post
Open up « single.php » (or whatever the author uses for a single post) in your theme’s templates in whatever editor you use or using the « Theme Editor » in your WP admin (should be called « Single Post » or similar in the editor’s sidebar) and look for the following:
comments_template(); (it will be surrounded by php tags)
copy and paste:
st_related_posts(« »);
immediatly above above « comments_template(); » and surround it with the same php tags as Amaury shows in his post examples. Once you see what it does you can move that same snippet of code accordingly (recommend keeping it inside the loop) to get the result you want.
HTH!
If anyone sees a mistake here please let us know. Thanks
Kirk:
Thanks! Worked great!!
Okay, just so I’m seeing what everyone else is seeing with the cloud widget…
All the settings work except for the « Order » with all settings in the drop down order list except for « Alphabetical/Descending » resulting in the cloud being ordered from the most popular tag downward. Setting the order to « Alphabetical/Descending » works correctly. This is what I’m seeing.
As a temporary option I found you can use the st_tag_cloud(« »); call in a text widget* and you just use Tag Cloud settings in the « Tags/Options » menu to set your cloud settings there. This will affect both your tag cloud page and the cloud in your sidebar and limits the max sixe of the most popular tag (sidebar space is limited of course) but if you don’t mind this or you don’t use a tag cloud page then it works until the widget is fixed.
*You have to have the latest version of « Exec-PHP » or the Samsarin PHP widget installed for this to work.
Hope this works for some of you.
another bug in 1.1.1 which seems to be reported allready. using %date% in st_related_post does put out sumthing like %te instead of the date of the related post.
–rgds marcO
Thanks for such a great plugin. I have one question, I hope u can help me.
How can i avoid to have tags on the pages? As of now I don’t have any tag on my pages and don’t wish to have them there. Unfortunately even if I delete the text to show in the options for no tags, I still get a list bullet showing on my pages. How can i avoid that? I am using K2 release candidate 2 on WP2.3
Thanks for ur advise,
Debora
Hi Amaury!
Using the simple tagging plugin i had the following echo for my meta header settings:
?php STP_CurrentTagSet(); ?
what can I use now with simple tags? Any suggestions?
regards
Michael
Hi Amaury!
For my metas in the header while working with your « simpletagging plugin » I used the following expression:
?php STP_CurrentTagSet(); ?
Now I had to change to simple tags is there a similar expression: the_tags just works in the loop!
Regards
Michael
Please follow my updated translation using the link below:Chinese translation for Simple Tags 1.1
There is a little error in the german language-file (sujet instead of Artikel). Icould send you the files if you like…?
#: C:\SVN\Localhost\simple-tags/simple-tags.php:439
msgid « %tag_name% »
msgstr « %tag_name%«
FYI: wpSEO-Plugin is Simple Tags ready!
It is impossible to show the 50 most tagged tags, sorted alphabetical like before. When I choose « 50, alphabetical and ASC » it shows the 50 first tags, when I choose « 50, count, DESC » it shows the 50 most tagged tags, but sorted by count. On the older Version it worked fine, but now it doesn’t.
Russian version of this plugin (original plugin + russian langpack) and russian manual
availible at http://lecactus.ru/2007/10/07/851
On my blog, tag cloud widget always fails to display tag randomly. Instead, tags are displayed depending on their counts.
Does anybody else is bothered by this issue?
Yes, me 2.
i am also having the same problem as Mirco..
to restore the old functionality (v1.0.4) for st_tag_cloud i edited the file simple-tags.php (v1.1.1) and pasted the old code back.
it’s a bit of a hack but it seems to be working well.
if anyone’s interested, you can download it here.
just replace your current simple-tags.php (v1.1.1) file with this modified one and you’re done!
Hello !
J’ai uploadé comme précisé mais en essayant d’activer le plugin j’ai ça comme erreur:
Fatal error: Call to undefined function register_taxonomy() in /home/siteweb/www/wp-content/plugins/simple-tags/simple-tags.php on line 143
??
J’avais,avant, simple tagging et ça fonctionnait…
Merci de ton aide
Leo,
Yes, I have the same problem with the widget. See my cooment on 20-10-07. This temp work around works okay if you don’t use a tag page or if you don’t mind the widget and your tag page to have the same settings. I’m sure it will be fixed soon enough. Till then I hope this helps you.
Hi.
many thanks for this plug in! It works great, except 1 small thing for me – it doesn’t show all tag in the cloud..
I use 1.1.1 on wp 2.3. Put number = 0 on the tag cloud command – but no joy..
Any hints..?
Regards,
Aharon
I got a fatal error when I try to activate the plugin.
« Fatal error: Cannot redeclare st_related_posts() (previously declared in *****/wp-content/plugins/ST_AddRelated2Feed.php:29) in *****/wp-content/plugins/simple-tags/inc/simple-tags.functions.php on line 20″
Thanks for that fabulous plugin! May i suggest one additional feature: Enhance the WordPress search to find articles tagged with the searched term.
Thanks from Salzburg,
Johannes
maybe a bug?
sample tags ver 1.1.1 with WP 2.3
« random all tags » isn’t work
Thank you very much, Amaury!!!
Te escribo desde Argentina para agradecerte por tu excelente trabajo. Este plugin funciona muy bien, es muy completo y muy util.
Gracias nuevamente, amigo!!!
Axel
Hi Kirk,
Thanks for your idea!
Since I don’t wanna have the plugin « Exec-PHP » installed, I simply modified my sidebar manually putting the function t_tag_cloud in it. Now it works just fine!
Looking forward to this bug being fixed.
There is an error in the Tag Cloud Widget: When I select a sorting order other than « Alphabetical DESC » it gets sorted only by « Most Popular »
Please help.
I would like to control through CSS the « a:hover » of the tag cloud so when I move over a tag it changes to the color or other setting I may wish, is that possible?
Hi Kirk,
Your idea works !
Thanks for your help !
:)
Hey Leo,
Good! Hoping it would. Of course the first thing I found out was that I have too many tags. Time to clean house (I was never good at organizing these type of things). :)
Salut Amaury ^^
Merci pour ton plugin. Adopté comme depuis que j’utilise WordPress. Seul un petit souci de classement du nuage de tags par ordre alphabétique, mais à pat ça tout fonctionne nickel :D
Encore une fois merci pour ton boulot ;)
I love this plugin–great work & thank you!
Question–
The « Related Posts » options don’t seem to be returning good results–in many cases it’s just returning the same 3 posts again & again.
Any help you can provide would be greatly appreciated.
good job. great plugin on wp
I updated the plugin and now my tag cloud doesn’t work. As soon as I change the parameters (title, mincolor, …) the tag cloud is sorted by name asc and it doesn’t take the most recent tags but this ones who are alphabetically first. so i get the number of tags which I want, but they are not the most important and that ones who have most posts. is this a bug, or am I stupid?
Note: version 1.2 will be published this weekend.
iKArus > I fix JS/Cache in next version 1.2
Edith Frost > Untagged page is remove in version 1.2, Mass Edit Page is improved.
I will fix suggested tags.
MAWSpitau > Widgets fixed in 1.2
Mko > Manage – Import
Lise > Widgets fixed in 1.2
Kirk M > Great explications !
Kirk M > Widgets fixed in 1.2
marco > Use post_date, i fixed old markers in 1.2
Debora > You must edit page.php in your theme, but K2 is complex… ask to k2 developpers!
michael > Use defaut function single_tag_title()
Skaldrom Y. Sarg > Send me your translation updated !
Sergej > Great !
Mirco > Fixed in version 1.2
Leo & Skaldrom Y. Sarg > Widgets fixed in 1.2
Elran > Avoid make public hack, i prefer as you send me a patch…
Dave > ST est compatible uniquement avec WP 2.3
Kirk M > Fixed in version 1.2
KennyP > Desactived old plugin « related posts »
Johannes > Added in version 1.2
louisbb > i will check
scribu > Widgets fixed in 1.2
Perraco > Edit your theme CSS
annie > You have three tags that tagged all posts ?
Thomas > You use Widgets ?
If I try to activate the Plugin in, WordPress says, that it can’t be activated because it has a fatal error… :( What can I do?
I mean WordPress says, that it can’t be activated because it will do a fatal error…
Marc > This plugin isn’t compatible with WP 2.2.3 ! Only 2.3 !
Thanks much Amaury! Looking forward to 1.2.
Now if I can ever get organized, I’ll be happy. ;)
« annie > You have three tags that tagged all posts ? »
Thanks for such a quick answer!
The 3 posts that keep recurring don’t have any tags in common.
The post titles all begin with the letter W, so maybe it’s pulling the last 3 alphabetical titles?
Thank you!
Hi there,
as I’m planning to switch to WordPress’ 2.3 branch and use your tagging solution soon, I wonder if there’s already the possibility to tag posts using enclosures? I’m asking because i use BlogDesk for writing my posts and it still has no WP 2.3 compatible solution for tagging, but (at least) supports enclosures.
Thanks in advance,
maloXP
Fantastic plugin! Thank you very much :) I don’t know about any bugs yet (just installed), but I got my untagged posts tagged and sorted in no time with this great plugin! I am really impressed. Thank you once again :)
Inga
You rock the house, so easy AND it works!
Really good plugin… I wish it work for me…
I have this « Fatal Error », I tried to see what I could do, but I didn’t understand well what to do :(
This is the Error
Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 46080 bytes) in /web/htdocs/www.agaponeo.com/home/wp-content/plugins/simple-tags/inc/simple-tags.admin.php on line 1273Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 4097 bytes) in /web/htdocs/www.agaponeo.com/home/wp-includes/class-IXR.php on line 513
Thanks in advance
I have a suggestion for a new function named st_the_tags_list() which can be used in the sidebar, outside the loop. fyi, your st_the_tags need to be used within a loop for it to work properly, which is why I added the following custom function myself.
function st_the_tags_list( $args = '') {
global $post;
$args = "post_id=$post->ID&before=&separator=&after=";
echo st_get_the_tags( $args );
}
maloXP > Yes, you can embbeded tags.
Agaponeo > Increase your memory limit. (to 16 or 32mo)
eyn > ST already have this function, but i have had no time yet to update the documentation.
You can use: st_the_tags()
$defaults = array('before' => __('Tags: ', 'simpletags'),
'separator' => ', ',
'after' => '',
'post_id' => '',
'xformat' => __('%tag_name%', 'simpletags'),
'notagtext' => __('No tag for this post.', 'simpletags'),
);
And param :)
Thanks for the answer, I will try in this string
/wp-includes/class-IXR.php on line 513.
Thanks again :)
I think is some server setting, that I can’t change :(
Thanks again.
Agaponeo > You may try to deactive all plugins, actived first Simple Tags, and after reactived others plugins ?!
Thank you.. it worked…
however i found a non compatibility with « st_related_posts » plugin…
Fatal error: Cannot redeclare st_related_posts() (previously declared in /home/wp-content/plugins/simple-tags/inc/simple-tags.functions.php:18) in /home/wp-content/plugins/ST_AddRelated2Feed.php on line 26if there will be some work around is good…
But your plugin is better to keep ;)
Thanks again…
That’s fine, but how exactly is the syntax? I did’t find anything on the net.
Thanks once again,
maloXP
Great plugin! Many thanks :-)
Just a question: there is a method to hide the related post list when it is empty. The message « No related post » seems useless to me.
I would like to use st_tag_cloud in my sidebar but I am having a problem with it. If I have a multi-word tag like « make money online », all three words get printed on one line. If for example the sidebar was the width of the first two words then the third word should be on the next line. Is this possible please?
Great plugin!
Is Jokob’s suggestion from above still going to make it into version 1.2?
Thanks.
Thank you for this plug in, It’s really greate & usefull,
Can you tell me what should I do to show related posts, only on the post page & to hide it on the main page.
Tag sorting in my cloud doesn’t work for me anymore. My tag cloud widget keeps showing tags from most popular to least.
BoltClock,
It’s a bug to be fixed in v1.2
Curretly you can use the solution that Kirk provided in his comment on 20th Oct to get it work.
Good luck
Hello,
I just installed your plugins (great, thanks) but when I display the tags cloud on my sidebar (see website: http://www.tchaouwww.com/BLOGWP), the tags are listed one below the other and don’t make a really « cloud »…
How can I fixe that pls ?
Many thanks in advance.
Hey Amaury,
First of all, great work! It was an easy thing to import from Simple Tagging.
Maybe I’m blind, but I cannot find the option « Minimum tag count required » for the tag cloud where I can change the preference for how many « Tags must be used at least this many times to show up in the cloud »
It was an option in Simple Tagging but not on simple tags anymore. At least I cannot find it.
Would be great if that is possible.
Thanks a lot
Alex
I want to add the full tag cloud to a post or page as my number of tags are too many to display in the sidebar. Can you please add this feature? Thanks.
How exactly does the « Add Tag » feature work? You say that it « lets you add one or more new tags to all posts which match any of the tags given » – does this mean that it scans ALL the posts you’ve made for the input-word, and then tags them automatically if that word is found in the scanned posts?
The reason I’m asking is because I’ve got over 1000 posts, and I would hate to mess anything up. I’d like to tag all the posts to make a tag cloud, and that’s why I chose your great plug-in. How long would this scan take on this many posts do you think?
Thanks in advance
Okay, never mind my first comment. I tried it, and realized how it works.
I have a great idea for you:
It would be SO cool to have a plugin that automatically scans ALL your posts, and then tags ALL the posts that match the tags you wrote in the input field. Is this possible to make?
As I see it right now, your plugin only scans for other tags.
I think a lot of people would love this, so they don’t have to manually tag thousands of untagged posts.
Hope for your answer :)
Joaquim Marquès
Is there a way of splitting tags? When I switched from categories to tags, I had a couple of categories with ampersands (ex. Science & Technology). I attempted to split them (into science, technology) using the rename feature, but I got the following error:
Error. No enough tags for rename. Too for merge. Choose !
Any help would be most appreciated!
I want the missing option to show number of posts of each tag to the right in the tag cloud. It is a basic feature which seems to be missing. Thanks.
Hi Amaury,
not sure if my previous comment is in moderation or that is was not submitted, so just in case again:
Maybe you noticed the new MU version released last night, compatible with WP2.3, so including tags.
Do you know if your new SimpleTags will work with MU again as the old version did?
If so: what is the best order to upgrade/import?
If not: will you release a separate version?
Merci!
Cheers, Harry
Hi,
I have a strange problem:
3 weeks ago I switched to WP 2.3 and Simple Tags (from Simple Tagging).
Now I’m getting every day more and more « Not found » warnings in Google Webmaster Tools.
The « Not found » warnings are all for not existing tags like:
homepage.com/tag1_tag2 is now homepage.com/tag1-tag2 or
homepage.com/tag1 is now homepage.com/tags/tag1
I think that the plugin gave all tags new urls. I thought that the « Google XML Sitemaps » would correct this, but apparently that was not the case.
I hope this make sense.
Can I do something about this? This seems to hurt my traffic (50 % less from google).
Thank you for answering.
Great plugin!
Hey Eddie,
The Simple Tags plugin does seem to change things just as you said. Underscores are changed to hyphens etc. If you’re really concerned about this you can use Urban Giraffe’s « Redirection » plugin which you can set to monitor 404 pages and do simple, single redirections for those URL’s that have changed (no .htaccess stuff, you do it right from with in your admin). The sitemap plugin is rebuilt every time there’s a change on your blog but it doesn’t provide URL redirection. Or you can wait for Google to thoroughly re-index the new URL’s and your traffic to pick up again. The thing to remember is that it’s the index of your home page and your most recent posts that’s most important. I exclude both my tag pages and archive pages from being indexed (duplicate content) and my category pages are excerpts rather than complete posts (doesn’t count as dupe. content).
Anyway, I’ve used the Redirection plugin and it works well enough.
Dear Amaury,
Thank you so much for your plugin.
Like Robert Hartl and Jonamerica, I was using the STP_RelatedTags() and RelatedTagsRemoveTags() in simple tagging. Do you still plan to add these functions into the next simple tags v1.2? hopefully yes!
Thanks again
tfab
hi!! again!
do you plan to make it possible to import ALL embedded tags in all posts at one time?
that would be really great!
thanks for the good work!!
Is it possible to add the possibility that one can chose if he wants to show related post on his blog but only on the post page and not also on the « frontpage ». Or before or after the « more » option?
Anyway, great plugin!
I joining to Nicolas question. Is it possible to hide related post from the main page? And to show them only on the page of full post.
Fantastic plugin. I looked for hours for a solution that would change the case on my tags from upper/lower/proper and your plugin worked like a charm. Great job. Thank you!
Hi
You have mentioned that « tags ID » can be edited. Also the tags ID can be used as a parameter to exclude in advanced functions.
But i cannot find any place where I can spot the tags ID on the tag management page of the plugin. Kindly help.
Thanks
S.K
Fantastic plugin! Really great! :-)
@ Kirk M
Thank you for the tips, I found the error: it was a plugin called « sitemaptags », which kept inserting the not existing tags into the sitemap.
For this reason I lost over 50% traffic for the last 3 weeks :(.
I want the strings « Related posts » and the list under it not to be displayed for a particular category or a tag.
Kindly tell me how to get this done.
I do not understand what to write in the « Advanced usage » box.
Thanks
S.K
Hi again–
After a few weeks of using the Related Posts option, I don’t think it’s working. It keeps bringing up the same few posts whether or not they have any tags in common with the post being shown. Is there a way to fix this?
Thanks!
Ok, I’m stumped.
st_get_tag_cloud returns an array alright, but I can’t make it out.
Could I PLEASE get an example of how to use the st_get_tag_cloud function? I’m not an amateur in PHP, but even doing a
print_r(st_get_tag_cloud("title=&format=array"));
returns « Array », I’m not sure how you’re storing the info, but it’d be nice to have a little documentation so we can list the tags..
Just a hint woudl be great :)
For display nothing, if post haven’t related posts
=> Fix in 1.2 with
st_related_posts(‘title=&nopoststext=’)
Clive Thomas > No it’s a CSS problem. Web != Print
Wes > Tag cloud by category => In 1.2
Stanly Dezignus > Add an option in 1.2
BoltClock > I know, fixed in 1.2
hurry > Create a WP page, assign a template, and set tag cloud function
lan H. > Fixed in 1.2
hurry > you can add it which make a custome format
Bike > Simple Tags will work with WPmu 1.3, i will publlish an extension for tags site soon.
tfab > Related Tags in v1.3, i think.
Jacob Tekiela > Hum… i see that.
Nicolas > Added in 1.2
Sk > I fix it in 1.2
S.K > “Advanced usage” box. => The same syntax as PHP function.
I too am confused as to why the Related Posts function behaves like it does.
For instance, I have the « Text to display if no tags found: » set to null. And on posts with no tags, nothing is displayed. Perfect! (example)
And I also have « Enter the text to show when there is no related post: » set to null. But for those same posts, I get the « Related Posts » output with one unordered list bullet.
Should the Related Posts on untagged posts be empty as well?
Hi, super plugin!
One question: How can i remove the relatet_post’s from the startpage (homepage)? They should only come one the articles.
regards
stefan
I agree with the last two comments. Both of these need to be fixed in the next release. Thanks!
I agree heartily with Stefan. I would really prefer to only show related posts on single post pages. I would also like them to show up below the « Tags: … « , so having an option as to what order things appear in would be great.
Otherwise a super pluging!
thank you very much for this
The key word in Christina’s comment is « option ». I would expect a lot of folks would want the related posts to show on the main page of the blog. Many sites have a « home » page that has no blog posts on it, then a « blog » page with a certain number of recent posts, (sometimes excerpts), and then the single post page.
On many blogs, visitors never do anything other than read the posts that show on the blogs front page, whether that is the home page of the site or another page is irrelevant.
The key on all of these great suggestions is ease of use and having options to do it different ways.
single_tag_title()
function is not working on wp 2.3
Can someone help me
Hi Amaury,
you refer with your suggestions to version 1.2. !
Is this version avaliable at this moment or will be released shortly?
Tnks
When is Version 1.2 coming out???
@ Amaury
> Clive Thomas > No it’s a CSS problem. Web != Print
I know web != print, I was talking about on screen display, could you please clarify.
Thanks
@Stefan + Christina:
The fact that there’s no option to do that does not mean, that there’s no way to get the solution you want. Simply set « Automatically add related posts » to « No » or « Feedonly » and put this behind the loop in your theme-template: « st_related_posts() »
You can take a look at my blog to see how it works.
Bike > Simple Tags will work with WPmu 1.3, i will publlish an extension for tags site soon.
I will be waiting this as well, since a tag cloud of all tags across my wpmu setup would be the best thing ever. I am even ready to donate :P
It seems that 1.2 broke the number limiter for the tag cloud. Instead of showing only 25 tags the widget is showing all tags. I think this is also true for the tag cloud, which I can’t get to show less than all the tags either.
Jonamerica > Fixed in 1.2.1, thank you for comment.
I started to test this on WPMU 1.3, so i added it to the mu-plugins folder because i want it enabled for all users. Tags option work fine for all blogs, tags get added to the meta fields, tag cloud widget appears (also the WP native tag widget appears, gotta figure out how to disable it) but the only thing that i don’t see working is the auto complete.
thanks for this plugin, it really eases the process of tag managing.
tricky > i will try this soon ;)
v1.2.1, my Related Posts are gone …
I’m used before:
<?php st_related_posts('order=ASC&nopoststext=Leider keine passenden Tags zum Beitrag gefunden.&title='); ?>
And now i’m edited order to date-asc …
Any idea?
Feature request: st_the_tags allow for &number= argument. This way an article could have a large number of tags, but only x number of tags would show.
For example, This would be used to show the top 5 tags for a specific article on the home page, but showing all 30 tags on the single page.
Would be nice to have selection & display options, similar to tag cloud.
Thanks!
On version 1.2.1, RelatedPosts are gone, not working anymore.
Using WordPress 2.3.1, funcion st_related_posts(« »)
Hi
Great plugin – convinced me to upgrade to 2.3. One questions – what’s the new version of STP_CurrentTagSet?
Thanks
EB
iKArus & Perraco > Works for me. (and 5 differents blogs) Try to reset ST options ?
Jonamerica > I see that.
Everton > See codex. Template Tags
st_the_tags(); doesn’t work the same as stp_current_tagset. Check out http://www.onetipaday.com/tag/music/ – with stp_current_tagset at the top it would display ‘Entries tagged with ‘music »
Well, concerning Ikarus and Perraco’s problem; the related posts aren’t exactly gone, they just don’t appear when you have at least one parameter set. Though, it works fine if you have nothing in between the brackets – but that shoulnd’t be the way it works.
st_the_tags() is an extension to default built’in function http://codex.wordpress.org/Template_Tags/the_tags
And use http://codex.wordpress.org/Template_Tags/single_tag_title
instead STP_CurrentTagSet
Hi
I’ve just upgraded another blog and I’m getting the following error when I try to activate simple tags:
Fatal error: Cannot redeclare st_related_posts() (previously declared in /home/connecte/public_html/wp-content/plugins/ST_AddRelated2Feed.php:29) in /home/connecte/public_html/wp-content/plugins/simple-tags/inc/simple-tags.functions.php on line 18
Help!!!
Remove your old related posts plugin…
thanks. How do I fix:
I do always a reset of the options after each update, if there are any problems.
It’s like 7162 said. Without any character between the brackets it works here limited.
Thanks for your great plugin – good job. I have it on my blog.
Short question: There there any possibility to change the font of the tag cloud. Not only the size and color – which is already implemented. I would like to choose the font-style (eg. italic), font-family and the text-transform (eg. lowercase) as well.
Thanks again.
theddy
Hi Amaury,
at first: Great plugin.
Unfortunately, I have some issues. The tag cloud is displayed in my sidebar, but the sorting does not work. If i understood the comments correctly, thats a wordpress bug. But thats not so important.
My other issue is: I try using st_the_tags();, it is inside the loop, but it says always « No tags for this post ». There are tags set for the post, for the post is displayed when i click on the corresponding tag in the tag cloud, but the function still does not display the tags for the post.
Any ideas? I am using WP 2.3.1 and Simple Tags 1.2.1.
Thanks a lot,
Sven
how can you have the ultimate tag plugin when it doesn’t even list the tags in the post or page edit to select ? seems like a grossly missed feature :)
Very, very useful plugin. Thanks for the work.
Feature request: In mass edit, it’d be really helpful if I could return a list of posts based on categories.
I used the « related posts » with the « singleonly », I want it display « related posts » in the all posts, but not pages.what I can do?
In the next version, I hope you can let us to select, posts or pages. thanks!
I am chinese, my english is not very well. I hope that you can understand these. :)
I am coming back, I find to use « st_related_posts() » in single.php can only display “related posts” in posts. Thanks!~
:)
Very good plugin!!! But add more feature for post header tags will be very nice
Hi Amaury,
i solved the « no tags for this post »-problem for me. I used to have a very old theme, constructed under WP 1.2, so the loop was not like this:
if ( have_posts() ) : while ( have_posts() ) : the_post();but like this:
if ( $posts ) : foreach ( $posts as $post ) : start_wp();It seems that the old loop style broke the tags function. I rewrote my loop function and your plugin works like a charm.
For everyone out there who uses old or selfmade themes and has problems with displaying the tags, try to rewrite your theme so that it matches the loop function in the wordpress codex.
Keep your good work!
Sven
The related post function has a problem when the title is empty: nothing is produced!
The problem exist when you configure it in the options an also when you configure it directly in the php code using …&title=&…
This option is useful and in the priors version worked correctly.
Luca
Very, very useful plugin. Thanks for the work!!
Advanced Usage doesn’t do anything in my 2.3.1 WP installation. Whatever I put into that field I get no change what so ever. Could someone cut and paste from their settings so I can try with that and see if I made some kind of error?
« Maximum number of tags to display » doesn’t work at all either. I put 5 and it displays 45. I then put 100 and it displays 45…
font size unit, doesn’t function, it uses pt still when I change to px
Never mind my two posts, I used the WRONG widget to display the cloud :D *bash head into keyboard*
Thanks for this great plugin.
Chinese translation updated at v1.2.2:
下载 Simple Tags 中文版
Have fun!
:)
Great work.
Did you think about integrating auto-tagging with tagthe.net?
Hi,
I need to remove the number in the brakets behind the related post title. How can I achieve this?
Title(1) –> Title
Thx.
I’ve been trying to disable comment counts to no avail. Can anyone help? I have relatively new site with no comments and I don’t want to show a bunch of zeros! Thank you again.
Patrick
Patrick:
It is very much there above:-
//Example:
We want to show the first 10 related article without title, without pages and without comments count.
1.
<?php st_related_posts('number=10&title=&include_page=false&xformat=%title%'); ?>//
Hope it helps.
S.K
One suggestion: the posibility to change order of all tags available when writing new a new post-currently all tags are ordered descending (Z,Y,X…) which is not very intuitive. It should also be possible to sort them ascending (A,B,C…)
After installing, the plugin page does not work anymore -_- I can open the Tag admin, but I can’t view my plugins…
Am I the only one with this error?
There is a major bug in the related posts part of this plugin. Often the « related posts » that are listed are completely unrelated to the main post. Often they don’t even have any tags in common!
I don’t know what logic the code is using to list related posts, but something is not working right.
It might help to have the ability to remove or add related posts individually. Right now, it seems you have only two choices: stick with what the plugin offers up, (which at times is so wrong, it is comic), or turn off the related posts feature.
Upon further investigation, this seems to be what is happening. There are actually not any instances where there are NO tags in common. But the following happens quite frequently. I think this is what needs to be fixed.
Main post (A) has Tags 1,2,3,4,5,6,7,and 8
Post (B) has tags 2,10,11,12,13,14,
Post (C) has tags 3,4,5,6,7, 19, and 20
The plugin will often grab Post B as being related to Post A, while not listing Post C as being related to A.
Now you could argue that B and A are related because they have one tag,(2), in common. But there is no way the plugin should ignore C in favor of B. It just makes no sense as C and A are obviously MUCH more closely related to each other than B and A.
The plugin should compare tags and grab the related posts that have the most number of tags in common with the original.
Auto Tagging Doesnt work for me :( How can i fix it ?
After update of plugin, plugin started to add tags into post automaticly. I changed from options as in picture
http://img69.imageshack.us/img69/4901/adszec5.jpg
But there is no change. It’s still there.
Another problem i choose add tag to feed option. But i don’t see anything on the feed.
you can check
http://www.carantina.com/heroes/
http://www.carantina.com/feed
How will i solve ?
Hi Amaury -
In post http://www.herewithme.fr/wordpress-plugins/simple-tags#comment-31254 you mentioned that in version 1.2 you implemented a WordPress search enhancement so WordPress finds articles tagged with an search term too – I downloaded 1.2.2 and can’t see this enhancement.
If i search for « photography » (http://johannes.jarolim.com/blog/?s=photgraphy) i can’t find the articles that were tagged with that word (http://johannes.jarolim.com/blog/tags/photography).
Do i have to activate something – Or do you need help with that feature? I’m a WP-Plugin programmer by myself and could try to assist…
Greets from Salzburg,
Johannes
I click on the tag in a cloud of tags. Displayed the list of posts but in title displayed « No tag for this post. »
Any ideas? I am using WP 2.3.1 and Simple Tags 1.2.2.
Hi Amaury! New russian virsion 1.2.2 you can download at
http://lecactus.ru/download-manager.php?id=64
Update translation in you archive please too :)
And i have problem « Auto Tagging Doesnt work » too – some words arework, but many many posts get blank content :(
Is there a simple code example of how I can use st_get_related_posts within the loop?
Thanks
The new function to replace stp_current_tagset is, for Simple Tags 1.2, single_tag_title (http://codex.wordpress.org/Template_Tags/single_tag_title)
I fix in ST1.2.2, blank title = no output
theddy > You can use the marker %tag_scale% for make a full css tag cloud.
mu > Ajax Tags edit in theme ? (i’m not sure to understand you comment…)
Bruce > Filter by category will be add in 1.3
flyxj > Restict by post/page added in 1.2.2
Sven > I can’t guarantee compatibilty for too old version ;)
lpalli > Fixed in 1.2.2
SubZane > Lol !
Leo > Tank you Leo !
Kilian > Good idea, i will add this in next version 1.3 :)
Operatorone & Patrick > You can customize your output format with the parameter xformat ! Read documentation
Bob > You can ?! see Admin options ?
Laura > You use WordPress 2.3 ?
Will > I will check this… workforme…
Craig > An error message ?
Maximus > In your template you use the_post() ?
Andy > I will an example in next version.
You didn’t answer my question for a long time can you check it
You didn’t also sumbit it . It was including url on it maybe it ‘s at aksimet now
No Error Message. Just Problem is it’s not tagging. i will try to explain problem.
For Example
My Title for a post « Hello World » It has to make that words to as tag(Hello,World).
Thanks
Craig > And your words aren’t add as tags ?
Yes, My Words doesnt add as tags ;(
Hello. Currently I’m working on a redesign of my site and looking for a possibility to show a short information on top of the tag archive containing the tag name and the tag rss link – is there a way to get the rss link for a given tag on the archive page for the given tag (found only the rss template tag in st_tag_cloud)?
Maximus > In your template you use the_post() ?
No, rather than between, and which must be inserted?
Thank you for your great support and your great plugin :)
I’m trying to disable auto tag add but it doesn’t do it how can i fix it?
Maximus > In your template you use the_post() ?
Yes:
Amaury – Sorry, another bug for me! I am not sure if this just started, or if I just had not noticed it before, but what happens is:
Even with « Tags For Current Post>Automatically display tags list into post » set to « no », the list of tags is inserted at the end of the post. I changed it and changed it back, deactivated the plugin and reactivated. Nothing fixes this.
The plugin just ignores me setting this to « no » and inserts the tags anyway.
As further explanation of the « Related Posts » bug I described a few days ago, here is exactly what is happening on my site. My new post « A » lists « C » as one of the related posts. It does not « B ». As you can see « A » and « B » are very closely related by tags. The only tag « C » has in common with « A » is the « pollution » tag. « C » should definitely NOT be listed as a related post and « B » should be.
A:) New post has these Tags: alkaline batteries, batteries, landfill, mercury, pollution, rechargeable, recycle, recycling
B:) The related posts lists ignores a post with these Tags: alkaline batteries, batteries, cfl’s, fluorescent bulbs, landfill, mercury, paint, pollution, rechargeable, recycle, recycling
C:) And inserts this post into the « related » list: Tags: antibacterial soap, laundry soap, phosphates, pollution, soap
Unfortunately, I was excited to see this plugin to make tags work better in WordPress. But now I really do have to deactivate it because of the related posts problem and not being able to hide the display of tags on a post.
Will I had same problem I wrote for several times but Arnuary didn’t reply.
I solved problem with deactivating related posts. That tags are adding together with related posts. If you also choose « no » for related posts problem will be solved. This is a bug for wordpress. I’m happy that someone has same problem with me .
We will be waiting for fix
On the tag –> options page, could you add an option to display a limited number of meta keywords in the header, such as being able to limit the number of keywords to 25. Most search engines won’t use more than 25 for example, so more than that just adds weight to the page when loaded. As an additional option, it would be ideal to display for instance, 25 meta keywords from the page that is being loaded, so the keywords will always be relevant to the page that is loading.
Does anyone have the code for the .htaccess to rewrite /tag/tagname_tagname to /tag/tagname-tagname using rewritecond and rewriterule?
hi,
when i insert [tags] bla ble bli [/tags] into an email that i send to my blog, the mail text gets posted correct and the tags between [tags] and [/tags] doesn’t show. so that works fine.
but when i put a « new » tag inbetween the markers that isn’t a tag in my wp-admin-panel yet, it seems it doesn’t show up in the tag cloud.
do i have to refresh the tag list? or can i only insert tags in between the markers in the email-text that do already exist? or is it because they’re submitted to the blog via email…?
thanks a lot, flo.
Hi,
first thanx for the good work with the plugin. Works very well.
Just one problem: On the site I’m currently working on: http://www.malescribir.de I get the problem that the plugin autolinks tagwords inside the pages to refer to that same page. So when I click on it, I get as a result that same page. Example: « Poe » or « Max Weber » at http://www.malescribir.de/trayectorias/ilegibilidad-y-modernidad
Is there a way to tell the plugin that I only want to have tagwords in posts/pages autolinked when there are at least two referrers to a tag?
sorry, I forgot:
Thanx for any help!
greets from Berlin,
Tobias
Though a post contains terms that are figuring as tags of previous posts, they do not come on as « suggested tags ».
Can you please tell me how to make that happen.
Thanks,
S.K
S.K Is the related posts section of Simple Tags working for you? The logic the plugin uses to relate posts does not work correctly for me (see post that is 7 before this one), and seems like it might be the same logic used to « suggest » tags?
Thanks for your insight, Will. I’ll take a hard look at the way it works.
I hope the algorithm of related tags will be fixed in the next revision.
S.K
Problem solved. The reason was the title “No tag for this post.” plugin WPSEO
SK: Thanks! Hope it can be tweaked. Do you have any idea about the following?
Even with “Tags For Current Post>Automatically display tags list into post” set to “no”, the list of tags is inserted at the end of the post. I changed it and changed it back, deactivated the plugin and reactivated. The plugin just ignores me setting this to “no” and inserts the tags anyway. If I deactivate the plugin then the tags are not displayed on the post.
Has anyone else seen this behavior?
Thanks for all your support!!!
I have a problem with a leading comma in the tags for a post. Here’s what I do:
1. create new post
2. write my post, click save and continue
3. select a few tags from the Suggested tags
4. save and continue
5. there’s a leading comma in the tags list. This comma will also show up in the post if I publish it.
(i.e. the tags list looks like this: » , cat1, cat2, etc. »)
6. I manually remove the first comma, save and all is fine…
Might it have something to do with the comma behind the last added tag when you save a post?
Any ideas?
Can someone tell me why my related posts shows these :
%title% (%commentcount%)
thanks for the help.
Will, I haven’t opted for tags for the current post either to the post content or for the feed through this plugin. Instead, I use the native WP’s tag display template call for that purpose.
Please check up if you have ticked any check-box in that area.
S.K
Hi Ronnie,
Same thing happened to me. There was a leading comma and the comma was displayed at the bottom of the post. For some reason though it happened only once and now it’s fine. Go figure.
You don’t happen to have that « auto tagging feature » on do you. Just curious.
I believe it’s a bug, still in 1.2.2
If you follow my steps with a draft post I think you’ll get the same result as I do, each time. (I’ve tried multiple times).
SK – I am sorry but I don’t understand your answer. Please explain what I have wrong. Or anyone else can too if possible.
On the Admin page: Simple Tags: Options, the 5th section down is called: « Tags For Current Post ». In this section is a drop-down box titled: « Automatically display tags list into post content: »
I set this box to « NO », (the default), and yet tags still show at the bottom of every post. If I deactivate Simple Tags, then the tags do not show on the post. They are still in the meta data, but not on the post.
If I have Simple Tags activated the tags always show on the post. How do I fix this?
OK, I figured out the bug. In your Simple Tags options page if I have the Related Posts set to display, then the box to turn off the automatic display of tags does not work. If I turn off « Automatically display related posts », then the box to turn off display of tags in posts works as it should.
This should be easy for you to fix! :-)
That will leave only making the logic better for the plugin choosing related the posts.
-Will
Oh!, Will. You did some research!
I didn’t enable related posts from the options page. Instead, I use the « st_related_posts » call on my template, so that I can have a better control over the display.
S.K
I think I understand. I guess you will be able to fix that easily when you fix the Related Tags logic.
Now, another one…. Sorry, I like this plugin and want it to work perfectly! A lot of work for you, though. ;-)
A question about renaming tags. I used the options page in Simple Tags to rename Health to health. (note lower case). It does not rename. Stays Health with a capital ‘H’ even after saving. If I rename Health to « well », it works. Then is I rename well to health with a small ‘h’, it still names the tag with a capital ‘H’. Even after clearing all form data, cache, and cookies. Strange one.
Great plugin, but…
…I can’t get the tags to display. I imported them from the old Simple Tagging, and that went well. Then set « Automatically display tags list into post content: » to « All » but the tags do not show up. What am I missing?
Strange that you have the opposite problem I had until I turned off the « insert related posts » option.
Do you see the tags you imported showing in the META section when you view your page source?
My problem was shooting off my mouth too soon. I had upgraded to WordPress 2.3, but hadn’t updated my theme. As soon as I did so, the tags showed up.
how to style the tags ? ? ? this feature appears to be missing
Cywhale > You can use the marker for generate feed link
Maximus > you must use the function the_post() to active tags features…
start_wp is old way !
Will > Work for me… example this blog…
ronnie > It’s a wordpress issue… il will try to fix this bug… in fact, you don’t finish tag list with a comma.
Kirk M > I fix the wordpress issue in my function, but wordpress no… il will check this for next version…
alias > You must add the CSS class marker in tags xformat, and create your customize CSS.
Amaury: What works for you? Which of my comments are you referring to?
Also: What is the difference between SK and Amaury? Both are working on this plugin?
Nay!
Amaury is the author of this great plugin!
I am a mere user like you, perhaps a bit less accomplished!
I think Amaury wants to make this a comprehensive plugin embracing all aspects of tags. I am confident that he will be fixing the glitches in the forthcoming version.
Regards,
S.K
SK – Thanks for the clarification! Hopefully Amaury will answer my question about what he sees working. I just did not know what he was referring to because he said « works for me » and I have posted about 3 different things.
Oh said SK you said earlier:
« I didn’t enable related posts from the options page. Instead, I use the “st_related_posts” call on my template, so that I can have a better control over the display. »
Can you add to this a bit so I can try to do the same thing. I don’t know about the « st_related_posts » call or where it should be in a template.
Thanks!
Will, this is the code snippet I use incorporating both the WP’s native tag function and Simple-tag’s st_related_posts function calls ( I have excluded one tag for my preference; removed no tag text and number of comments. You may make changes according to your preferences):-
<?php the_tags('Tags: ', ', ', ''); ?>
<?php st_related_posts('number=3&exclude_tags=337&title=Posts with common tags:&nopoststext=&xformat=%title%'); ?>
The aforesaid function has been explained by Amaury at this location of this web page.
Hope this helps.
S.K
I trying to implement the procedure in SK’s last post, I discovered something else. If you have a category in WordPress with the exact same name as a tag you have entered using Simple Tags, you will have trouble. I had some like that. So I made sure I had no duplicate tags and categories, now two things are fixed.
1. I can edit the tag names now and it works as it should.
2. The problem I had with categories being displayed in the list of tags on posts is now gone.
————-
I still don’t have related posts working yet, following SK’s and Amaury’s instructions. I must be putting this code:
in the wrong place. I tried in the loop in the main index template, but it made my blog go blank. The singe view and all other pages were still fine, of course, so know the trouble is the placement of the code.
SK – Where exactly did you put the code so it works?
Thanks!
I’m waiting for fixed with new version when will you release it?
Thanks for this new version :)
Now I have installed WP 2.3.1 with Event Calendar 3.1.1._rc3 (http://wpcal.firetree.net/2007/10/22/v311-release-candidate-3/) and your Simple Tags 1.2, but I cannot use both :(
If the Event Calendar is active and I try to enable Simple Tags I get fatal error and the same if Simple Tags is active and I try to enable Event Calendar …
Do you have any suggestion?
Thanks in advance
Miki
Hi,
I am frantically trying to use your simple tag plugin (since weeks). But since WP updated to 2.3.1 there are several errors occuring:
1. if the plugin is activatet I cannot manage postst. everytime I hit that tab my browser (any browser) wants me to download the edit.php). So I have to deactivate the plugin for the post editing and creating to work
2. tags are showing up below ALL posts no matter if I allowed them or not.
Do you have any advice? Because I love your plugin and I am so desperate because I still can’t get it to work.
thx4all
Jacky ;)
Will,
I have placed it just after the « the_content » template tag within the loop and it works.
S.K
Bouh !!!
Pourquoi lorsque j’active le plugin j’ai une erreur fatale et une page toute blanche !!!!
Aidez moi please
Config : WP 2.3
plugins : image manager et lightbox
d’avance merci
hello amaury, thanks for the great plugin :D by the way i would like to ask about how to remove the tags in my post..as you can see in my blog..they appear at the end of each post..i think its enough just appear below the title
Great addition to WP 2.3! Thank you!
One thing I’d like to see in one of the next versions: use of synonyms.
For example: I often use a tag like « grrr » or « grr », and I don’t want these to appear in my tagcloud separately (too lazy to count the r’s ;-)), it would be nice if you added a feature like the one in UTW.
Hi. I love your plugin! Yesterday, I upgraded to version 1.2.2, and no matter what combination of options I choose, the tag cloud _always_ displays in a random order. I want it to sort by popularity, descending, which was working perfectly in the previous version.
Before I « downgrade », I’m wondering whether I’m just doing something incredibly stupid.
Thanks again, and thanks in advance for any help or pointers you can give me!
Great plugin. Is there any way to get rid of the URL for your plugin that is appearing in my tag cloud? It is throwing off my UI. At the end of the tag cloud it says :http://wordpress.org/extend/plugins/simple-tags ». I do not see an option to turn this off.
Thanks!
Any updates on when this could work with mu? :D
One last comment (for today at least) :-)
I noticed that the Title wasn’t showing up above the tag cloud in my sidebar, but the « styled » title was there. I looked at the source of the page, and it seemed that the $title variable was substituted with a blank.
I have a title set on the Options page, and I even changed it and resaved, to see if that made a difference, it didn’t.
To test, I hard-coded the $title as follows, and it shows up, so at least for me, there is a « buglet » in the setting of the title variable…
function widget_st_tag_cloud( $widget_args, $number = 1 ) {
extract($widget_args);
$options = get_option(‘widget_stags_cloud’);
// Use Widgets title and no ST title !!
$title = trim($options[$number]['title']);
$title = ‘Tag Cloud’;
$args = ‘title=’;
Thanks again for a wonderful plugin!
Please disregard my last comment. I am a bonehead. The URL was on the page. Sorry.
And another thing: are related tags already included?
Whenever I click on a tag and thus surf to a page which shows which tag I clicked and all posts using that tag, I’d also like to see a list of related tags (just the tags, not the posts).
As this was possible in UTW, I suppose this should work in Simple Tags too.
Thanks in advance.
Merci beaucoup! What a wonderful plugin… it’s just what I’m looking for!
I was wondering (since I’m not that good at scripting) how I can get the background of the tag cloud to match the background of the sidebar (because currently the cloud’s in a white box within a blue background). Thanks a mil!
hello amaury,
I started a complete redesign of my personal blog, including upgrading from wp 2.2.3 to 2.3.1.
I installed this plugin, imported from UTW and everything seems fine so far except that I have the impression that something is wrong with the tag cloud, but it looks more like a caching issue to me but I don’t know what could be wrong.
the site is here: http://pacura.ru and you need user:test pass:test to view it as it is currently undergoing maintenance
click on the different pages from the menu and watch the tag cloud. I tried different PCs and I always see another tag cloud but its still the same widget in action. I do not understand whats wrong, it looks like the page was cached on my site, and is served from cache… on each page the tag cloud looks different, I do not understand.
I have a number of posts with images, tags, etc. but on post wasn’t showing the content when on its individual page. Posts either side showed perfectly, it showed perfectly on the main page, but not on its own.
Turns out that I had too many tags. It seems with more than 21 tags, the content comes back blank. Why?
Also, the auto-tagging totally ruins my site – tiny text, only one post on the front page, no footer showing, totally blown. Any ideas?
Just in case you check my site and think I’m crazy (because the cloud is now sorted the way I want, and the title is there), I broke down and hard-coded my choices in your php files. So, it’s working, but whatever I change in the ADMIN OPTIONS page, doesn’t get picked up correctly by the 1.2.2 version, but did in the 1.1.1 version.
Thanks again for a great plugin. Even the hard-coding doesn’t bug me, as I didn’t intend to change these choices often. ;-)
Is there a way to display only those tags in the tagcloud that have been used at least in (for instance) 20 articles?
Thanks for a great plugin!
I’d like an option to include the list of related posts on all posts, no matter what view, but not on any pages.
I made a change to the inlineRelatedPosts function that accomplishes what I want. But it would be nice to have it in an option.
Thanks again!
I recently upgraded to wpmu 1.3. I am really keen to see site wide tagging work on a wpmu install.
Bravo Amaury pour ce plugin…
J’aurais aimé montrer les tags similaires au tag choisi.
Y-a-t’il moyen de faire cela…
1/ Tag choisi
2/ Cherche articles ayant ce tag
3/ Génère array de tags apparaissant dans les articles
4/ Output liste de tags similaires au tag choisi
Merci
This plugin is exactly what WP tags needs. Merci!
I’m having the problem Will mentioned earlier – renaming to the same word without a capital letter doesn’t work and it seems that adding new tags during a mass edit produces tags with the first letter as a capital (even if they were types lower case). Is this normal behaviour? I’m not especially fussed either way, I’d just like to know before I tag everything and then have an aneurism because everything is inconsistent :P
I installed ST after upgrading to WP 2.3.1 Everything works fine, but: The tag administration page and the mass editing page are plain blank. Options and Auto Tags work well. Any ideas?
In case anyone wonders, this works with wpMU as well with a minor edit. All you have to do is upload to /mu-plugins/ and edit the main php file to point the install dir to /mu-plugins/ instead of just /plugins/
Now all this script needs is the ability to create a tag cloud using tags from all the blogs accross the installation of a wpMU site. I tried to code, but I suck at it.
A test server with this plugin working can be found at http://bh.kostya.cl, signup and test it if you want. Works great!
why cloud tags sorted differently on different pages?
Grazie mille per questo plugin meraviglioso!
c’est à dire
Thank you so much for this amazing plugin!!
@max – read my comment above I have the same issue
thanks for the GREAT post! Very useful…
Thanks for the excellent plugin!
One quick question: My tag cloud is not showing up on the left hand column. What could I be doing wrong?
Regards,
Manny
http://www.blogsantodomingo.com
Manny > Use CSS to center your tags cloud
#widget_stags-1 { text-align:center; }
Max > You use random sort ?
jovelstefan > Not any memory for PHP ? try to display php errors
Kristarella > « renaming to the same word without a capital letter doesn’t work », works for me…
Warning, Tags in WordPress 2.3 are case sensitive
tommy > Les relateds tags font refaire leur apparition… un peu de patience (for version 1.3)
gordob > site wide tagging, i plan this feature… (for version 1.4)
Judy > An option for what ?
Barbara > I will add this param (min counter)
Hadar Pedhazur > I will check options…
Graeme > can you send me a link or a screenshot of your problem ?
ovidiu > in fact, you choose Random sort, but your plugin cache create « page cached version », one per one, as tag cloud is different for each page…
Kelly > You can use xformat param, to use the marker for create CSS level %tag_scale%
a href= »%tag_link% » class= »tag-link-%tag_id% t%tag_scale% » title= »%tag_count% topics » %tag_rel% style= »%tag_size% %tag_color% »
Sara > Related Tags soon. (for version 1.3)
Konstantin > Mu version for 1.4
Michael > Remove my HTML comment copyright ? Why !
Hadar Pedhazur > I fix Widgets in 1.2.3 or 1.3
Sara > Instead Synonym, use merge function ;)
vangardx > use the manual function ;)
CrcOO > Alloue plus de memoire pour PHP. (16 ou 32)
Jacky > Increase you memory limit to 16 or 32M
Miki > Again the same JS conflict ? I will check…
Miki > « eventcalendar3″ + « simple tags » works for me…
why cloud tags sorted differently on different pages?
Max > You use random sort ?
I am use sort by name
title=false&smallest=8&largest=18&orderby=name&order=DESC&format=flat&maxcolor=#0c72a2&mincolor=#9bcae0
I realized his mistake!!! Very cool plugin! Respect Amaury !
Max > You check the new param ;)
http://www.herewithme.fr/wordpress-plugins/simple-tags#advanced-usage
Thanks for this great plugin Amaury,
I was using STP old version and upgraded last night.
I’m trying to show the tag name on (browser window but unable to do that.
My old STP code is like that and works great:
?php bloginfo('name'); if (STP_IsTagView()|| is_single()){echo ' » '.strip_tags(STP_GetPostTags());wp_title();} elseif (is_category()) { echo wp_title();} ?Could anyone help me…
Thanks
I do not really understand, in my tags option I have set these:
Order tags selection:count-desc and Order tags display:name-asc
in my widgets panel, the settings for the tag cloud are:
tags selection: most popular and order tags display: alphabetical
so I do not see my mistake. please advise
efrasiyab > WordPress add tag(s) into wp_title() in tags view
ovidiu > And your problem ? :D
sorry I did not want to repeat all I said in my last post, basically, my tagcloud looks different on each page :-(
With the latest version 1.2.3 ?
I had 1.2.2, just upgraded to 1.2.3 and its working now :-) thx a lot, I had not noticed the new version was fixing my errors.
Your message « Visit the plugin’s homepage for further details. If you find a bug, or have a fantastic idea for this plugin, ask me ! » sounds so helpful, and yet « works for me… » sounds so dismissive.
Will has explained the pattern that the behaviour follows. I’ve overcome it by naming all my tags with capital letters. It seems like very strange behaviour though.
Kristarella > « Criticism is easy but the art is difficult. »
Renaming a term used only as tags : Works sure
Renaming a term used as tags and as category : Not works. I will fix this bug for next release.
Now, if you want more support (and faster), you can contact me since my professional website… http://wp-box.fr/
I didn’t mean to sound critical, that’s why I was thankful in my original comment and bothered to read the earlier comments before posting mine. I was asking about something previously asked about, so was obviously hoping for a different response. I was also letting you know that it was still an issue.
The art is very difficult. My attempts at plugins have failed dismally. I really appreciate your great work on this one, thankyou again.
Amaury,
Please help me to solve these problems:-
1. When there is no related posts, it still displays the Title and a bullet. How to make it to display nothing when there is no related post?
2. When I rename a tag and change its capitalization, it remains the same. But does it change its slug? What is the significance with regard to the tag’s role in answering search queries?
Thanks.
S.K
1. Use related functions with these parameters:
st_related_posts(‘title=&nopoststext=’);
And nothing will be output.
But i think that i will add an option (in next release) to output nothing if related posts haven’t results.
By this way, you should have a title, if you have related posts…
2. Renaming work with case sensitive, if the specified term is not a tag and a category at the same time. I will check this feature for next version. (publish surely this evening…)
Slug changed according the new tag name. (you can re-edited it with the slug edit feature)
Relevance = Tags number in common between two posts.
Example:
Post A have 3 tags: Tag1, Tag2, Tag3
Post B have 2 tags: Tag4, Tag2
Post C have 4 tags: Tag5, Tag4, Tag2, Tag3
Related posts for the « Post A » order by relevance
Post C
Post B
Post C is most relevance as Post B, because it share 2 tags with the post A.
Amaury , in my last question : http://www.herewithme.fr/wordpress-plugins/simple-tags#comment-31426
You had mentioned that you were going to include a code example of how to use st_get_related_posts within the loop. Does that still need to be done? Or am I missing it someplace?
Thanks for the great plug-in!
I just upgraded to 1.2.3. I have exactly the same problem that I had with 1.2.2 (but not 1.1.1). Whatever I type in the options are ignored.
I narrowed it down to one file, inc/simple-tags.widgets.php
In that file, I hard-code $order, $max and $title, immediately after they are supposed to have retrieved their correct values. After that’s done, the tag cloud displays exactly as I want, which is count-desc, 100 max, with a title of « Tag Cloud ».
If I don’t hard code, I get random sorting of 45 tags, with a blank title.
No complaints, as I don’t intend to change often, but I wanted to make sure that I share my feedback that even 1.2.3 didn’t solve my problem!
Andy > st_get_related_posts have the same parameters as st_related_posts, only difference is st_get_related_posts return output, and st_related_posts echo output…
Hadar Pedhazur > You know Widgets options ?
http://www.herewithme.fr/tmp/WidgetsOptions.png
Amaury, wow, I’m an idiot. I never realized that there were separate options for the widgets, because I (foolishly) assumed that the preferred way to display the « main options » was through the widget.
Of course, the options work perfectly, now that I know where to set them! ;-)
As before, awesome plugin, thanks again!
I don’t know why, but I find that the related posts function does not work for me even with the latest version, 1.2.3 of the plugin.
For example, on Post A, below, post C was chosen as related while Post B was ignored. Obviously this is wrong if related is chosen based on tags in common. Post A and C have one tag in common. Post A and B have 6 tags in common. Post B should be chosen as related to A, post C should not.
POST A: Tags: eating, free range, healthy eating, meat, organic, thanksgiving, organic turkey, turkey
POST B: Tags: cost, free range, healthy eating, meat, thanksgiving, organic turkey, turkey, free range turkey, price
POST C: Tags: diet, food safety, health, healthy eating, organic produce, pesticides
Basically what is happening is that a post that has only 1 or 2 tags in common with the original will be chosen as « related » over a post that has 5 or 6 tags in common.
I also find that the new version is the same as the old in that I cannot turn off the display of tags in posts. Even if I set the option under « Tags for current post » to « no » they still display. Only if I deactivate the plugin can I prevent display of tags on the posts.
I addes support for your great plugin to my theme dkret3. How can I remove the filters for ‘inlinePostTags’ and ‘inlineRelatedPosts’.
It is not needed for a user to add related posts and tags automatically because I do it already for them. If I could unregister them, I could prevent support questions (had already a support question regarding this).
Kretzschmar > I will fix this bug or next version, explication here: (in French but comprehensible)
http://www.herewithme.fr/wordpress-plugins/simple-tags/francais#comment-31615
Hi Amaury,
thanks a lot for your tip. The memory increasing helped, and your great plugin is finally up and working again *jump* (together witht the whole rest of the blog!)
I’m just wandering which other effects that will have, but anyways: Thanks for your help, advice and patience!!
Greetz
Jacky ;)
The related posts feature in 1.2.3 seems to be listing a link to the article itself in the list of related posts. Is there way to get it to only lists *other* articles? It doesn’t really make sense to have a link to the article someone is already reading.
Other than that, love the plugin! thanks!
Hi,
I really love your plugin but I have a problem with my write post dashboard (side box). I cannot click my smilies in my side box. But when I deactivate your plugin I can click it.
Please tell me what goes wrong..
Hi,man,your Simple Tags is great for WP2.3 but I meet an issue when I upgrade from Simple Tagging. For sample, the tag « nice day » looks like « nice_day » in Simple Tagging’s permalink. But now it is « nice-day » in Simple Tags. Is there any way to fix that Thanks ~
Lao Fei from China
I’d like an option to include the list of related posts on all posts no matter what view, but not on any pages.
Thanks again for the great plugin.
I’m having some trouble. I used simple tagging, then upgraded to WP 2.3.1. I used the WP importer. Now I want to use simple tags to manage them.
They have imported, the tag cloud shows up fine. But the problem is that st_the_tags() returns that there are no tags for a post! Even when st_tag_cloud() posts a tag cloud. Even when I click on a tag — it takes me to posts wiht that tag, but in the post st_the_tags() just displays « no tag for this post. »
Never mind. Sven’s solution above worked for me. Thats some old theme i’m running!
Hi Amaury,
Thanks for your Simple Tags plugin – it is excellent.
I will using this plugin on my blog – and still doing some test on my localhost.
One question,
Is that possible not to show the text « Related post » and « No related posts. » when the post has no related post?
So, the post will simply show only the content.
Thanks.
Deny,
Amaury had answered this question before like this:
But since I wanted to have the title only when there is a related post, I made a temporary work around till Amaury fixes it. This is what I did:-
Around line No. 706 of simple-tags.php, you’ll find this:
function outputRelatedPosts( $format = 'list', $title = '', $content = '' ) {
if ( empty($title) && empty($content) ) {
return ''; // return nothing
}
I surmised that both the conditions are to be fulfilled to output nothing. So I just split the « if » conditions like this:-
function outputRelatedPosts( $format = 'list', $title = '', $content = '' ) {
if ( empty($title) ) {
return ''; // return nothing
}
if ( empty($content) ) {
return ''; // return nothing
}
I have done it with no php knowledge, purely with a layman’s logic, but it works!!
Amaury can do it more elegantly!
Cheers!
S.K
>Amaury 22/11/07 – 22:29
>
>Miki > “eventcalendar3″ + “simple tags” works for me…
Amaury, thanks for your reply but the plugins don’t work at same time … or Simple Tags 1.2.4 or Event Calendar 3.1.1 RC3.
When I try to activate the second, always get Fatal Error :(
Two recommendations for the tag cloud features:
1. Add a check-box to the configuration screen to decide whether or not the plug-in should automatically add the « size » style. I see there is a $size flag in the code, but there is no way to configure it. Some of us may prefer to use the wonderful classes (t1 to t10) that you add in. Also, add a configuration setting to decide how many classes to assign (1 to 10, 1 to 5, 1 to 40, etc.).
2. If the user picks the « em » font-size unit, do not round off to the nearest whole number. There is a piece of code that starts:
$element_loop = str_replace(‘%tag_size%’, ‘font-size:’.round(($scaleR…..
This makes sense for the other measures, but it is normal to have em measures like 0.82em. This function is rounding them all to either 1 or 2. Probably want to make it conditional, just for ems, but allow up to two decimal places for em measurements. May want to allow one decimal place for point sizes also.
I would also like to second the request to have the option to show when there is « No related posts. »
Ok, found the problem: it’s the italian language file!!!
With default english language the plugins work fine,
but if I set language to italian I get Fatal Error :(
Now I will check difference italian/english files
Thanks for support :)
Miki
Hi,Alex
Could you help me fix this?
For sample, the tag “nice day” looks like “nice_day” in Simple Tagging’s permalink. But now it is “nice-day” in Simple Tags. Is there any way to fix that Thanks ~
Lao Fei from China
Hello. How about to add this feature:
If we have not related post -> output random post. I down like text « We dont have realted post » :-)
thanks!
Hello,
Working great.
One guestion, have a look at my site http://badblog.nl (18+)
Under the posts are the tags en the related posts.
How can I place a between the related posts?
Robert
First off – This plug in is a dream come true, wonderful job, Thank you.
Second, as a suggestion I wonder if there is something that could be done about the « Suggest Tags » menu that pops up during tag entry. It’s grown very frustrating when it pops up above the post entry box and refuses to go away until I save the post of something similar. It seems to remain up even if I’m not entering a tag which makes it difficult to continue editing the post. Perhaps this would has already been addressed but I felt I would bring it to your attention coupled with much thanks and praise for the plug in.
Can this plugin use the Yahoo! term extraction API to find tags to suggest?
If it can, can it be set to automatically enter those suggested tags in the 2.3.1 tags db field?
So if a post is remotely autoposted, can it find suggested tags, and enter them in the tags field automatically while the post is autoposted?
For example, if an article from an RSS feed is automatically entered into blog with autoposting software, can it pull the suggested tags from yahoo and enter them in the tags db field for that post?
When I enable this plugin, my post content disappears from my Index page.
I tracked it down to this plugin by going back to the default them, and deactivating all my plugins. I activated my plugins one by one, doing a refresh (Ctrl + F5) on the index page every time. As soon as I enabled this plugin, the content from the posts disappear from the index, leaving only the post titles.
I am using WordPress 2.3.1, and simple-tags 1.2.4.
Any help is appreciated.
Regard,
Manny
I am still using this plugin, but still can not find a way to get the display of tags turned off unless I deactivate the plugin. If anyone, not just Amaury, can tell me what I need to change to have tags not displayed on the post, I would appreciate it. Thanks!
Thank you! Someone sent the answer in a contact message. I just commented out the ?php the_tags(‘Tags: ‘, ‘, ‘, »); ? in both index and single files and now the tags do not show. They still show in the meta data though, which is good.
Is there a way to auto tag the category, just like the auto tag post title? This plugin would rule!
by changing the references from /plugons to /mu-plugins i got this working fine on WPMU 1.3 !
I wonder if there´s a way to bring back a feature available on STP: to add categories to the tag cloud.
Good job on this plugin, but i have some little trouble when i want to display tag for my current post, it doesnt show up on my post. The tags show message « No tags for this post » although the current post have a some tags, and its show up on edit post . Why?Any way well done
I am also interested in importing categories into tags, but the importer under manage => import you suggested, does delete the categories after tagging the posts with them.
I would just like that all posts, get their category added to their tags, any idea how I could achieve that?
Jamin > I check, related posts always exclude the current post…
Lisa > You use what smiley plugin ?
Lao Fei > Import is manage by WordPress, not Simple Tags…
Judy > You can use manual functions with a template page !
S.K > I fix it in 1.3. If « nopoststext » is empty, related posts will output nothing
Alex Brown >
1. You can edit you xformat and remove style marker
2. Fix in 1.3
lutfi allail > Your theme must use the function the_post()
Thanks, Amaury!
And thanks to Deny Sri Supriyono for your kind words. Though his comment reached my inbox, I can’t find it here!!
Regards,
S.K
Hi, I love your plugin!
But I seem to be having a problem with it. I’m using WordPress 2.3.1.
If I disable all my plugins and activate Simple Tag v1.2.4 it works great. However, if I have mydashboard v0.3.1a activated and then I activate Simple Tag I get a Fatal Error at the top of the plugin Page. « Plugin could not be activated because it triggered a fatal error. »
If you need any more info let me know
C’est possible que ton plugin fait des entrées dans la table wp_term de la base de données de WP? En fait, je viens de structuré un peu mes tags et j’en utilise plus tous ce que j’avais mis au début. Mais comme je les ai jamais supprimés, il me semble que je puisse pas changer le nom d’une catégorie parce qu’un nom d’un tag existe encore dans cette table?
Just thought I write down some french on our blog ;-)
I’m not clear on a couple of the options. I want the tags and related posts to display everywhere, but NOT static pages. Does one of those options cover that? If it doesn’t, that means I will need to edit all my templates manually. I would much prefer not to. :)
Thank you. And fantastic plugin!
Thanks a million! I wish someone also make mass editor for posts.. or does it exists already?..
Anyway superb plugin!
Webtrix,
Is this what you are looking for?
Hi,
Grate and simply plugin for wordpress.
But I have one question: how can I display tag cloud in Page?
I use this
st_tag_cloud()php tag, but when I viewing the page – displays nothing.Any idea?
Regarding the problem reported here on 29/11/07 – 22:34, I am still unable to activate this plugin without losing all the post content on my index page.
If Amaury or anyone has any suggestions, we would really appreciate them, as we are very interested in adding Simple Tag functionality to our blog.
Thanks and regards,
Manny
Cool plugin, but… ;-)
I have a question about the Tag Cloud. It don’t make “word wrap”! Say the tag is “Be Cool Take It Easy” and this Tag is wider than the column. Then I would like the Tag to “word wrap”.
“Be Cool
Take It Easy”
And how does this works?
• format
(string) Tag’s format of posting
o flat – (Default) Tags are separated by spaces
o list – tags are inside a non ordered list (UL) containing class=’st-tag-cloud’
o array – tags are inside a PHP array (use it with st_get_tag_cloud())
Amaury, any update on using Simple Tags with Live Writer?
Thank you as always for a great plugin. :)
Hello,
my problem is:
How to include st_tags out of the loop?
For Example, i would like to include tags into the sidebar !
Thx
tboggi
A suggestion:
The ability for a list of related pages (and not related posts), either through a parameter passed to st_related_posts, or through a new function such as st_related_pages.
do you plan to add the option to show cats in the tag cloud? it was a useful feature on STP plugin. It´s helpful for old installs that have lots of posts in categories, while the new content is added with tags.
I have the same question that tboggi asked above…
I have a sugestion that it has to do with the Post ID, could anyone post an exemple of how would the full string look like?
(to see how it looks right now, the link is eoqha.net/podcast)
I’m in kind of despair here for a solution, I read all the comments here, on wordpress, and on the web. On how to get the tags of the post that is showing on the sidebar.
Currently I’m with this code on:
<?php st_the_tags(‘ • ‘, »); ?>
That shows me that there are no tags on the post, however the tags are being linked within the content!
The only half-solution I found out is using this wierd code
But this only shows the tags when I’m in the permalink page, it stays empty on the front page…
Any help please?
So I got it to work with this code:
<?php the_tags(‘ • ‘, »,’ • ‘); ?>
A modification from the code that I found on this site:
http://www.chromasynthetic.com/blog/archive/110
Any easier way to do this? (just spent a whole day trying to get this to work)
Just saw that the code that I posted didn’t show up, but you can see it at the link at above
ohoo! I’m in kind of despair here for a solution, I read all the comments here, on wordpress, and on the web. On how to get the tags of the post that is showing on the sidebar.
thanks
I’m using hemingwayEx theme and I’ve a bug with the tags links:
Fatal error: Call to undefined function: utw_showweightedtagsetalphabetical() in (**)wp-content/themes/hemingwayEx/tag.php on line 11
@Gyam : remove ALL utw_ functions > it calls Ultimate Tag (and very old) Warrior plugin …
This is a fantastic plugin. It seemed to be working beautifully but suddenly I started getting this error on every post:
I’m not comfortable enough with php to try to fix this without more details. Also, I have no idea how the error got in there in the first place. At any rate, can you suggest to me how I might fix this? I will be going to your PayPal link as soon as I can get the plugin stable and working steadily.
Great continuation of a great plugin, but it’s still missing some things I loved. Can we get soem support for people who use a combination of categories and tags? For instance, categories in the tag cloud, and in the related posts function.
This is great plugin! I love the autocompletion, and would like to integrate this functionality with TDO mini forms, another plugin I use on the site that allows people to submit their own posts. It supports tagging but I would like to be able to suggest ones that already exist…
Is there a code or function that calls the autocomplete feature? I haven’t found it yet.
Thanks for a great plugin.
Is there a way to always show all available tags under the postform in the adminpanel? Pretty much like the way the « suggested tags »-funcion works, but for all tags in the database.
By the way, nice Plugin!
WordPress database error: [Table 'wordpress.wp_post2cat' doesn't exist]
SELECT p2c.category_id AS cat_id, COUNT(p2c.rel_id) AS numposts, UNIX_TIMESTAMP(max(posts.post_date_gmt)) + ’8′ AS last_post_date, UNIX_TIMESTAMP(max(posts.post_date_gmt)) AS last_post_date_gmt FROM wp_post2cat p2c INNER JOIN wp_posts posts ON p2c.post_id=posts.id WHERE 1 = 1 AND posts.post_type = ‘post’ AND posts.post_status = ‘publish’ AND posts.post_date_gmt <= ’2007-12-20 03:15:18′ GROUP BY p2c.category_id ORDER BY numposts DESC
———–
Help!
How can I get the suggested tags in the admin write window to list alphabetically?
Having to hunt for tags is very slow. (I have over 100 tags to choose from, so the small up/down box is not really suitable.)
Hi, i want suggest a new feature that maybe you can add on your next release :D
- on the manage tags, please add limit tags to display (or maybe you can add page), because it give a lot of time to load when we have a lot of tags, and sometimes it make error (« Fatal error: Maximum execution time of 2 seconds exceeded in /home/guides/public_html/womenslingerie/wp-includes/formatting.php on line 21″)
- on the mass edit tags, can you add new filter combo box by category?, its really usefull when we have a lot of category
- autotags, its really usefull feature, and maybe you can add timer ( schedulled autotags )
Thanks :D
Just want to report something that I think is a BUG (version 1.2.4) and which had me and some other users quite puzzled. I use st_tag_cloud() to output a tag cloud in my sidebar. After a while I noticed that none of the options in the backend seemed to have any effect, despite the values were saved correctly in the database.
I just took the time to look into the plugin code and the reason is this: In the function extendedTagCloud() you have the array defaults which is filled with the default values. Then you check if the given argument array is empty, and if it is you fill in the saved options into the default array. Now, if I use an argument like ‘color=false’ on the st_the_tags function, I would still expect the saved options to take effect for all other options. Instead, the default values get used.
Of course, you can probably specify everything in the backend or just specify everything on the function. But I think it’s a perfectly valid use-case to do both. It can happen, if you play around with a new plugin, and can cause quite some confusion why the options don’t show up on the page. ;-)
So I guess it would be great if this could be reworked to be something like « function arguments overwrite saved options which overwrite default values ».
Anyway, merci beaucoup for the plugin in the first place and joyeux noël! :-)
If anyone really wants to dumb down how I can my tags to appear in a true cloud and not just a list, I will be forever grateful.
hi,
i am not an wp experts , and i am looking for someone that can help me to setup the simple tags in my wp with a fee.
best regards
uriel
Hi,
Thank you for this great plugin. My WordPress 2.3 upgrade left me initially confused. But with your plugin I solved some of my issues.
After screening this page I found several people confused about how to display tags outside the loop. The code that worked for me was:
ID.’&before=’); ?>
I hope this helps.
I meant: st_the_tags(‘post_id=’.$post->ID.’&before=’);
Hi, after upgrading to version 1.2.4 I get this error:
Fatal error: Cannot instantiate non-existent class: simpletagsadmin in …….wp-content/plugins/simple-tags/simple-tags.php on line 1477
I get this error when I want to login my admin, so I cant login anymore. thanks
Salut, apres avoir mis a jour a la version 1.2.4, j’ai ce message d’erreur:
Fatal error: Cannot instantiate non-existent class: simpletagsadmin in …….wp-content/plugins/simple-tags/simple-tags.php on line 1477
J’ai ce message quand je veux rentrer dans mon admin, maintenant je ne peus plus rentrer dans mon admin. merci
Tres Bon! Merci!
I only want the tags to be visible on a single page or single post, not on the home page. I can’t seem to get them off there; they appear right after « read more. »
I tried to eliminate the php tag ref in the Main Index but broke it….got it back of course but the tags are still there. Back end options don’t seem to matter. Thanks.
Love this plugin. With the auto tags i have grown to love tags. Just one thing i have activated « Auto link tags in post content » but the words in the post aren’t hyper linked? I dont get and errors.
Kind Regards
Tim Lester
http://www.nuganics.com.au
Not 100% sure but I think WP 2.3.2 took out the « Tags » option pane. Auto-suggestion is also gone. However, my tag clouds still show. Can anyone else confirm this?
Hi Bruce, still working here on 2.3.2 but i can’t still can’t get “Auto link tags in post content” to work. Tag is not under options, just under the general admin at end called Tags.
Cheers
Tim
Do you still see the « Tags » tab Tim? Mine’s gone, along with the tag suggestions (which were there and working for me under 2.3.1). As I say the tag clouds persist even though I can not access the management functions.
The « Tag » of the option panel is gone.
Trust Amaury will soon have a look at the list of changes made in WP 2.3.2 at this URL and provide a fix.
Regards,
S.K
G’day guys,
Hmmm, I just upgraded to 2.3.2 and I don’t seem to missing anything. Auto-suggest works fine in both the editor and Mass Edit Tags » The tab and all menu items are there as well. I don’t use Auto Link Tags personally so I can’t let you know about that. Anything I need to look for specifically let me know and I’ll check.
Using the K2 theme.
thanks
thank you
I solved the problem of the tags showing on the excerpt, main page:
?php if (is_single()) if ( function_exists(‘the_tags’) ) : ?>
</div
Don’t use that! It’s on my website, WordPress Post.
that should work–site link had an error localcenters.com
I can’t rename my tag. Help me?
Sure you can. Administration—>Manage Posts—–Simple Tags->Mass Edit. Select the tag, delete, rename, REFRESH browser. That should do it; I did it today several times.
Validation bug:
When related posts are inserted with the st-related-posts function there is no escaping of special characters in the post title e.g. the title ‘ Wise words on « risk » ‘ will cause XHTML validation errors.
Hi! Thanks so much for this plugin! Just a quick question…
I want something like this: (sorry that it is LJ site)
journal: http://scarreddragon.livejournal.com/
list of tags used: http://scarreddragon.livejournal.com/tag/
Is there a way to do this on WordPress with the tags? Similar to the « About » page I guess… http://www.ongakusai.net/mm_new/
Waaaayyy up there, you answered « traveler »‘s question about displaying a page to list ALL tags:
traveler > With a plugin that allow PHP in post content yes ! »
Is this the same thing, and do you know of a plugin? So far, I can’t find anyway to display ALL tags used; just tag cloud.
Thanks!
Thanks for a great plugin! I’m using it on 3 of my blogs without any problems at all.
I actually made a little video, for my blog readers, on how to install it and do some basic configuration.
You can find it here if any of your readers are interested.
http://1cat.biz/simpletags
It’s kind of for newbies but, it may be helpful to some.
Thanks again, Barry O.
Great Plugin!
I’ve been using it on my websites for some time now. However I recently upgraded to WP 2.3.2 and The plugin disappeared from my menus. It still shows as activated, but no link.
Any ideas on how to fix this? or is an update in the works?
Thanks
Anthony
I’m using it on several blogs with WordPress 2.3.2 installed and it all works great.
This is an incredibly helpful plugin, thank you!! However, I’m getting the following error message in place of the post content for each post on a tag page when the tag has more than one (1) post associated with it –
Warning: preg_replace() [function.preg-replace]: Unknown modifier ‘H’ in /home/xxxxxx/public_html/pwsdots.org/wp/wp-content/plugins/simple-tags/simple-tags.php on line 222
For example, see this page –
http://www.healthytaoherbs.com/pwsdots.org/wp/tag/prader-willi-syndrome/
But see this page – which only has one post associated with the tag, MELAS – which displays okay –
http://www.healthytaoherbs.com/pwsdots.org/wp/tag/melas/
Any help in clearing this up would be most appreciated.
Thanks,
Oneida
Very nice and helpful. Thank you for sharing this feature!
It’s still not support with languages which is using UTF-8 charset (Khmer languages.) It’s show only ???? sign. I still want to use your tag program. So I have to add category and import it to tag. Now, my article is very flexible that I have no unique category. thanks you a lot if you can help me to make it support with Khmer language.
Thanks,
Boeun
When i upload and activate your plugin it breaks my site. Not sure why this is happening. It worked a few days ago when i first installed the plugin now it completely messes up my site and forces everything down and to the left. When I deactivate the plugin my site goes back to normal. What can I do to get this plugin to work in my site. I can’t use UTW anymore because its not compatible with WP2.3 and thats what I had been using.
Also when simple tags was working, embedded tags were not working, when i would use the brackets [tag]tag word[/tag] in my posts, the brackets would show up in my post when I would save it and view it.
Any help would be appreciated.
Thank You
Thanks for this great plugin!
Just want to say thanks for this awesome plugin, it beats the hell out the tags in standard wordpress, I wonder why they don’t implant this into wordpress from the go :)
Hi,
I import my “Simple Tagging” Tags, and I can see them in the WP-Management. "Related Posts" works fine too, but have no "Current tags posts" by using of …
<?php st_the_tags(); ?>
The option "Automatically display tags" also don´t work.
Any idea?
Robert
I love this plugin. Thanks a lot for all your work.
I’d love to be able to loop over the results of "st_get_related_posts()" but I’m not having any luck. Would someone be able to help me use "st_get_related_posts() " as a replacement for query_posts and get_posts in the code below?
<?php query_posts("cat=$1&showposts=6");
$posts = get_posts("category=$firstcat&numberposts=6&offset=0");
foreach ($posts as $post) : start_wp(); ?>
// output a summary of the post of interest here…
<?php endforeach; ?>
SIMPLY INCREDIBLE! What a fantastic plugin. It is so professional and capable. Many nice touches that makes the usage simple. Also, there are so many options. I can make it fit the way I want to use it.
Thanks
It works now, I used the old loop.
Robert
This is a great plugin indeed, but tags starting with accented characters cannot be sorted alphabetically – as you can see here: http://haldesign.hu/ghaleria/cimkek/
Thanks in advance, if you take care about this problem.
How do I get a real cloud insted of a list??
Thanks for the plugin.
The plugin works for all new post. But for those old post, it won’t show the tag in manage tag.
I need to go to the old post and save them one by one in order to display the tag in manage tag. Do you know why?
Max > Try to delete your cache ?
Rob > You must use the_post() instead start_wp()
This is a fantastic plugin, thank you!
I have just started with wordpress 2.3 and it is really exciting to see the simple tags implementation. lots of work really but i am up to the challenge. much thanks for this robust site.
hal > Alphabetic order is fixed in 1.3
preg_replace() error is fixed in 1.3
The “Tag” of the option panel is gone. > You must do a correct upgrade of wordpress. WP Admin files is always on old version… version 1.3 will fix this problem with a small cheat…
ST 1.3 will be published soon !
Fix lot’s of bug, new admin interface, ajax, more light, simply best !
What are the conventions for Technorati tags? How it this function implemented?
Thanks
I’m not clear on that Amaury: I have the missing « Tag » problem in WP Admin but I followed the upgrade instructions carefully so far as I know. How do you do it incorrectly?
I wonder if the issue you have identified here is related to a discussion on the K2 Forum concerning K2 Options going AWOL? Sounds a bit too familiar.
thanks for plugin,
but I have some problems,
I can see and manage all tags from my admin panel, there is no problem but when I use this code in my template(single.php)
I can’t see any tags, only « No tag for this post. ». How can i solve it?
Other problem is my mistake but I don’t know how to solve. From auto tags I click « Auto Tags All content » but I decided I wont use this option, how can I reverse?
Is there a way to make the tags nofollow ?
Version 1.3 release !
Changelog
http://wordpress.org/extend/plugins/simple-tags/other_notes/
Download
http://wordpress.org/extend/plugins/simple-tags/
Bruce > Fix in 1.3
Michael Byrne > See documentation, i prepare a demo website with may examples
Ahmet > Into the WP loop ? with the_post function instead start_wp ?
Martin > I will add this functin into ST 1.3.1
Tested and approved ! :)
Yay! « Tags » is back in wp-admin with 1.3. Jolly good show Amaury.
Oh no: new bug (caused by old options?)
I noticed in Tag : Options under both these options:
- Min usage for auto link tags
- Always add these keywords:
The text box oddly contained « a ». When I looked at a post, all the a’s were stripped out:
« If you hd viewed the source of my WordPress-generted pges … » including the a in href!
Deleting the a’s from the textbox and updating those options alone did not restore the a’s, but thankfully resetting _all_ options (or disabling the plugin) did.
Thank you very much!
Hi Amaury,
My feeds display related posts automatically, but the title before the list is not like I want.
In « Enter the positioned title before the list, leave blank for no title », I put:
[hr/][h3]Related posts[h3/]
But the feeds doesn’t display the [hr/] and the [h3] tags. Obviously, I have used these angle parenthesis:
How can I fix this?
Thanks,
Giovanni
Italy
Can anyone please give me a working code example of how to use st_get_related_posts() in a loop?
Thanks
Maybe I am not understanding the purpose of st_get_related_posts. I thought it would just return the related post ID’s so I could loop over them.
Hi! I found a translation bug on the option menu and fix it。
like this http://www.voidpage.com/temp/simple-tags.admin.zip
Hi!
is there a way to include categories into the tag cloud without importing them? I’d like to keep the categories but also include them in the tag clouds. This was possible in the old plugin
thanks!
Hmm, has anybody managed to display the tags as links to technorati using the %tag_technorati% xformat string?
Emilio
http://img137.imageshack.us/img137/5697/clipboard01tl9.gif
And
Where Remove after
Where remove tag BR/ after tags in st_the_tags
It looks like « Auto link » inserts the tag link in some cases where it shouldn’t. I’m trying to figure out when. I guess you need to exclude script & object html tag from the replacement (you can try with a youtube video and add « object » or « param » to tags).
Thank you for differents feedbacks !
I will publish a update Sunday with fixes for each bugs. (Not before Sunday, because i give a training course about WPmu ;))
I have placed the function st_related_tags in the loop in the file single.php but there is no output of the related tags.
Hi.
i’m on WP 2.3.2 with ST 1.3 and all of a sudden get a 404 when http://…/wp-admin/simple-tags/inc/simple-tags.admin.php?page=simpletags_options
It did work.
Any ideas?
Thanks Thomas
Great plugin, one issue – I have some posts coming in automatically vi the wp-o-matic plugin, once they come in, it posts them, but the ‘auto tag’ feature of your plugin isn’t catching them. If I post an article myself, the auto tag will tag them.
If this seems like something difficult to fix since it may be the fault of the wp-o-matic plugin, can you provide a path I could use to kick off the auto tagging manually? In other words, I can hit my URL:
http://MYDOMAIN.COM//wp-admin/admin.php?page=simpletags_auto&action=auto_tag&n=760
And it will kick off the auto tagging of everything, but I have to click this manually – is there a way I can have cron call that URL and have it kick off? It seems to want me logged in, I’m unsure if wget or curl could call that URL and pass my admin’s name and password along.
Ideas?
Thanks for the plugin.
Was able to duplicate the problem reported in the forurms where the Tags->Options->General « Allow tag cloud in post/page content: » is checked but putting the
in either the Post or the Page content did not display the tag cloud.See:
http://wordpress.org/support/topic/152602
great plugin!
is it possible to change the font size of the « related posts output »?
Hello! First of all – thanks for that wonderfull plugin! I am a wordpress beginner – and because of that my question maybe is a little bit stupid. Above on the site I found two times that people have the problem not to see a cloud – only a list. That, in spite of choosing the correct options. To try out whether there are dependencies between simple tags and others, I disabled all other plugins (exept Exec-PHP). The problem was not solved – than I have chosen a different theme (standard instead of the Darkwater theme made by Antbag) – again the same problem – only a list! Has anyone an idea? Could it be a problem on server-side? Many thanks – Gabriel
Is there a way to shut off the autosuggest thing that pops up when I type in tags? I find it annoying. Otherwise love this plugin. Thanks!
I have a customized home page index.php I use for http://www.nerdgrind.com/. Currently Simple Tags uses the theme index.php to display results when a tag link is clicked. I’d like to be able to use a custom tag.php file to display tag pages in a format of my choosing, like display the entire post, just an excerpt, etc.
Could a field be added under tags –> options –> general to allow for an alternate php page to be used rather than just the index.php?
I’ve installed your plug in twice, on two different sites. One one, the « suggested tag, local » function works perfectly. Likewise, when I click on « view click tags » I see a bunch of tag objects.
On another, neither one of those will show me any tags whatsoever, even though there are plenty of tags in my DB. Even new tags, and new articles (written after the install of Simple Tags) will not show up when I click on either « local tags » or « view click tags » from the Write A Post page.
What should I do, other than reinstalling everything?
It is possible that the Post Levels plug in is the problem. It’s the one big difference between my two installs, and thus, it is the most likely culprit. I’m going to try reinstalling everything except PL.
I want to make each tag in different color is it possible. And one more thing shoul I exclude the tags from search bots. I mean there is an option in All in one seo pack and it says I should. Because of avoiding content repeatation. İs it correct.?
Just wanted to say that I downloaded your SimpleTags plug-in, installed it and was working with it within minutes! I ran into some problems – but most were due to my negligence.
This has got to be one of the easiest plug-ins I have EVER used! Well done!
I do have one question – how can I place a « break » before the word « Tag: » – I’ve gone through the code and tried in several places but it did not work. Right now, the tags line up with another plug-in for bookmarks and I didn’t like that.
Regards,
Mohamed
Thank you, it´s great!
Great to hear it will work with wpmu shortly. Trying to find a good solution for a long time there.
Hey, Amaury! Thanks again for the great plugin. There is one issue with 1.3 and WPMU. I see you’re planning on making fixes, so forgive me if this is stuff you already know.
WPMU expects all plugins loaded from the mu-plugins folder to be in the root of that folder, not in a subfolder. It’s OK to have additional files in a subfolder, but just not that main plugin file that gets loaded at run time.
Hence, while ST does work with MU, it only works when plugged into the /plugins directory.
Hey Amaury, great plugin, I like it a lot.
I’ve got around 9600 tags, and I’m starting to notice that a few of the newer tags I’m making do not appear in the AJAX list of tags when you start typing in the tag field.
I’m wondering if this is an intentional limitation to only show a certain amount of tags when you start typing, or if it is a bug.
Awesome plugin this is!!
One question I have though is concerning the « Auto Tag All Content » option. You see I have a site that brings in new posts by the dozens on a daily basis automatically (via FeedWordPress plugin) and wondered how I can either do one of these two things:
1) Have tags automatically generate to the posts that’s automatically generated.
2) Have a cron job do the job (I’m not too much of a stranger to running a cron, but the baffling part for me is the fact that thesite.com/wp-admin/admin.php?page=simpletags_auto&action=auto_tag
link to run the auto tagging script has to get admin password authentication and not sure on how to pull that off.
Though #1 would be more ideal and would be worth me coding it if I knew how lol, but #2 would be a good runner up option since any automation is a great alternative of manually clicking on that « Auto Tag All Content » link. :)
Great Plugin!
I have a problem that if people go to the page:
http://www.samcarrara.com/marketing/tag/
This goes to an error page. Shouldn’t this list all of the tags?
Tag pages like: http://www.samcarrara.com/marketing/tag/finances/
are fine.
Hey heeeeeeeey! Seems that fak3r also has the same problem, seems like a different plugin for automatic posts but same problem nevertheless. Misery do love company! :) (haha sorry, my boredom had to point that out :\ )
I’m having an issue with the plugin forcing an for the title on st_the_tags, and I don’t see anywhere in the options that I can remove this. Here’s what I have in index.php:
Where can I set the title option to not have tags? Thanks.
Okay, so I’ve realized what the issue is. The options under « tags for current post » control how st_the_tags is displayed throughout the site. I had the title there set with tags.
I have « Tags for Current Post » set to single only, so I’m not sure why it’s effecting the index page.
Any ideas?
Thanks
Alright then, I figured it out. In version 1.2 I used
php st_the_tags(‘title=Tags: …
in version 1.3 it’s
php st_the_tags(‘before=Tags: …
The problem was that I had the options set to put the title in h3 tags for the single pages, with the syntax change the h3 tags were showing up on the index page as well.
All is well.
Thanks for this great plugin!
Thanx for the gr8 plugin. I have a question: How to include (append) category in tag list for the current post?
e.g Tags: tag1, tag2, cat1 …
Ditto the question above about splitting tags. I’m working on someone’s site with more than 15,000 posts and 6,000 tags. A lot of their tags have been badly managed, with names like « environmental protection and foreign agencies » (yes, that’s a single tag). There are more than 100 posts with that tag. I was hoping I could use ST to mass-edit these posts, turning every instance of that tag into a pair of tags. But I can’t see a way to do this other than to edit every post individually. Any tips? Thanks.
Hi,
I have got big problem. I’m using auto meta keyword generator of this plug-in but how can I limit of keywords? If andbody know please explain me this feature. And writer(s) of this plu-ig please add limiting fetaure for meta keywords.
Hi – When showing a tag archive page, is there a way to display the number of stories associated with the current tag (or compound tag?)
In other words:
Stories tagged with: U.S. relations (97)
Seems like ST shows counts in lots of its functions, but I can’t figure out how to do this simple one! Thanks.
我有好几篇文章只要打开Simple Tags就不能正常显示出来,但是禁用Simple Tags之后就一点事情没有。请问这个要怎么解决呢?
If I put st_related_tags(); with no args at the top of a tag archive page, it shows 5 related tags. But as I surf around my site, I realize it’s showing the same 5 related tags for ALL tag archive pages. I don’t see a function parameter for controlling *what* the related tags are related to (I assumed it would be the tag of the current tag archive page, but that doesn’t seem to be the case).
Thanks.
New version 1.3.1 !
Fix lot’s of your problems ! (peformance, bug, auto link, etc.)
See changelog on WP.org
http://wordpress.org/extend/plugins/simple-tags/other_notes/
Scot Hacker > Related Tags work on this blog ?!
Today renews after 1.31, I have selected Uninstallation Delete all options conveniently, then the postscript with did not have this question, I estimated that had the relations with I beforehand establishment, embarrassed! My question! Sorry!
We > I’m not understand your problem :)
For information, since ST 1.3.1
I remove the menu Tags !
Simple Tags are now filled under Manager and Options ;)
I’m a big fan of Simple Tags – thanks so much for building and maintaining.
When I search from the « Simple Tags: Mass Edit Tags » page, I’m getting this error – « Cannot load simpletags_mass. »
Any help would be great!
Thanks for the update Amaury !
I can reproduce Aaron’s issue when selecting Simple Tags > Mass Edit > filter by page > « Cannot load simpletags_mass ».
Fix : when validating the form, it goes to :
« admin.php?page=simpletags_mass »
Correct URL is now :
« admin.php?page=st_mass_tags »
Cheers!
thanks, matt. i’m glad i’m not the only one with this issue. so is this something i should try fixing myself in the code?
Aaron : you can edit the URL directly in the address bar if you’re in a hurry.
Otherwise, here’s a more standard fix:
1. Open up « /simple-tags/inc/simple-tags.admin.php »
2. Find « input type= »hidden » name= »page » value= »simpletags_mass » [line 1413]
3. Change it to « input type= »hidden » name= »page » value= »st_mass_tags »
4. Save and upload.
The solution I provide here is provided as-is. I tested it on my blog and it works fine but most people should wait for Amaury’s official fix (or new release ;) ).
Matt > Fixed in 1.3.3 ;)
This is really usefull plugin. i love it.
Hi,
I have just been setting up Simple Tags on a few of my blogs. It’s an excellent plugin, but I am having a problem where it is not tagging old posts which were created by WP-o-Matic. Any suggestions?
Dave
Brilliant – related tags no works outside the loop on tag archive pages! Thanks SO much. Just in the nick of time for a major site launch. You rock.
Hi
I’ve asked this one before. What command do I use on my tag pages, so that they say ‘Entries tagged with ‘tag » e.g on http://www.connectedinternet.co.uk/tag/email/? I can’t get it to work properly.
Thanks
EB
Hey Amury, thanks for the update!! :)
Definitely like the options to cleanup & format the titles in the « Related Posts » section.
However, was wondering if that issue that me & fak3r had concerning this plugin having posts being automatially made would be addressed by any chance… or if it has through this new version, then what to do. Thanks again!! :)
Dave > Your plugin use full HTML entities no ?
Scot Hacker > related tags must be placed, outside the loop, in sidebar for example.
Everton > You use which function ?
MoDawg > i don’t understand your problem ?
Thanks for the quick reply. I use , which worked fine with the simple tagging plugin.
try again: st_the_tags
Hey Amaury :)
Well it’s kind of close to what what someone else had a problem with in wp-o-matic plugin as far as automatic posts not being tagged as they’re being added into wordpress. Except my problem I use FeedWordPress to make the automatic posts and like I said before I would have to go & hit the « Auto Tag All Content » link & tag the new posts.
Thus I figure if there’s anything you can do, if you already did address this issue in past upgrade, schedule a cron (which I don’t know how to run since I’m clueless on making stuff run past the /wp-admin subdirectory which would need password authentication), OR if there’s a function I can hack into FeedWordPress plugin to make the tags automatically as their posted (which I could figure out since I hacked into code to fix another problem, but not sure if it’ll help out those with wp-o-matic for automatic posts).
Once again thanks a ton for hard work you did so far & in advance for answers. :)
We’re trying to figure out how the limit_days function works in st_tag_cloud. If we use:
number=10&limit_days=7
Then we expect that it looks first at the # of days, and then picks the top 10 from that set. This doesn’t seem to be happening. We find that if we put a top 10/7 and a top 100/365 side by side, they seem to have almost the exact same top ten entries (but not quite), when we expect that this week’s most-used tags are quite different from the year’s most-used.
Can you explain how we can get it to work this way? (or should it be already?)
Hi I’m using your plugin and if I activate it my error logs notify me :
WordPress database error Duplicate key name ‘post_related’for query ALTER TABLE `wp_posts` ADD FULLTEXT `post_related` ( `post_name` , `post_content` )
I deactivate your plugin but now everytime I activate or deactive any plugin my error logs notify me with the same error ..
Do you know how to figure this out?
thanks a lot
Monika
hi, when i import all my old tag (6956), in one step say : teps may take a few minutes depending on the size of your database. Please be patient.
Adding Tags to Posts…
i wait a lot of time and noting :s, please help me.
Mauro
Sorry for bothering you, Amaury.
How do I change the language? I’ve uploaded all the po and mo files, and my entire blog is in german, but simple tags is still in english and there is no option to change it inside the admin menu. What did I miss?
Amaury,
I’ve been using you plugin since WP 2.3, and I haven’t had any problems with it.
I have just turned on the « auto link » option, but not every word in the post that is a tag is being linked.
Most of my tags are in lower case, and any word in the post that is in lower case is being linked to properly.
But if that word is in capitals, or mixed case, then it is not being linked to.
This post is a good example of what I’m describing.
I am using version 1.3.4 of Simple Tags, if you want me to I could try the previous version to see if it works.
As a quick question, does « auto link » also work for numbers?
Hi Amaury
Any update on being able to support tag pages like http://www.connectedinternet.co.uk/tag/blogging-tips/ and showing the correct ‘entries tagged with xxx’ like we could with your previous plugin?
EB
how to auto tag auto posts? using feedwordpress to bring about 30 posts a day, none are auto tagged, also using autotag function, for non tagged items doesnt appear to tag them and have to use mass tagging or individual tagging. a cron job with the correct command or a hook to add to feedwordpress would be great. Also, why do the tags not get placed in standard WP tags? if I deactivate simpletags do I lose all my tags?
Hello,
I think my Related Tags doesn’t work. I want to show Related Tags / Tags for Related Posts as a cloud in Single.php – post page. I did place , but nothing shows up.
Thanks
Simplified Chinese translation updated to v1.3.4
简体中文包更新到1.3.4版。
have fun with it :)
Hi Amaury. I found a big performance issue using some code in my main-index.php, but not in the single-page.php. In the main-index.php I inserted the code:
<?php st_related_posts(‘number=2&orderby=post_date&format=list&xformat=%title%‘); ?>
The total number of articles displayed per page is five, with two related, for a total of 10 related articles per page. MySQL server is setup for cached queries, and yet the server load on high traffic went up to 5, and it is normally no higher than 0.5. Also, the time for the page to load under very high volume is 19 seconds, whereas without the st_related_post the main-index.php load time is 0.19 seconds.
The single page loads 5 related queries, and those pages get 66% of the traffic, but don’t load the server. The code for your plugin is long, so I haven’t read it all. Could you use a different routine, or algorithm, to query related posts in the main-index.php loop, so it doesn’t load the server so heavily.
I should also mention I use Xcache as well.
Best regards,
Todd
We also had some intensive load issues crop up after going live with a site that called st_tag_cloud 3 times. Our site has about 6000 tags and I’m sure that had something to do with it. My solution was to generate a static file out of WordPress once per hour, and just to include() that file into the sidebar. Performance problems disappeared. Other ST functions scattered around the site didn’t have any issue at all.
Scot Hacker > Limit days works for me. If you specified 7, you get tags from posts published since 7 days.
Monika > The source of your error isn’t Simple Tags…
Mauro > Increase PHP memory and timeout… It’s a WP problem… not Simple Tags
Dave > The next version will be compatible with feedwordpress. I add the event « publish_post » for autotags ;)
Anthony Rogers > Auto link must be work with number… For case, i will add an option
7162 > You must have your blog in German for launch german translation
zvh > Related tags must be add only in tag.php template.
Todd > Not easily to improve performance for this function. Purpose Idea if you have the time ;)
Leo > Thanks, ZIP update for next version ;)
Everton > You use which function ? not the good at this time…
I’m using st_the_tags
You must use:
http://codex.wordpress.org/Template_Tags/single_tag_title
@Amaury: Since two months we use your plugin. We are very happy with it. But we have the same problem as Scot Hacker. The limit_days isn’t working voor the tag cloud. It does work for the related articles though.
In your specs (above) you state that in the related post (st_related_posts()) the limit_days is a stringvalue. In the tag cloud (st_tag_cloud())it says it’s an integer. Might that be the cause of the problem. Given different MySql’s for instance?
Hi,
I have two little problems here…
I. In simple-tags.admin.php, line 1096, there is a unnecessary dot at the end of the string. slip of the pen? :)
II. Translated default formatting strings don’t appear as expeted no matter how I reset Simple Tags options. Does someone else see this?
Amaury, thanks for the update, its now working.
I have slightly changed the autoLinkTags() function, as the word that was being replaced was changing its case
$filtered = « »;// will filter text token by token
$match = « /\b( » . preg_quote($term_name, « / ») . « )\b/ ».$case;
$substitute = ‘\\1‘;
Basically I have put the word that is being searched ($match) for in brackets, and then added a backreference to the string ($substitute) that it is replacing so the original word is used instead
Feel free to include this in one of your future versions
The code doesn’t seem to have displayed properly
$filtered = « »; // will filter text token by token
$match = « /\b( » . preg_quote($term_name, « / ») . « )\b/ ».$case;
$substitute = ‘\\1‘;
Does that work?
If not email me, and I’ll email the code to you
Oops, its the link that not working, got it now!
$substitute = ‘<a href= »%27.$term_link.%27″ title= »‘. attribute_escape( sprintf( __(‘Posts tagged with %s’, ‘simpletags’), $term_name ) ).’ » rel= »nofollow »>\\1</a>‘;
Salut!
Merci beaucoup for the plug-in.
I am a big fan of your plug-in, but now, I have some problems.
Inside the plug-in, I have changed to
so that I was able to adapt the related post list to the design of my blog.
After updating the plug-in, I am lost… how can I chance the css output for the related posts now?
merci,
Nick
Uppss…. the code is missing… this post will tell you what I mean:
http://www.nickbohle.de/technology/the-morning-after-related-posts-anyone/
Hi Amaury,
Thanks for a great plugin. I’ve updated from wp2.2.3 to wp 2.3.2 and hence updated to Simple Tags from Simple Tagging.
But I have a problem.
I just can’t figure out how to implement Related Tags. I was using it before with Simple Tagging though.
Could you show me a working example. I.e. how and where to place the code so the + and – will appear in order to search combined tag contents.
Sorry for my ignorance. I did go through all the comments here and also tried Googleing but couldn’t find anything specific to my question.
Thanks for your help in advance.
Cheers
I like the way your plugin works most of the time, If it would auto tag when it finds the keywords/links empty on a display and add the tags, then finish displaying the content, it would eliminate a lot of mass tagging and attempting to autotag.
thanks for listening
Todd > Latest version improved Related Posts ! Thank you for feedback ;)
Anthony Rogers > Fix for 1.3.8
yoichi > I will build a demo blog soon !
Leo > 1. What problem ? 2. I will check !
Hi Amaury
I appreciate you spending so much time supporting this plugin. But, can you please answer my query – you seem to answer all the other queries and skip mine! I’ve asked it now about 6 times!
Thanks
EB
Thanks Amaury.
I’ll be looking forward for that!
# Everton 02/02/08 – 00:07
I’m using st_the_tags
# Amaury 02/02/08 – 10:53
You must use:
http://codex.wordpress.org/Template_Tags/single_tag_title
;)
Thanks Amaury!
Hello,
I noticed something strange, I use wordtube plugin, I had added keyword in auto tag option and clicked update, after that post that contained that keyword didn’t load wordtube player, just said get flash to load wordtube player, I disabled simple tags plug in and post loads fine.
any information on this? thanks
Hi! thanks a lot for this plugin and all the work you have put into this. I was just wondering is there an option to stop a tag from showing up twice when you click « local tags » « yahoo tags » etc? so when you click each of the buttons in order you never get the same tag twice.
Thanks very much! the auto tagging is working perfectly!
Now one more favor, would it be possible to hook into the auto tagging function, using saved options, at the end of each update of feedwordpress?
How is it possible to show a tag cloud on a page? I enabled the « Allow tag cloud in post/page content » option and added to a page, but nothing happens.
Amaury, late adopter here ;-) And before I upgrade to WPv2.3 and Simple Tags I need to fix a current problem with Simple Tagging v1.6. I am using WP v2.1.1
Is there any support here?
My problem is I can see my tags in the post and the tag cloud but same tags in « manage tags » in admin = 404. Google must no longer see tags as I am off their radar after about a week of this issue. I normally get a « tag » hit very couple of minutes and I have not had a tag hit in over three days. Have my tags vanished even if I can see them on the blog?
I don’t know how your plug(s) work so it is difficult to determine a remedy. WP forum is silent.
Since I installed WordPress 2.3, I’ve been having many problems with tag managing plugins. All the plugins I’ve installed, even Simple Tags, showed the same error: « Allowed memory size of xxxxxxxx bytes exhausted ».
But after reading the trick you gave to Agaponeo on 28/10/07 (deactivate all plugins and install Simple Tags first), everything works fine.
Thank you very much for this excellent piece of work!
nice Plugin, but every few days an update that is not necessary!
Amaury – thanks for the fixes. The tag search works great now.
Amaury, on 1/2/08 you replied:
Dave > The next version will be compatible with feedwordpress. I add the event “publish_post” for autotags ;)
What does this mean in relation to feedwordpress? is this something I need to add to feedwordpress? or possibly by activating the ST and FWP in a certain order? I’m not a coder by ant means, but usually can follow directions when given.
Thanks for your excellent plugin, and your help.
Thanks for this great plug-in! I’ve been using it for some time now and it does its job perfectly. I just wished I had known the changed location of Mass Edit Tags: I was wondering where did it disappear! Found it now :)
Can nobody help me with my problem?
One last GREAT PLUGIN! before I quit buggin you,
Found that if ST is 1st plugin activated, with feedwordpress following somewhere down the line, but not immediately after, ST DOES auto tag each post! HOORAH! Now, it looks as if some arent tagged, but investigation will reveal their are no matching tags for that post, guess anyone can miss including a great keyword here and there. So would you consider compiling/including 100,000 or so of the best/greatest keywords??? LOL
Hi there.
I’m using the Auto Tags feature. Please tell me the proper syntax to change the default colour of the tag links. None of the examples above seem to help.
Keep up the great work. Your plugin is awesome!
Thanks.
Blog Bloke,
Try this: internal_tag
Example:
/*Simple Tags*/
a.internal_tag {color:#444444; text-decoration: underline; /*padding-right: 16px; background: url(images/tag_link.png) no-repeat right;*/ }
a.internal_tag:hover {color:#999999; }
Hi,
I already send you an email but have not heard yet back so I thought I try it here as well. The nofollow function does not seem to work correctly on my blog, not sure if this is a general prob or related to my blog.
I did activate it but the tags are not showing the rel= »nofollow » attribute, only rel= »tag ».
Can you take a look and see how to fix that ?
thanks a lot
Martin
I think there may be a bug involving the use of the st_tag_cloud() function inside the loop — it outputs the tag cloud heading as if it has found tags, but doesn’t actually output a tag cloud.
To contrast, wp_tag_cloud() works just fine within the loop.
What I’m looking to do is get an array of the post’s current tags, then display *only* those tags in a tag cloud for each post, rather than every tag in use.
Great plugin.
I just updated to 1.3.8, but I noticed the same behavior in 1.3.5. The plugin seems to manage tags that include a space inconsistently. For example, I added a tag of « john doe » to a post, but the tag does not appear in the numbered list of tags on the Manage Tags screen. However, if I use the match/add feature on the Manage Tags page to match « john doe » and add « john test », it DOES add « john test » to the post containing the « john doe » tag. However, neither show up in the list of tags on the Manage Tag list.
When I first installed ST, I noticed that some tags with a space became a tag like « john-doe ». If I added a tag like « john doe » in previous versions, I think it added the tag as « john-doe ». Now, many of my tags are like that. However, the auto link feature treats « john-doe » as different from « john doe ».
Can you explain how tags with spaces should be treated? Is it a bug that such tags don’t appear in the list of tags?
Hey, you WPMU users! If you’re looking to display the posts from one blog – with the inclusion of st_related_posts() – on another blog, here’s an easy way to do it:
` switch_to_blog($target_blog);
$myposts = get_posts(‘numberposts=1′);
foreach($myposts as $post) :
setup_postdata($post);
the_content();
st_related_posts(‘number=5&order=count-desc&format=list&limit_days=7=30&title=’);
restore_current_blog();
endforeach;`
Thank you for a terrific plug in, Amaury! It works just right when I put a tag cloud on its own page. I love the auto-complete tagging. Just what I needed.
Doktor, if you have enabled the tag page option like you said, you just need to put this line on a page (on the ‘Code’ view editor:
Doktor, it ate my code! Do this without any of the spaces:
I give up. ;-)
View the source at my first post. It’s still there, just invisible.
Is it possible to have the list of suggested tags in the post edit window to be listed alphabetically? I think they are currently listed by the number of times they have been used – but I would like them to be in alphabetical order.
Thanks.
Amaury:
I would like to do the same as Modawg and fakr, once or twice a day run the ‘autotag untagged posts’ to clean up and tag all untagged posts that were made during the day, regardless of when and how they were posted.
then I only have to clean up the ones that have no related keywords once every couple of days, on a poker site I have no idea how someone can make a post about poker and not hit one of my 1000+ words, but they manage.
using a cron job would make it easy, would this be correct? or does it need something else? this doesnt seem to be working
/usr/bin/curl -s -o /dev/null http://yoursite.com/wp-admin/admin.php?page=st_auto&action=auto_tag
Just to clarify what I posted 2 comments up:
I would like the list of click tags in the Administration post edit window to be in alphabetical order. I think they were in an earlier version of the plugin, but now I can’t figure out how to get them back in alphabetical order again.
Can someone please tell me how to do it? Thanks …
My site wasn’t displaying the tag cloud colors so I inserted this code in advanced usage but nothing showed up on the page except the title, Mon nuage de tags..
This is the code I used,
I’m trying to make this code show in a box,
[code] [/code]
Hi, this plugin looks good. I have 3 things I need to do with tags for my website, does your plugin allow any of these?
1) Can I prevent the tags from sorting in alphabetical order. Is there a way of the tags remaining in the order I inserted them into my post.
2) Can I assign tags to their own tag-categories? This would mean that the tag cloud for my portfolio section can be full of only technology-used tags, and my blog section can be full of blog-related tags.
3) Can I prevent individual tags from being displayed? On my homepage I have a list of all the diff technologies that I can use, ideally i would want this list to be generated from all the tags I inserted on the posts. However, I don’t want all these tags to display for each post. E.g. I want the ‘development’ tag to be there, but theres no point having ‘development’ show when it already says ‘html’ ‘css’ etc. Fussy I know, but i really wanna set it up this way.
1. You might want to install the paged comments plugin.
2. I’d like to limit tags shown with st_the_tags() function to tags that are used more than X times. For example, for me, showing tags that have only been used once is useless.
to make simple-tags auto tag, whenever as post is saved, published, or syndicated (using feedwordpress), using local tags only, change these lines
open simple-tags/inc/simple-tags.admin.php, v1.3.8 only tested
93 // 14. Auto tags
94 if ( $this->options['use_auto_tags'] == 1 ) {
95 add_action(‘save_post’, array(&$this, ‘saveAutoTags’));
96 add_action(‘publish_post’, array(&$this, ‘saveEmbedTags’));
97 }
to:
93 // 14. Auto tags
94 if ( $this->options['use_auto_tags'] == 1 ) {
95 add_action(‘save_post’, array(&$this, ‘saveAutoTags’));
96 add_action(‘publish_post’, array(&$this, ‘saveEmbedTags’));
97 add_action(‘publish_post’, array(&$this, ‘saveAutoTags’));
98 add_action(‘post_syndicated_item’, array(&$this, ‘saveAutoTags’));
99 }
the plugins I am using adsense manager,all in one seo pack,bsuite,feedburner feedsmith,feedcontrol,feedwordpress,siderss,inlinerss,googlexmlsitemaps,image manager, simple-tags, subscribe me, and ultimate google analytics.
simple-tags would not auto tag with this combination, and pressing update or update selected feeds apparently are not same as updating when the front page is opened or using cronjob
JR: I can confirm the misbehaviour of st_get_tag_cloud() together with format=array and just submitted a bugfix to Amaury. In the meantime you may add it for yourself. In file simple-tags.php, line 1989 is:
$output =& $content;
replace that by
//$output =& $content;
return $content;
and you should be fine.
Another glitch I noticed when using the array form for the parameters: size=>’false’ and color=>’false’ need Strings as values, Boolean false will not work.
When version http://www.instinct.co.nz/e-commerce version 3.2 10 is active the « Auto link tags in post content » disappear. As soon as I deactivate beta 10 the hyper link appears. Not sure if this is a Simple Tag problem or e-commerce problem.
Cheers
Tim
Hi!
Since updating to WordPress 2.3.3 and Simple Tags 1.7, my tags show up in the tag cloud, but I get a « No Posts found »-Error, when clicking the tags. Any Idea, what the Problem might be?
Example Tag Page: http://www.lionstarr.de/tag/tutorial
At the bottom of every page there are the tags, but they don’t work… The tags do show up in the administration panel!
Thanks beforehand,
Yours,
lionstarr
Sorry, that I bothered you! Just took the wrong plugin (the old Simple Tagging and not Simple Tags)! Matter solved!
Using the latest version, and the plugin is not picking up tags from new posts whatsoever. No clue what I am doing wrong. Read through most of the comments here, but couldn’t find anyone with similar problems?
Lars
if your using Image manager, it interferes with both the options page and any and all autotagging from posts. Image manager homepage has been informed but no response yet.
read above and you’ll find another post of mine that allows you to auto tag when saving or posting, with out pre selecting tags, deactivate image manager and it should work. I found a couple other less useful plugins that interfere but just keep them deactivated till I need them. One clue to a problem, is the options page does not open correctly when initially moving between sub pages until the options are saved, and then the options for auto tag menu are changed to default.
When I try to add tags to menage tags page it’s doest appear and generally tags are assigned only to one post I can’t choose them again from my local database
Hello, sent you an urgent e-mail about your plugin. If you didn’t receive me, please contact me at the e-mail I leave the comment at. The e-mail’s subject was concerning the plugin’s tag embedding function.
-Tibi Puiu
Once again, great plugin!
I noticed some strange behavior with auto link tags and future posts:
Lets say i have tag1 and tag2 on previous post. If i write an article with tag1 tag2 and tag3, set to be published in the future, it auto links tag1 and tag2 on the post content, but it doesn´t link tag3 (tag1 tag2 and tag3 are on the post content text, with the same case). If i edit the post and just hit save, it autolinks tag3.
Perhaps it´s a WP filter issue?
thanks!
This is a wonderful plugin and very easy to use. I am hoping you can point me in the right direction, though, for something I just can’t figure out.
Clicking on a tag in the cloud brings me to a page that lists all posts with that tag in their entirety. So for example, the tag « characterization » will produce a page that shows all 120 posts with the characterization tag in their full length.
I need to change the template so that instead of producing full posts, I get a list of titles (and maybe excerpts). I know how to change the look of the page with css, but I’m lost on where to find the right template.
Thank you for whatever help you might be able to provide.
I just finally upgraded from 2.1 to 2.3.3 and added Simple Tags. First off, Thank you for the wonderful piece of software, however, I am wondering if there is a way to convert my previous tags that were implemented using Ecto and convert all the tags from the technorati tags to the new built-in tags.
If not, it’s not a big deal, but i wish there was.
thanks
I just upgraded to 1.3.8 and now the « Tags » link that used to be on the main line is gone now.
Is this a bug?
I am a coding novice using the Upstart Blogger – Minim template.
It seems as if instead of activating the tag cloud as a widget, i need to manually change code in the template’s sidebar.
The code is below, with the template’s default tag cloud currently in the sidebar.
I basically just want to display the Simple Tags Cloud instead.
<a href= »/ »><img src= »/images/header.jpg » width= »336″ alt= »" />
Tags
thank for you
Hi Amaury,
I have a server that I use just to serve images, js, and css files. Could you put a field into the Admin control panel to allow the script to be given a new value, such as http://cacheserver.mydomain.com:3465/simple-tags, to look for the .js, .gif. .png, and .css files for Simple Tags to offload these files onto a different server?
The files are in simple-tags — >inc, and in simple-tags –> extras –> simple-tags.ajax.tooltips.
Ideally, I’d like to be able to put in a cache server address into an Admin field, as in the example above, and have the script look for all .js, .css, .gif, .png on that remote server, and in the directory specified at the end of the address.
Hi,
Cany anyone here let us know the right syntax code to display Technorati Tags & Technorati Tags Cloud with simple tags.
Thanks in advance.
DG…
embedded tags doesn’t work with wp-o-matic plugin autoposts
Hi, great plugin!
I have one question. I was trying to make tags in « flat » style like you did it below on this page, and I switched « Tags cloud type format » to « Flat », but nothing changes…
What i do wrong?
Thank you!
quick question,
does this work with wp 2.3.3, I did an upgrade today and all my tags have disappeared. i cant seem to figure it out…
anyone else having this problem?
i actually figured it out, thanks i posted my previous comment a few seconds to soon…
How can I remove the maximum length of the tags? I have some very long strings I’m using as tags, and they are getting truncated.
Great plugin… thanks!
hi amaury
great plugin, i’m using it since i started my blog with wordpress and find it very easy to configure. just one question: can i put the tags in a page? i mean, not tagging a page, but creating a page and display there all my tags. what code i should use? or simple tags as an option to do it? have a look at my blog: i use the livingOs Gamma theme, one column with no widgets. on top, you can see the links to the pages (home and info): i’d like to have another page « tags ».
maybe somebody already asked, but i can’t find. treat me as a dummy :) and suggest me step by step – simple tags pour les nulls ;)
ciao
alex
alex, go to Options >> Simple Tags >> General. Check the second box. The text tells you what to add to a page.
hi matt, thank you.
i found the box to check and checked it. so easy i feel pretty stupid :)
thanks again
Hi,
WordPress 2.5 is on it’s way, are you planning to update Simple Tags for wp2.5 ?
Thanks!
Regards
Thank you so much! Up and running and very simple to manage for this blogging newbie!
Hi!
Got 2 problems with displaying tags under the posts.
1#
« Two-word » Tags (i.e. Green Shoes) break the line. Why?
2#
A css related question, but maybe you can help me: How do i keep the tags inside the dimensions of the sourrounding div?
You can see all at: http://www.soundofsirens.net
Would be nice if you could help us!
love,
m.
looks like the st_related_posts() function only takes a string as an argument, and not an array.
i cant get the example
<?php st_related_posts(‘number=10&title=&include_page=false&xformat=%title%‘); ?>
to work
the double quotes in the xformat get escaped automatically, whatever i try … am i the only one who has that ?
Is it possible for st_related_tags, with the AND option, to only show posts for all tags being browsed?
Example:
Post 1 has tags a, b, and c.
Post 2 has tags b, c, and d.
I’m viewing:
website/tags/a/
Post 1 will be listed.
Related tags will be: b and c.
I can click on b or c to ADD them.
If I’m viewing:
website/tags/a+b/
Post 1 and 2 will be listed
Related tags will be: c and d.
I can click on c or d to ADD them.
If I add d to my search I will get a 404, because there are no posts with tags a+b+d.
My request in this situation is, if I’m using AND instead of OR, tags should only be shown if they are related to ALL posts listed.
In that case, when I’m viewing:
website/tags/a+b/
Post 1 and 2 will be listed
Related tags will only be: c
I can click on c to ADD it.
In this way it is possible to use the AND option to refine a search or use the OR option to expand a search.
Sorry, I meant to say,
« Is it possible for st_related_tags, with the AND option, to only show tags for all posts being browsed? »
Bonjour et merci beaucoup pour le don que vous faites à la communauté en mettant sous licence GPL votre excellent travail.
Juste une remarque: il semble que dans l’interface de gestion, également remarquablement bien faite, sous l’onglet « Articles relatifs », le champs « utilisation avancée » qui permet de passer des options, ne fait pas prévaloir les options d’exclusion telles que « include_page=false ». Me peut-être me trompe-je ?
Encore merci.
Hello,
I would like to have in the st_related_posts a filter by category (like in the tag cloud)… something like st_related_posts(‘category=7′)
Is there a way to make this possible?
Greetings,
Guevara
Thank you for this great plugin. My WordPress 2.3 upgrade left me initially confused. But with your plugin I solved some of my issues.
Thank you very much for share it.It’s perfect working:))
Support by comments is finished.
Go on Google Code page for any support, bugs and documentation.
[...] should have one plug-in that manages your tags–I use Simple Tags. Also, it’s nice to use a plug-in that allows users to add your posts to their favorite link [...]
[...] 10 Mrz Simple Tags Posted by: DocX in Blogging, Software Vorhin das Plugin Simple Tags für WordPress installiert. Die Tags werden nun in der linken Sidebar unter dem Archiv [...]
[...] Simple Tags – Plugins for WordPress 2.3 – Extend management of tags – Simple and Powerfull | Here Wi… WordPress 2.3に対応したtagにはこっちみたい。 (tags: wordpress plugin tags tagging plugins tag management) [...]
[...] 下載點: Simple tags [...]
[...] Visit [...]
[...] Официальная страница плагина [...]
[...] the author of the Simple Tags plugin is not too active on the plugin’s home page comment thread, but he does drop in occasionally [...]
[...] For a complete list of options and instructions visit the Simple Tags plugin homepage. [...]
[...] ja. Simple Tagging war bisher sas Plugin meiner Wahl. Jetzt muss es Simple Tags sein. Ich habe das Ding installiert. Ist in der Bedienung lange nicht so cool wie Simple Tagging. [...]
[...] 在胡戈戈同学的引荐下,大猫同学把他空间的最后一个坑留给了俺。大猫同学帮忙建好了数据库,俺上传安装了wp 2.2.3 中文版。上传yo2时的主题nonzero red,恢复侧边栏信息,导入数据。原来的slug和tag全部消失。在maoz同学的指导下,添加了“.htaccess”文件,更改永久链接规则,恢复了slug。但是tag实实在在不能恢复了,只好用simple tags批量添加。奇怪的是,simple tag 1.3以上版本在俺博客里没有批量修改功能,可能和中文版wp有冲突,只好用1.2.4版本。 [...]
[...] Simple Tags 1.3.9 [...]
[...] タグ関連ではとりあえず Simple Tags UTW Theme Compatibility Thing Click Tags [...]
[...] This is great and simple enough to use, but if you write a lot of articles on the same topic, than tagging can be a chore. Luckily there’s a great plugin for WordPress that makes tagging less of a chore. You can find it here: Simple Tags. The developer’s website is here: Simple Tags Developer. [...]
[...] Simple Tags As of version 2.3, WordPress has a built-in tagging system, however with very limited features. Simple Tags [...]
[...] letzten Wochen setzte ich die Tags eher so aus dem Bauch raus. Die Übersicht wurde nur Dank des Simple Tags-Plugins bewahrt, aber so richtig systematisch war hier gar nichts. Ich muss mich jetzt eindeutig [...]
[...] UTWが使えなくなったので、関連プラグインも削除。 タグ管理には、代わりにSimple Tagsを使用。 [...]
[...] Simple Tags: almost gives you that nice UTW feeling. [...]
[...] when tags were added in 2.3 I thought it must be a joke that these options are missing. Simple tags plugin could provide this and much more (merging, …) and I will probably continue to [...]
[...] remplacé ce plugin par Simple Tags. Article précédentLe logiciel FreeMind Article suivantCe blog est propulsé par [...]
[...] 下載點: Simple tags [...]
[...] 我使用的外掛中,唯一爆掉的是Admin Drop Down Menus,不過其實他也早就有做好新版的了,所以直接換掉就好了。另一個小小爆掉的是Simple Tags,原本他提供的建議Tag可以直接用按的,現在失效了,不過是小問題,應該下次更新就會修正了。 [...]
[...] 作者介紹下載:(Click) [...]
[...] Simple Tags 1.04 非常好用的 Tag 管理工具,推荐使用。安装完后后台直接设置。作者:Amaury [...]
[...] med 2.5 är t ex Popularity Contest, men nu hittade jag en fix. Läs mer hos Blogvaria hur du gör. Simple Tags är ett annat plugin som jag dessvärre inte heller har fått till, trots ett försök med en fix. [...]
[...] also glad that the Wordpess folks decided to add full tag management. So far I’d been using SimpleTags for this [...]
[...] Det hela används förslagsvis med dom redan existerande funktionerna för taggning i WordPress eller med hjälp av det utmärkta pluginet Simple Tags. [...]
[...] 3、好像我所用的所有的插件都没发现兼容性问题,看官方文档说Simple Tags有个问题,需要更改代码才能在WordPress 2.5下使用,但我没遇到,好像没什么问题; [...]
[...] 2.5 gehieft. Hoffe mal das alles glatt lief. Bei mir tat es das jedenfalls. Einzig die Plugins SimpleTags und das Exec PHP Widget hatte ich sicherheitshalber mal auch auf die neuste Version [...]
[...] Simple Tags – Suggests tags to use when writing a post and makes them quick to insert via ajax. Also provides an enhanced tag cloud widget. [...]
[...] Simple Tags [...]
[...] tag 云功能,调用 st_tag_cloud(); 即可。 目前最新版本是 Simple Tags 1.0.3,点击这里下载。 4月 4, 2008 | Filed Under WordPress [...]
[...] WordPress 2.5 sürümüne geçiş sorunsuz oldu ama bazı eklentilerle ufak problem çıkarttığını da daha önce belirtmiştim. Bunlardan en önemlisi bence Sİmple Tags ile yaşadığım sorundu. WordPress 2.5 sürümüne geçtikten sonra Simple Tags, özellikle Local Etiketleri eklerken tepki vermemeye başlamıştı. Dün itibariyle WordPress 2.5 ile uyumlu olan Simple Tags 1.5.3 sürümü çıktı. Buradan indirebilirsiniz. [...]
[...] 为了方便您管理标签,爱写字为您准备了标签管理增强插件。该插件基于Simple Tags。以下是与该插件相关的信息。 [...]
[...] tarde apareció la extensión Simple Tags, que nos permite tener las tres funciones citadas y muchas [...]
[...] Simple Tags [...]
[...] indirmek için [via] Geliştiricinin blogu için [via] Etiketler: Arama Motorları, Baglanti, Bildirgec, Blog, Blogging, Eklenti, Etiket, ipuçları, [...]
[...] Wie ich gerade feststellen durfte gibt es jetzt von den Machern von Simple Tagging das Plugin Simple Tags für WP 2.3+. Ich werden das jetzt auf jeden Fall mal antesten, ich denke es wird sich lohnen und [...]
[...] Eklentiyi indirmek için [via] Geliştiricinin blogu için [via] [...]
[...] Simple Tags v1.5.3: No longer see the long, sortable list of tags under Manage Tags. Being able to sort alphabetically (as well as by use) makes tag management bearable with the gazillion tags I have. I also prefer how Simple Tags allows removal and renaming of tags. This was written by sairuh. Posted on Saturday, 12 April 2008, at 1:42 pm. Filed under Software. Tagged hacking, WordPress. Bookmark the permalink. Follow comments here with the RSS feed. Post a comment or leave a trackback. [...]
[...] Simple Tags,让你轻松管理 WordPress 2.3 标签。 [...]
[...] Simple Tags – полезный плагин для более удобной работы с тегами. [...]
[...] (2)、在使用All in One SEO Pack的时候建议关闭Simple Tags的Meta Keyword—Automatically include in [...]
[...] Tags 及时出现在我的视野。Simple Tags 的前身是大名鼎鼎的 Simple Tagging。作者对 Simple Tags [...]
[...] Für das Tags-Management habe ich mir auch schon jede Menge Plugins installiert. So z.B. Simple Tags, Configurable Tag Cloud Widget und Click [...]
[...] plugins that let you use tags in the manner I believe they were meant to be used. Myself I use Simple Tags but there are also Ultimate Tag Warrior or TechnoTags. Any of these three would be my [...]
[...] have been using amaury balmer’s simple tags plugin to extend wordpress‘ tagging feature since wp 2.3.x and it has been great so far. i recently [...]
[...] das neue Tagging anzupassen. Da ich vorher Simple Tagging im Einsatz hatte, habe ich den Nachfolger Simple Tags im Einsatz da doch ein viele ntzliche Sachen bei der WordPress-Lsung fehlen. Etwas Mucken machte [...]
[...] Simple Tags [...]
[...] Simple Tags 今天更新到 1.1 版(20/10/2007 更新到 1.1.1 版), 相对之前 1.04 版更新了不少内容. [...]
[...] Simple Tags 时间也不久, 对其功能也没多细了解, 设置里面也没细看, [...]
[...] Simple Tags 1.04 非常好用的 Tag 管理工具,推荐使用。安装完后后台直接设置。作者:Amaury [...]
[...] ??????? [...]
[...] 幸好,Simple Tags 及时出现在我的视野。Simple Tags 的前身是大名鼎鼎的 Simple Tagging。作者对 Simple Tags 的开发原则是性能最优、安全更佳、功能更多(best performances, more secured and brings a lot of new functions)。目前的最新版本是1.02,主要特性有: [...]
[...] However it is limited and you need some plug-ins to exploit it. For this purpose, I am using the « Simple Tags » plugin. Simple Tags features “type-ahead” input tags, auto suggestion, tag clouds, tag [...]
[...] Extended Tagging for WordPress! Autocompletion, Suggested Tags, Tag Cloud Widgets, Related Posts, Mass edit tags! Autor: Amaury Balmer – Download & Infos (engl.) [...]
[...] Simple Tags [...]
[...] 5.Simple Tags,虽然我很少上WordPress的后台来发布日志,Simple Tags的Tag推荐功能就用不到,但它的Tag管理功能还是很强的,特别是批量管理功能。 [...]
[...] Simple Tags上面两个tag插件已经不需要了。所有的功能都可以使用simple-tags插件实现。具体的介绍看WordPress 2.3 tag插件推荐:Simple Tags。SEO必备插件 [...]
[...] Üretici : herewithme [...]
[...] wordpress自带的标签功能是很弱的,那不是一般的弱,是相当的弱!因此只能求助于插件了,除了大名鼎鼎的UTW标签插件,就数ST这个了,因为UTW好像(?)到了wordpress2.3以后兼容性不好,与某必备插件冲突,因此ST就一跃成为了标签领域插件的佼佼者。不愧是插件啊,功能强悍无比,大家可以参见ST的使用说明,就知道wp爱好者的热情和能力之大,当然如果你看着使用说明头大的话,你也无需学习,因为如果排除高级用法的话,ST使用那是相当简单的。 [...]
[...] WordPress 2.5 sürümüne geçiş sorunsuz oldu ama bazı eklentilerle ufak problem çıkarttığını da daha önce belirtmiştim. Bunlardan en önemlisi bence Simple Tags ile yaşadığım sorundu. WordPress 2.5 sürümüne geçtikten sonra Simple Tags, özellikle Local Etiketleri eklerken tepki vermemeye başlamıştı. Dün itibariyle WordPress 2.5 ile uyumlu olan Simple Tags 1.5.3 sürümü çıktı. Buradan indirebilirsiniz. [...]
[...] Yukarıdaki resimde “Lost” kelimesini konuya tag olarak ekledim. Simple Tag, içerikte geçen bütün Lost kelimelerini otomatik olarak http://www.teknolojiherseyim.com/tag/lost olarak linkledi. Böylelikle tek tek elle linkleme olayından kurtulmuş oldum. Ayrıca programın bir diğer özelliği de, linklemek istediğiniz tagın konu içinde belli sayıda geçmesini ayarlayabiliyor olmanız. Böylelikle, önemli gördüğünüz ve konu içinde, örneğin “3″ kereden fazla geçen taglarınızı otomatik olarak linkleyebiliyor Simple Tag. Bu sayede her kelimeyi gereksiz yere linklememiş ve Google amcayı kızdırmamış oluyoruz. Otomatik olarak linklenen taglar, temanızın css inde belirlenen default link rengini alıyor. Eklenti içinden, bu linklerin rengini de kendinize göre düzenleyebilirsiniz. Bir diğer güzellik te, geçmişte yazdığınız yazılarda da otomatik olarak tag link yapılabilmesi. Siz sadece eklentiyi kurun, basitçe kendinize göre özelleştirin ve gerisini Simple Tag’a bırakın. Bugüne kadar yazdığınız tüm yazılarda, belirlediğiniz kriterlere uyan tüm etiketler otomatik olarak linklenecek. Eklentiyi indirmek için buraya. [...]
[...] Simple Tags Plugin ist kaputt. Autotagging, Tags Suggestion, Auto Completion und Display Click Tags funktionieren [...]
[...] לתגיות והקטגוריות.התוסף: Simple Tags הוא המחליף של Tag Warrior התוסף מאפשר ניהול מרכזי של קטגוריות, הוספת ענן תגיות, פוסטים [...]
[...] PHPベースのオープンソースによるフリーブログシステムWordPressの最新バージョン2.3では正式にタグをサポートしています。関連記事の表示、タグクラウドの設置など、タグ機能を活用するためのプラグインSimpleTagsを導入してみました。 SimpleTagsはHere With MeさんのSimpleTagsからダウンロードできます。このプラグイン一つで [...]
[...] alone, tags could only be integrated through the use of plugins such as Ultimate Tag Warrior and Simple Tags. Coming to terms with both of them wasn’t really much of a [...]
[...] ก่อนอื่นเรามารู้จัก ปลั๊กอิน ที่เป็นตัวแม่ของมันก่อน นั่นคือ Simple Tags หน้าที่หลักของไอเจ้าตัว Simple Tags จริงๆ แล้วคือ จัดการ Tag ทั้งหมดครับ ดูการทำงานทั้งหมดได้ที่ Here With Me [...]
[...] nicht gelöst ist das Tagging. Das Plugin Simple-Tags, mit dem das Theme arbeitet, ist nicht WordPress 2.5 kompatibel. Zwar hört man, dass das [...]
[...] Simple Tags 1.04 非常好用的 Tag 管理工具,推荐使用。安装完后后台直接设置。作者:Amaury [...]
[...] – Related entries permet de proposer d’autres articles (plus ou moins) en rapport – Simple Tags permet de tagger facilement (et en masse) les articles – wikioVote rajoute le petit bouton de vote [...]
[...] Simple Tags – Plugins for WordPress 2.3 – Extend management of tags – Simple and Powerfull | Here Wi… [...]
[...] wordpress自带的标签功能是很弱的,那不是一般的弱,是相当的弱!因此只能求助于插件了,除了大名鼎鼎的UTW标签插件,就数ST这个了,因为UTW好像(?)到了wordpress2.3以后兼容性不好,与某必备插件冲突,因此ST就一跃成为了标签领域插件的佼佼者。不愧是插件啊,功能强悍无比,大家可以参见ST的使用说明,就知道wp爱好者的热情和能力之大,当然如果你看着使用说明头大的话,你也无需学习,因为如果排除高级用法的话,ST使用那是相当简单的。 [...]
[...] 2.Simple Tags [...]
[...] Simple Tags [...]
[...] ZIP 文件就可以帮你上传和安装。 Simple Tags 幸好,Simple Tags 及时出现在我的视野。Simple Tags 的前身是大名鼎鼎的 Simple [...]
[...] 6.) Simple Tags Eigent sich sehr gut um Listen mit verwandten Artikeln zu erzeugen, ist auch hier im Blog im Einsatz. Link [...]
[...] Simple Tags 1.0.4 Meilleure gestion des tags maintenant intégrés dans WP. Permet les nuages de tags et autres réjouissances. [...]
[...] Tag Manager 简单 tag 管理工具,个人感觉 Simple Tags [...]
[...] de relacionar post por medio de las tags usadas en el mismo. [Demo: en este mismo blog] [Descarga] [¿Cómo usarlo?] Sin duda, hoy en día, los servicios sociales son muy usados, y si uno sabe aprovecharlos pueden [...]
[...] Version 2.3 unterstützt, habe ich diesen Ratschlag einfach ignoriert und Simple Tags in der neuen Version 1.5.7 installiert und siehe da die Fehlermeldung [...]
[...] posts inside RSS Extended the_tags function (outside the loop, technorati, etc) install and support:http://www.herewithme.fr/wordpress-plugins/simple-tags It seem that this plugins have no update.but it can use for wordpress [...]
[...] 官網herewithme-Simple Tags 西瓜田裡的牛:[WP外掛] Simple Tags幫你管理標籤 [...]
[...] Simple Tags – Sehr gutes Plugin zum Managen deiner Tags. [...]
[...] SimpleTags Das Plugin ist enorm praktisch und erleichtert die Arbeit. Jedes mal, wenn Ich einen Artikel schreibe, generiert dieses Plugin automatisch eine Auswahl an Tags (Stichwörtern), aus denen Ich bequem per Mausklick auswählen kann. Auch lassen Sich Tags massenhaft bearbeiten. Was Ich an dem Plugin besonders schätze, ist die “Related Posts” Funktion. Neigt sich dem Leser ein Artikel dem Ende zu, erscheint unter jedem Eintrag eine kleine Rubrik, welche thematisch ähnliche Artikel anzeigt. Das hat einen enormen Wert für jeden Blog. [...]
[...] Je me suis alors attachée à mieux gérer mes tags et j’ai été très heureuse du plugin Simple Tag qui m’a drôlement facilité la [...]
[...] führen kann. — Simple Tags findet man im Plugin Directory von WordPress.org bzw. auf der Autoren-Homepage (französisch, z. T. [...]
[...] Tag Manager 简单 tag 管理工具,个人感觉 Simple Tags [...]
[...] Simple Tags,JS Quicktags,Math Comment Spam Protection,Subscribe to Comments [...]
[...] Einträgen lediglich Tags zuweisen können und automatisch 2-3 verwandte Einträge anzeigen lassen. Simple Tags hört sich vernünftig an. Aber taugt das Ding auch [...]
[...] Simple Tags – Adds plenty of options to extending WordPress 2.3 tagging. [...]
[...] Simple Tags 时间也不久, 对其功能也没多细了解, 设置里面也没细看, [...]
[...] Simple Tags ist gut bekannt, doch für alle Neuen sei es auch hier erwähnt. Man kann anhand der vergebenene Stichwörtern /Tags verwandte Artikel, ähnliche Beiträge anzeigen lassen. [...]
[...] Simple Tags [...]
[...] 博客里文章多了以后要找到一篇文章就不太方便了,有时候自己找以前写过的东西还得用google,而且别人看起来也没有清晰的线索。这时候使用Tags就有很大的好处,不过由于以前WordPress写博客的时候还没有Tags,新版本的WordPress才加入了Tags,所以为以前大量没有Tags的文章添加Tags就成为一件极为麻烦的事,今天我手动插了几个就不耐烦了,后来找到一个不错的WordPress插件--Simple Tags,通过这个插件可以很方便的对Tags进行批量的修改,删除,添加, 还可以为文章自动添加Tags,在你博客内容越来越多的时候这个插件会很大的帮助你。 [...]
[...] Simple Tags :Simple Tags绝对是目前为止最为好用的wordpress tag插件,可以说它汇聚了以往tag相关插件的种种优点,集百家之长于一身,是目前绝对不可以缺少的wordpress插件之一。SEO必备插件 [...]
[...] Artikel“. Momentan werden diese wohl speziell durch die Tags, also das Plugin „Simple Tags“, [...]
[...] WordPress2.3よりタグ機能が内蔵され、かねてから憧れだったタグを使うべくSimple Tagsプラグインを導入。既に日本語言語ファイルも同梱され、非常にわかりやすい。 [...]
[...] http://www.herewithme.fr/wordpress-plugins/simple-tags [...]
[...] simple-tags. Облако тэгов. Чем больше новых тэгов у нового поста, тем больше страниц. Для Sape это весьма актуально. Кроме того, плагин добавляет на странице с постом метатэг ключевых слов. И это одна из причин, почему я не пользуюсь плагином all-in-one-seo-pack. Я считаю последний излишеством, придуманным для ленивых. [...]
[...] the administration to manage these tags in anyway. Now, there are many plugins for this purpose but Simple Tags is the best among these in terms of its features and simplicity. This plugin can do a lot more than [...]
[...] heute das “Simple Tags” Plugin installiert, um verwandte Artikel auf Tagbasis anzeigen zu lassen. [...]
[...] Simple Tags绝对是目前为止最为好用的wordpress tag插件,可以说它汇聚了以往tag相关插件的种种优点,集百家之长于一身,是目前绝对不可以缺少的wordpress插件之一。上次在wordpress 2.3插件推荐中提到的WP 2.3 Related Posts和Tag Managing Thing现在已经不需要再安装了,只需要Simple Tags一个插件就可以实现多种功能。 [...]
[...] Simple Tags — это плагин для WordPress, предназначенный для управления тэгами (или, как их еще называют, метками). Достоинств у плагина очень много (полный список — на официальной странице плагина), работает просто на « ура ». [...]
[...] me di cuenta que unos problemas que tengo con los feeds son causado por otro plugin llamado Simple tags, el cual por algún motivo bloquea el auto discover que provee [...]
[...] Simple Tags [...]
[...] Simple Tags [...]
[...] 接下来介绍下常见的两个实现调用相关日志的插件,一个比较出名的tag管理插件simple tag,另外一个就是国人制作的WordPress 2.3 Related Posts Plugin,其实两插件的工作原理正如我上面说的一样,都是通过tag的关联性实现调用相关日志的功能,两插件不同的是,前一插件的功能更为强大点,能实现tag管理功能,而后面以插件更为专业点,主要功能就是调用相关日志。 [...]
[...] Plugin Simple Tags handelt es sich um den Nachfolger der Erweiterung “Simple Tagging”. Der Autor Amaury [...]
[...] http://www.herewithme.fr/wordpress-plugins/simple-tags [...]
[...] Simple Tags – Dient vorallem der Verwaltung der tags. [...]
[...] Simple Tags – Plugins for WordPress 2.3 – Extend management of tags – Simple and Powerfull | Here Wi… [...]
[...] Plugins Candidate Lightbox 2 Contact Form 7 SimpleTag AJAX Comment Preview WP Wall (considered) Sociable (considered) WP Poll [...]
[...] Simple Tags [...]
[...] Simple Tags ist das derzeit mächtigste WordPress Plugins für eine interne Verlinkung. Nutzt man davon die Anzeige einer Tagcloud oder der Tags bei den Artikeln, dann erreicht man damit sicher eine gute interne Verlinkung von Artikelübersichtsseiten. [...]
[...] Simple Tags [...]
[...] ça sera Amaury Balmer développeur d’une poignée de plugins dont mon préféré : Simple Tags. Pour plus d’infos rendez visite à Matt Mulleweg et son billet pour fêter les 4000 (on [...]
[...] 今回の関連記事の取得には、検索キーワードを記事から検索して表示させるのではなく「Simple Tags」プラグインを使用しています。 [...]
[...] потребуется установить какой либо из этих плагинов Simple Tags, Simple Tagging Plugin или Ultimate Tag [...]
[...] Simple Tags (v1.6.4) Par : Amaury Balmer | Page officielle du plugin : http://www.herewithme.fr/wordpress-plugins/simple-tags [...]
[...] Simple Tags [...]
[...] das Tagging in Version 2.3 ja eher rudimentär angelegt ist, scheint es ratsam zu sein, auf Simple Tags, sozusagen da Update von Simple [...]
[...] à Simple Tags, je suis passé avec un minimum d’huile de coude de +200 tags à juste 15 tags. Et ça fait [...]
[...] Purpose [...]
[...] Simple Tags (related posts) « How much is your website worth? [...]
[...] Simple Tags – Plugins for WordPress 2.3 – Extend management of tags – Simple and Powerfull | Here Wi… (tags: plugin wordpress plugins tagging blog management) [...]
[...] Another must have plugin. In fact, it is in all my WordPress sites. It outputs a list of recent comment excerpt. You can install as WordPress plugin or simply include in your theme folder (no activation required). Simple! Simple Tags [...]
[...] Simple Tagging to insert tags on posts [...]
[...] – Simple Tags plugin ตัวนี้ ช่วยให้เราสามารถแก้ไข Tag (คำในการค้นหา หรือ Keyword) ได้ง่ายๆ และสามารถทำ Related Posts ได้อีกด้วย โดยจะดึงหัวข้อที่เราใช้ Tag เดียวกันมาแสดงให้ค่ะ http://www.herewithme.fr/wordpress-plugins/simple-tags [...]
[...] WordPress2.3之前,曾经有很多个Tag支持插件,其中最著名的便是UTW和Simple Tagging。其中UTW强大臃肿,而Simple Tagging简单实用。在WordPress2.3推出之后,UTW的作者推出了几个小插件,能够管理Tag,实现Embedded等功能。而Simle Tagging的作者则推出了功能强大的Simple Tags。 [...]
[...] mir die Möglichkeiten die man damit hat aber nicht genau angeschaut habe. Das Zauberwort heisst Simple Tags, ein ziemlicher Allrounder, zum einen ermöglicht das Plugin einen guten Umgang mit Tags, das [...]
[...] alternative zum Simple Tagging Plugin ist das Plugin Simple Tags. Das Plugin basiert auf Simple Tagging, benutzt aber die neue Tagstruktur von WordPress 2.3. Über [...]
[...] 6. Simple Tags Plugin ตัวนี้ ช่วยให้เราสามารถแก้ไข Tag (คำในการค้นหา หรือ Keyword) ได้ง่ายๆ และสามารถทำ Related Posts ได้อีกด้วย โดยจะดึงหัวข้อที่เราใช้ Tag เดียวกันมาแสดงให้ค่ะ http://www.herewithme.fr/wordpress-plugins/simple-tags [...]
[...] Simple Tags [...]
[...] oder Tags sind bei Blogs fast Standard. Doppelter Content daher auch. Doch mit Simple Tags ist eine fantastische interne Verlinkung möglich. * Rename one or many tags, * Merge many [...]
[...] the administration to manage these tags in anyway. Now, there are many plugins for this purpose but Simple Tags is the best among these in terms of its features and simplicity. This plugin can do a lot more than [...]
[...] Tags 及时出现在我的视野。Simple Tags 的前身是大名鼎鼎的 Simple Tagging。作者对 Simple Tags [...]
[...] Simle Tagging 的作者则推出了功能强大的Simple Tags,这是一款非常棒的插件,强烈推荐给大家。 [...]
[...] Related Posts นั้นทำไม่ยาก ใช้ปลั๊กอิน Simple Tags ติดตั้งแล้วปรับแต่งธีมอีกนิดหน่อย [...]
[...] to Plugin. Link to support page. This plugin seems to simplify the tagging process ad a whole. Getting from point “A” to [...]
[...] Simple Tags – плагин для удобной работы с тегами. [...]
[...] 刚才看到漫步给我留言说Simple Tags也有相关日志功能,最近正在想办法精简WP插件,于是乎花点时间研究了下,不错!效果和原来用WP 2.3 Related Posts差不多, 哈哈又省掉一个插件了!我也顺便写一下Simple Tags相关日志的使用方法吧: [...]