I've created a vocabulary 'tags' which allows freetaging, no hierarchy, not required. After that I've created a new field 'Tags' (field_tags), type 'Taxonomy Field', widget 'Autocomplete' with the help of CCK and your great module. Then I've changed the display options for this field: label -> inline, teaser and full -> as link.

When I create a new node or edit an existing node and click on preview all labels and fields are displayed properly. But the label for the content_taxonomy field (field_tags) is missing. The values are indented a little bit but no label is displayed. This happens in IE 7 and Firefox 2.0.0.11. As soon as I save the node and view it the label is displayed. Can you confirm this as a bug? Btw: I've tested it with the Garland theme and my own theme.

Comments

bjacob’s picture

I think I've found the "problem". The following HTML code is used to display the label:

<div class="field-label-inline">Industry:&nbsp;</div>

When I change the code to

<div class="field-label-inline-first">Tags:&nbsp;</div>

the label is displayed (using Firebug). I've checked the CSS files and found the following code in /sites/all/modules/cck/content.css:

.field .field-label-inline,
.field .field-label-inline-first {
  display:inline;
}

IMHO it should work! What's going on?

Gábor Mayer’s picture

+ problem at preview if the field is multiple. the field is showing more than once when multiple options selected.

magnus’s picture

Status: Active » Closed (won't fix)

Cleanup of old issues. According to maintainer: "active development is only done for the 6.x branch! 5.x is not supported any more".
Open a new issue if problem still exist.