The following code is the default for the method theme_jcalendar_view which is a theme function.
<?php
function theme_jcalendar_view($node) {
$output = node_view($node, TRUE);
$output .= '<div id="nodelink">'. l(t('more', array(), $node->language), calendar_get_node_link($node)) .'</div>';
return $output;
}
?>
In my theme I want to output the full body of the node rather than the teaser? How would I do this? I think I add the method to my custom template.php file with the name myThemeName_theme_jcalendar_view.
Thanks
Linda