Hello,
This is a great calendar but having an issue with the way the Organizer and Website are displayed on a single event page (using single.php).
The relevant bit is here:
<?php if ( tribe_get_organizer_link( get_the_ID(), false, false ) ) : ?>
<dt class="event-label event-label-organizer"><?php _e('Organizer:', 'tribe-events-calendar') ?></dt>
<dd class="vcard author event-meta event-meta-author"><span class="fn url"><?php echo tribe_get_organizer_link(); ?></span></dd>
<?php elseif (tribe_get_organizer()): ?>
<dt class="event-label event-label-organizer"><?php _e('Organizer:', 'tribe-events-calendar') ?></dt>
<dd class="vcard author event-meta event-meta-author"><span class="fn url"><?php echo tribe_get_organizer(); ?></span></dd>
<?php endif; ?>
I would like to be able to separate the Organizer and Website - they are not always related so this often leads to confusion for the people getting info on our events.
Is there a way to simply display the text in the Organizer and Website fields separately as they are entered on the Event edit page?
Thanks