Moin,
ist es möglich im Inhaltselement Hyperlink die Überschrift (H1-H5) durch einen Absatz (<p></p>) zu ersetzen? Bzw. was müsste denn da im entsprechenden Template geändert werden?
Hintergrund ist, dass ich eine Seite (bzw. mehrere) mit vielen Hyperlinks habe (Vorschaubilder zu You-Tube-Videos). SEO Analyse-Tools meckern dann rum, wegen zu vieler Überschriften.
Hier der Code des Templates:
Code:<?php $this->extend('block_searchable'); ?> <?php $this->block('content'); ?> <?php if ($this->useImage): ?> <figure class="image_container"> <?= $this->embed_pre ?> <a href="<?= $this->href ?>"<?php if ($this->linkTitle): ?> title="<?= $this->linkTitle ?>"<?php endif; ?> class="hyperlink_img"<?= $this->attribute ?><?= $this->target ?><?= $this->rel ?>><?php $this->insert('picture_default', $this->picture); ?></a> <?= $this->embed_post ?> <?php if ($this->caption): ?> <figcaption class="caption"><?= $this->caption ?></figcaption> <?php endif; ?> </figure> <?php else: ?> <?= $this->embed_pre ?> <a href="<?= $this->href ?>" class="hyperlink_txt" title="<?= $this->linkTitle ?>"<?= $this->attribute ?><?= $this->target ?><?= $this->rel ?>><?= $this->link ?></a> <?= $this->embed_post ?> <?php endif; ?> <?php $this->endblock(); ?>

Zitieren
