Hi Jody,

Just want to make sure that you realize the "Submitted by cleveland on Tue, 2006-09-19 14:50." stuff is not part of the taxonomy display.  That is the node submission information that comes from

<?php print $submitted?>

in node.tpl.php.  If this is what you are referring to as different, then you should be able to just add that code to your multiflex node.tpl.php where you want it to show up.

If I'm on the wrong path, let me know.

- Addi

Jody Cleveland wrote:
Hello,

  
In a phptemplate theme, the position of the default variable $terms 
determines where the terms will actually appear. $terms is 
shorthand for 
"pipe-delimited set of all terms assigned to this node". If 
you'd like 
an entirely different display, you don't HAVE to use $terms. 
$terms is 
just shorthand for:

  theme('links', $taxonomy, array('class' => 'links inline')),

but you have access to the entire raw data of a taxonomy, to 
display it 
however you'd like (presuming you know the PHP to do so). You can see 
this raw gobbledygook data by adding the following to your 
node.tpl.php:

  <?php print_r($taxonomy); ?>
    

I looked at the node.tpl.php for both bluemarine, and multiflex. But,
they both say exactly the same thing:
<span class="taxonomy"><?php print $terms?></span>

If they both have the same thing in node.tpl.php, why would they display
different things? Ideally, I'd like multiflex to display the taxonomy
the same as bluemarine does.

- jody
_______________________________________________
themes mailing list
themes@drupal.org
http://lists.drupal.org/mailman/listinfo/themes