Related to https://www.drupal.org/node/2112641, it looks like the only output you get by default is the Title and Date. It would make this module much require much less configuration if the view actually output all the fields that are configured in the view. For instance, I have some taxonomies associated with my calendar items that I would like to display on the calendar. It seems like it wouldn't be too hard to use the $view->row output for this instead of hard coding in just the title and time.

I'm willing to help out figuring this out -- just haven't quite got it figured out yet. Thanks for your work on this module, it's much appreciated and a big need! :)

Ben

Comments

bgrobertson created an issue.

bgrobertson’s picture

This was much easier looking at this with fresh eyes. In calendar-datebox.tpl.php, I got rid of everything between lines 42 - 47. Here's the original:

<span class="event-info">
 <span class="event-time"><?php print l($e->date_start->format("h:i A"), $e->url); ?></span>
 <?php if (isset($e->title) && !empty($e->title)): ?>
    <span class="event-title"><?php print l($e->title, $e->url); ?></span>
 <?php endif; ?>
</span>

I replaced it with:

<span class="event-info">
  <?= $e->rendered; ?>
</span>

While I can override the file in my template, I think it would make more sense as the default to pull in the user configured fields.