I use 6.x-1.x-dev.

Any patch?

Thanks.

Comments

chaps2’s picture

For future reference you could put something like this in your theme's template.php file:

/**
 * Preprocess node.
 */
function phptemplate_preprocess_node(&$vars) {
  // add CT form if teaser
  if ($vars['teaser']) {
    $vars['content'] .= community_tags_node_view($vars['node'], TRUE);
  }
}

This is where it would be nice to have more options when calling community_tags_node_view() as proposed here: #548480: Expand API to include customizable form.

chaps2’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.