End of Support for Joomla 3 - Forum closed
[SOLVED] Bildunterschrift jp-expert
Theme: jp-expert
Joomla: 3.9.13
Hallo. Leider werden keine Bildunterschriften angezeigt bzw. figcaption wird nicht erzeugt.
Inhalt -> Beiträge -> "Beitrag XYZ" -> Reiter "Bilder und Links" -> Komplettes Beitragsbild -> Bildunterschrift
Füge ich ein Bild direkt im Beitrag mit Bildunterschrift ein, wird sie angezeigt.
Danke
Joomla: 3.9.13
Hallo. Leider werden keine Bildunterschriften angezeigt bzw. figcaption wird nicht erzeugt.
Inhalt -> Beiträge -> "Beitrag XYZ" -> Reiter "Bilder und Links" -> Komplettes Beitragsbild -> Bildunterschrift
Füge ich ein Bild direkt im Beitrag mit Bildunterschrift ein, wird sie angezeigt.
Danke
by DanielO
Please Log in or Create an account to join the conversation.
Problem solved.
Habe article.php (/templates/jp-expert/layouts) bearbeitet.
geändert zu
Habe article.php (/templates/jp-expert/layouts) bearbeitet.
Code:
<?php if ($image && $image_alignment != 'none') : ?>
<?php if ($url) : ?>
<a class="uk-align-<?php echo $image_alignment; ?>" href="<?php echo $url; ?>" title="<?php echo $image_caption; ?>"><img src="<?php echo $image; ?>" alt="<?php echo $image_alt; ?>"></a>
<?php else : ?>
<img class="uk-align-<?php echo $image_alignment; ?>" src="<?php echo $image; ?>" alt="<?php echo $image_alt; ?>" title="<?php echo $image_caption; ?>">
<?php endif; ?>
<?php endif; ?>
geändert zu
Code:
<?php if ($image && $image_alignment != 'none') : ?>
<?php if ($url) : ?>
<a class="uk-align-<?php echo $image_alignment; ?>" href="<?php echo $url; ?>" title="<?php echo $image_caption; ?>"><img src="<?php echo $image; ?>" alt="<?php echo $image_alt; ?>"></a>
<?php else : ?>
<div class="uk-align-<?php echo $image_alignment; ?>"> <img src="<?php echo $image; ?>" alt="<?php echo $image_alt; ?>">
<?php if ($image_caption != '') { ?>
<p style="max-width:450px";><?php echo $image_caption; ?></p>
<?php } ?></div>
<?php endif; ?>
<?php endif; ?>
Last Edit:4 years 10 months ago
by DanielO
Last edit: 4 years 10 months ago by DanielO.
Please Log in or Create an account to join the conversation.
Moderators: joomlaplates