Taxonomy Terms are not being displayed in nodes. I think it could be a scope issue.
Here's how I fixed it for my site:
In template.php, change the code in function ifeeldirty_preprocess_node()
from...


  if ($variables['terms']) {
    if ($meta) {
      $meta .= ' '. t('and is filed under !terms.', array('!terms' => $terms));
    }
    else {
      $meta .= ' '. t('This entry is filed under !terms.', array('!terms' => $terms));
    }
  }

to...


  $taxterms = $variables['terms'];
  if ($taxterms) {
    if ($meta) {
      $meta .= ' '. t('and is filed under !terms', array('!terms' => $taxterms));
    }
    else {
      $meta .= ' '. t('This entry is filed under !terms', array('!terms' => $taxterms));
    }
  }

Thanks for the great theme,
Craig

Comments

itangalo’s picture

I experienced the same problems, and I can confirm that code modification worked fine for me.
Thanks to anyone involved.

davidneedham’s picture

Status: Active » Reviewed & tested by the community

I can also confirm that this update to the code works. Can this get copied over to the current version please?

davidneedham’s picture

Status: Reviewed & tested by the community » Closed (fixed)

I dunno if anything has been done, but this ticket has been unchanged for over a year - I'm closing.