Hi,
Now, I can have the node type to be set automatically with specified term.
Can i just hide this list-down menu (list of the terms) from node creation to avoid confusion to user?

Comments

Rowanw’s picture

It should be easy to find the CSS ID of the select field and hide it with CSS (display: none).

najibx’s picture

Thank you. I know, this is not the place to ask CSS tricks, but it might be relevant to "Taxonomy Defaults to be hidden"

I was able to hide the list form. After looking at the HTML source, i come out with the following for my CSS.style in my particular theme. However, it only hide the form but not the "Sites:" text and the row. Yes, the Taxonomy Defaults come into action, accordingly.

.form-item #edit-taxonomy-2 {
  display: none;
}
niklp’s picture

+1 for a simple hook_form_alter to remove the term selector from the node edit screen programmatically.

heine’s picture

Perhaps http://drupal.org/node/77980 is sufficient. Unfortunately, you have to select at least one node type to satisfy the required property of the node type selection.

heine’s picture

Status: Active » Fixed

No feedback re http://drupal.org/node/77980, closing.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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