I am importing a gmail calendar with ical. What all fields are imported? My drupal calendar only shows the title of the event. I would also like it to show the events location and description. Is that possible?

thanks

Comments

KarenS’s picture

Status: Active » Fixed

The ical import will pick up whatever is in the ical file. If there is a description it will be picked up. Because many descriptions are quite long, they don't display on the 'Month' view, but they should show up in the 'Day' view.

This is controlled in theme_calendar_calendar_node(). Towards the bottom you will see:

   // Remote nodes may come in with lengthy descriptions that won't fit
   // in small boxes of year, month, and week calendars.
   if ($type != 'calendar_node_day' && $node->remote) {
     $node->teaser = '';
   }

If you want to see the descriptions in the month view, you can remove that line in your custom theme.

Anonymous’s picture

Status: Fixed » Closed (fixed)