By darklight on
Hey guys.
Is it possible to have space-seperated tags instead of commas? I've searched for weeks and have not found an answer.
I've tried ActiveTags, and don't like the interface. I simply want to keep the standard interface but use Spaces instead of Commas.
Thanks.
Comments
please give more details,
please give more details, what module ? what content ? block ? ...
but anyway in that module you would probably find a theme_XXX() function that could be overriden in your template.tpl.php
Thanks for replying
I would like to use the default Drupal Taxonomy "Freetagging" system, but have the tags seperated by Spaces, not commas. Could this be done using template.tpl.php?
Thanks.
no. It's much more
no. It's much more complicate.
Two possibilities:
1) You will have to hack the core http://api.drupal.org/api/function/taxonomy_save_term/6
2) Write a small javascript function that transform space into commas when submitting the form
Probably the second solution is wiser ...
But Both solution, will break the autocomplete process. To keep it, you'll have to hack other functions. Wouldn't it be better to display a clear explanation to your users .. instaed of doing something that complicate ;-) ?
Template.tpl is for changing the display, (what I thought you wanted to do) ...
Ahh I see :/ Well, okay
Ahh I see :/
Well, okay nevermind. Thanks for your advice :)