When I added an image to an article-node the display of taxonomy tags changed order and moved ahead of the body-content. After logging out, tags were below body-content again. This occurs only in fullpageview.

Comments

derjochenmeyer’s picture

Version: 7.0-alpha1 » 7.x-dev

Confirming this bug for 7.x-dev

- Before logging in the "Tags" are displayed below the node body
- After logging in the "Tags" are displayed above the node body

To reproduce this:

  1. Install fresh D7
  2. Create an Article node (with Title, Body, Image, Tags)
  3. View the Article: Tags are displayed directly below the Image and ABOVE the Body.
  4. Logout: Tags are displayed BELOW the Body.
derjochenmeyer’s picture

I looked into this.

After installation $content['body'] and $content['taxonomy_tags'] have [#weight] => 0.

Visiting admin/structure/types/manage/article/display and reordering the weights, solves the problem, once you save the settings.

So, to fix this we need to add a default display order ([#weight] => 1) for $content['taxonomy_tags'].

derjochenmeyer’s picture

This has to be added to profiles/default/default.profile

It seems field_config_instance needs a default entry for the field 'taxonomy_tags'

It seem the weight is stored in data (serialized)?

Anybody who has ideas on this?

Anonymous’s picture

Assigned: Unassigned »
Anonymous’s picture

Assigned: » Unassigned
lgreer’s picture

Status: Active » Closed (cannot reproduce)

I tested this on 7.4 and could not reproduce the problem. The tags displayed below the description without having to log out and log back in again.