Hi there.
In one of the sites I'm starting to build with Drupal I'm creating the taxonomy terms in order to categorize the blog.
I need 4 categories for the blog organized this way:
--Category1
--Category2
--Parentof3and4
---- Category3
---- Category4
So, Category3 and Category4 are children of "Parentof3and4", but "Parentof3and4" won't be a blog, it will be a static page with some introduction and 2 links pointing to Category3 and Category4 blogs respectively.
Now, the problem is that with this schema I think it is mandatory to create the term "Parentof3and4" in order to create Category3 and Category4 as children of it. And when I'm adding a new blog entry "Parentof3and4" is selectable and I want it to be some sort of html optgroup (non-selectable).
Is this possible?
or
How can I achieve this?
Thanks in advance
Comments
Hey look at this
Try this http://drupal.org/node/76500#comment-2193734
OR
use http://drupal.org/project/hierarchical_select module
Thanks RK! The hierarchical
Thanks RK!
The hierarchical select was exactly what I was looking for. It worked like a charm.
Regards