I’m making Things for wordpress. Many of them are Tagging Things. The first of them is up in the WordPress plugin collection thing.
So without further faffing about: Tag Suggest Thing! It does tag suggestions for WordPress 2.3.
I’m making Things for wordpress. Many of them are Tagging Things. The first of them is up in the WordPress plugin collection thing.
So without further faffing about: Tag Suggest Thing! It does tag suggestions for WordPress 2.3.
Can I make a request for another “thing”?
What I’m really missing in WP2.3 is the nice UTW drop-down thingy that lists existing tags. I’m using the Click Tags plugin, but as I have lots (and lots) of tags, that takes up huuuuuuuuuuuge amounts of screen space.
So could you have a go at a “Tag Select Thing”? That would be lovely 🙂
Hi, just wanted to say thanks for the Tag thing, its very useful.
Are you from Switzerland, I say Luxemburgers (Sprüngli bakery) in your food section. Like the graphic work on this website.
Greetings
Daniel
Oh yes, thanks for the Pita bread link, have not had any good ones since leaving UK.
Loved the concept of your ‘Tag Suggest’ … trouble was it wasn’t working …. did I say I had to have it operational? So I fixed it … seems they erenamed the tag input field. So it now works in wordpress 2.5.1.
replace the JS function of the same name with this:
function Things_AddTag(tagname) {
if (document.getElementById(‘newtag’).value == “Add new tag”) {
document.getElementById(‘newtag’).value = “”;
}
if (document.getElementById(‘newtag’).value == “”) {
document.getElementById(‘newtag’).value = tagname;
} else {
document.getElementById(‘newtag’).value += “, ” + tagname;
}
}
Did I say I loved it!