I am using core taxonomy module. I tagged some content, and now I want to show tags after a content body. Basically it should apprear below content body.
Could you please assist me what to do.
This isn't a taxonomy_other issue, and not really a taxonomy issue either. :)
You need to override the theme for your nodes (e.g., edit node.tpl.php in your theme directory).
I realized that ordering was hardcoded at node.tpl.php
I changes the order and it was working fine, but then I updated the theme, and everything went back to their abnormal (for me) position. Off course I did change node.tpl.php, but it is not the best practice.
Comments
Comment #1
rellis commentedThis isn't a taxonomy_other issue, and not really a taxonomy issue either. :)
You need to override the theme for your nodes (e.g., edit node.tpl.php in your theme directory).
See: http://drupal.org/theme-guide/6
Comment #2
achalak commentedThanks rellis,
I realized that ordering was hardcoded at node.tpl.php
I changes the order and it was working fine, but then I updated the theme, and everything went back to their abnormal (for me) position. Off course I did change node.tpl.php, but it is not the best practice.
Thank you again