On the Photo Manager screen, when you enter tags, they don't auto-complete. So naturally I have some tags that are misspelled or plural/non-plural dups, etc. Any way to make these auto-complete as they are typing like the WP tags do?
Thanks!!!
not resolvedOn the Photo Manager screen, when you enter tags, they don't auto-complete. So naturally I have some tags that are misspelled or plural/non-plural dups, etc. Any way to make these auto-complete as they are typing like the WP tags do?
Thanks!!!
Another good suggestion, but will take some doing to implement. Part of the problem with this is that all of my Database calls have to load WordPress, so it might be a little slow, particularly since the auto-complete can be a lot of separate trips to the server for little calls to the DB. I believe it actually has to load up all (or a lot) of WordPress just to do that.
The other thought would be to by-pass loading WordPress, but then you don't have the database user/password. And unfortunately, you can't load up wp-config.php without it in turn loading wp-settings.php, which gets the whole ball of wax started loading...so all of that for a simple little auto-complete...over and over and over...it bugs me.
Does anyone know of a way around this? Short of having to harvest the database password and user and store it in some way?
BB
I guess another mechanism would be to send all of the tags to the page and just get them that way...that'd probably be better. Will have to see if there's a jQuery plugin that will do that.
BB