Hi,
I've posted this in http://drupal.org/node/918864 as a support request to Author Pane, but it's beginning to look like there's something important missing in Content Profile module itself. Is CP making the taxonomy terms of it's node available to be used in other parts, like Author Pane? If no, then, logically, it should.

There's plenty of documentation on how to print CCK fields from CP into Author Pane, but what about the taxonomy terms of that CP node? There's no documentation or code examples available, no matter how much I searched.

if we print inside node-profile.tpl.php

<?php if (count($terms)): ?>
  <?php print t('Interests ') . $terms; ?>
  <?php endif; ?>

... it works.

But if we try to do the same thing in author-pane-block.tpl.php with

<?php $node = content_profile_load('profile', $account_id); ?>  
   <?php if (count($node->terms[0]['value'])): ?>
  <?php print t('Interests ') . $node->terms[0]['value']; ?>
  <?php endif; ?> 

...nothing shows up!

Would you be so kind as to provide an example of a working code of how to get this to work? (given that there's no example relating to taxonomies, I'm sure some others will find it useful in the future)

Many thanks!