By mattwmc on
Created some tags for a page.
The taxonomy field was listed as the first so I moved it down under the body as I would like the tags there.
Well, the position of the tags do not change no matter where I move the field.
Also, turned off Javascript to manually assign a weight, but still nada.
I could css it to do down a certain amount, but if the body changes it could overlap the taxonomy as the taxonomy for some reason comes before the body.
Any ideas? Thanks.
Comments
=-=
after altering a theme file did you clear the cache tables?
which theme is in use? which file are you altering?
Yeah, flushing the cache
Yeah, flushing the cache didn't do a thing.
Here I found the answer:
http://qampanswers.com/question/40/how-do-i-alter-position-tags-drupal
You need to edit your themes node.tpl file
Look for something similar to this:
Place it after content (was directly before in mine):
Cool!
I'm not sure what you
I'm not sure what you referred to you altered in the first instance (the position in the node edit form?) but yes, the taxonomy output, unlike CCK fields, is not part of the $content variable, and thus you can't change the position of it in Drupal directly.
Using the taxonomy content module, together with I believe taxonomy hide, you can make this a whole lot more flexible.
Taxonomy term - category position top bottom node - page
Also, look for "terms" instead of taxonomy in some themes and position it after content as mattwmc states