Hi,
my attempts at correctly theming the separate calendar views (Month, Week, Day) has thus far been a mixed bag and something that seems strangely un-addressed here in the deep knowledge well of the drupal forums.
say i have the cck fields:
field_titel, field_autor, field_institution
and for each of the following calendar views i would like to display one or more of these in different configurations:
function phptemplate_calendar_calendar_node($node, $type) {
if (!$node->local && $type == 'calendar_node_month') {
function phptemplate_calendar_calendar_node($node, $type) {
if (!$node->local && $type == 'calendar_node_week') {
function phptemplate_calendar_calendar_node($node, $type) {
if (!$node->local && $type == 'calendar_node_day') {
i've tested w/ print_r($node);
, and all values are available. in all honesty, i'm just not much of a coder and don't really know how to get started puzzling together the info i've attempted to coble together from the following threads (the last one dealing actually w/ events, but...)
it seems as tho it would a relatively straight forward thing to accomplish, but i'm not getting anyway - would really appreciate your help.