iCagenda user guide and tips
The custom fields can be easily displayed in your custom theme pack.
To display filled custom fields for an event, in the event details view, follow instructions below.
<?php // Custom Fields ?> <?php if ($CUSTOM_FIELDS): ?> <?php foreach ($CUSTOM_FIELDS AS $FIELD): ?> <?php if ($FIELD->value) : ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo $FIELD->title; ?></div> <div class="ic-divCell"><?php echo $FIELD->value; ?></div> </div> <?php endif; ?> <?php endforeach; ?> <?php endif; ?>