How do I alter the position of tags in drupal
I have recently installed drupal and like it pretty much but can't figure out how to move the tags output to the bottom of the post.
tags: tag,tag2,tag3
post content
to this
post content
tags: tag,tag2,tag3

Replies
template files
You need to edit your themes node.tpl file
sites/all/themes/(your theme name)/node.tpl
(If your template contains various node-???.tpl files you may have node types for different content types and will have to make the changes in multiple files to work on all pages that display taxonomy or tags)
Look for something similar to this
<?php if ($taxonomy): ?><div class="terms"><?php print $terms ?></div>
<?php endif;?>
Post new comment