Please tell me how to made such things in one line, with materials in taxonomy term?
For example i opens http://site.net/taxonomy/term/1 and see
-----------
Article
posted april 24th, 2008 by gralexey taxonomyname
comment (2) 1 file
i'd like to see:
-----------
Article
april 24th, 2008 by gralexey|taxonomyname|comment (2)
I'm don't know coding, please help

Comments

gralexey’s picture

Up!!!

gralexey’s picture

Up!!!

Anonymous’s picture

The positioning of post info and taxonomy terms is controlled by your theme. In this case we're talking about the theme for your node. So you will need to make adjustments to the node.tpl.php file for your active theme.

Somewhere in that file you will find something like:

<?php if ($taxonomy): ?>
      <div class="terms"><?php print $terms ?></div>
    <?php endif;?>

This code controls where your taxonomy terms get printed.

You will also find something like:

<?php if ($submitted): ?>
      <span class="submitted"><?php print t('Submitted by !username on !date', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>

This code controls the display of your node submission info.

You will need to cut the first bit of code and paste it directly after the second bit of code, but inside the span tags I believe.

Rob Safuto
Learn By The Drop is a place to learn Drupal. If you're new to Drupal I recommend having a look at my Beginner's Guide To Drupal.