ich habe die event_upcoming angepasst und habe dir eine PN geschrieben.
PHP-Code:
<div class="event layout_upcoming<?= $this->classUpcoming ?>">
<time datetime="<?= $this->datetime ?>" class="date"><?= $this->date ?><?php if ($this->time): ?> <?= $this->time ?> Uhr<?php endif; ?></time>
<br><strong>Lehrgangsbezeichnung: <?= $this->link ?></strong>
<br><span class="location">
<?php if ($this->moveReason): ?>
<strong>Sporthalle:</strong> <?php echo $this->moveReason; ?>
<?php else: ?>
<strong>Sporthalle:</strong> <?php echo $this->location; ?><?php if ($this->address): ?>, <?= $this->address ?><?php endif; ?>
<?php endif; ?>
<?php if ($this->location_contact): ?>
<br><strong>Trainer:</strong> <?php echo $this->location_contact; ?><?php endif; ?>
</span>
</div>
<?php
// This template is used as an event list template by default, so we only add
// JSON-LD data in case this is an event without a reader
if (!$this->hasReader) {
$this->addSchemaOrg($this->getSchemaOrgData());
}