I use 6.x-1.x-dev.
Any patch?
Thanks.
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.
Automatically closed -- issue fixed for 2 weeks with no activity.
Comments
Comment #1
chaps2 commentedFor future reference you could put something like this in your theme's template.php file:
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.
Comment #2
chaps2 commented