Ja, das habe ich eingebaut, funktioniert auch soweit. Hab den Code von News-Latest rüberkopiert:
	Code:
	  <?php if ($this->hasText): ?>
    <?= $this->text ?>
  <?php else: ?>
    <div class="ce_text block">
		<?php if ($this->addImage): ?>
			<figure class="image_container<?= $this->floatClass ?>"<?php if ($this->margin): ?> style="<?= $this->margin ?>"<?php endif; ?>>
			  <?php if ($this->href): ?>
				<a href="<?= $this->href ?>"<?= $this->attributes ?> title="<?= $this->alt ?>">
			  <?php endif; ?>
			  <?php $this->insert('picture_default', $this->picture); ?>
			  <?php if ($this->href): ?>
				</a>
			  <?php endif; ?>
			  <?php if ($this->caption): ?>
				<figcaption class="caption"><?= $this->caption ?></figcaption>
			  <?php endif; ?>
			</figure>
		<?php endif; ?>
				<?= $this->teaser ?>
    </div>
 
Ist es so, dass für die Newsdetails der gesamte Inhalt inkl. Bild mit <?= $this->text ?> ausgeben wird???