Fixed Extra Template option in List

sunnyjey

Active Member
Anyone has idea why Extra Template option in Group By Tab in List configuration is no more working ? It was quite handy to inject some useful related data and links.
Screenshot 2024-11-16 at 4.01.15 PM.png
 
Obvioulsy it got lost at some point (and nobody else used it until now ;) )
In components\com_fabrik\layouts\list\fabrik-group-by-heading.php
add
Code:
<?php if (!empty($d->extra)) : ?>
<div class="groupExtra">
    <?php echo $d->extra; ?>
</div>
<?php endif; ?>
at the end.
 
Back
Top