I wonder if it would be possible to use just the "parent" and "add a term" part of the form? I'd love to be able to insert just one term into a parent term without confusing the user with the checkboxes above. I tried getting rid of just the top bit of the form in CSS but failed. Any ideas?

Comments

rconstantine’s picture

Perhaps you could explain further. I don't quite understand your use case. If you have the ability, try to mock up some screen shots of what you are trying to do.

rconstantine’s picture

Category: feature » support
Status: Active » Fixed

You should find that once the new release comes out, all you have to do is override the theme function to remove or disable the checkboxes. I have added the ability to restrict freetagging to only existing branches (can't branch a leaf), as well as disallowing new top-level branches. So if you disallow users to check off leaf terms via a theme override function, you'll be all set. Once the new release comes out, if you have trouble, re-activate this issue.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

eggthing’s picture

The new features are great!!!

But now I would like to remove the "Parent:" checkbox from the form as I only want one heirarchy anyway. I tried this in node-type.tpl.php

<DIV ID="nonparent">
<?php
print drupal_render($form['field_otherartists[tid][select_parent]']);
?>
</DIV>
<?php
print drupal_render($form);
?>

And I've got this in my stylesheet which has worked for me in the past (I was able to remove the title field) but doesn't seem to like working for the parent filed in cck tssu:

#nonparent {
display: none;
}

div#nonparent {
display: none;
}