Hallo zusammen,
meine Idee ist, die Events in einer "upcoming"-Liste mit einem Tooltip zu versehen, der die Event-Details anzeigt.
Dazu habe ich wie hier beschrieben die Tooltips eingebunden, die so weit auch funktionieren.
Dort wird allerdings nur sehr wenig HTML eingebunden und auch keinerlei PHP.
Mein Versuch, den Event-Link im Template "event-upcoming" mit den Event-Details zu versehen:
funktioniert leider nicht. Ich vermute, dass sich die Ausgabe hier u.a. an den vielen zusätzlichen Anführungszeichen stört, steh aber ein bisschen auf dem Schlauch.PHP-Code:
<a class="tool" rel="<h1><?php echo $this->title; ?></h1><p class="info"><?php echo $this->date; ?></p><div class="ce_text"><?php if (!$this->addBefore): ?><?php echo $this->details; ?><?php endif; ?><?php if ($this->addImage): ?><figure class="image_container<?php echo $this->floatClass; ?>"<?php if ($this->margin || $this->float): ?> style="<?php echo trim($this->margin . $this->float); ?>"<?php endif; ?>><?php if ($this->href): ?><a href="<?php echo $this->href; ?>"<?php echo $this->attributes; ?> title="<?php echo $this->alt; ?>"><?php endif; ?><img src="<?php echo $this->src; ?>"<?php echo $this->imgSize; ?> alt="<?php echo $this->alt; ?>"><?php if ($this->href): ?></a><?php endif; ?><?php if ($this->caption): ?><figcaption class="caption" style="width:<?php echo $this->arrSize[0]; ?>px"><?php echo $this->caption; ?></figcaption><?php endif; ?></figure><?php endif; ?><?php if ($this->addBefore): ?><?php echo $this->details; ?><?php endif; ?></div>" href="<?php echo $this->href; ?>" title="<?php echo $this->title; ?> (<?php if ($this->day): echo $this->day; ?>, <?php endif; echo $this->date; if ($this->time): ?>, <?php echo $this->time; endif;?>)"<?php echo $this->target; ?>><?php echo $this->link; ?></a>
Hat das vielleicht schonmal jemand hinbekommen?
Danke für jede Anregung!
Gruß Alex