I'm trying to use the newest JA Purity IV Template of 21 Apr 2025 version 1.2.4. On my mainpage I have featured articles, nothing fancy, just an article. Now only the titles of the featured articles show up. To make this work again, I've made the following change to ja_purity_iv/html/com_content/featured/default_item.php:
<!-- Intro Text -->
<?php if ($params->get('show_intro')) : ?>
<div class="item-intro">
<?php echo $this->item->introtext ?>
</div>
<?php else : // This is new for text under featured items?>
<div class="item-fulltext">
<?php echo $this->item->text; ?>
</div>
<?php endif ?>
Maybe this can be changed a better way, but this works for me for now. Or is there an other solution to this?