6 thoughts on “Tag Suggest Thing

  1. 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 🙂

  2. 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

  3. 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!

Leave a reply to Les Cancel reply