Hello,
When the plugin option: Allow Users to Select Plugins: NO is selected the column: plugins_subscribed_to of table: _jma_subscribers is not filled.
This can easily be soved in components\com_jmailalerts\views\emails\tmpl\default_alerts_bs5.php
using two modifications:
//pch 22.5.'24 correction for new subscription with Allow Users to Select Plugins = No
// if ($altdata[3] == 1)
// BS4+ d-none, BS3: invisible; for BS3 define in CSS: .d-none {display: none;}
// {
?>
<?php if ($altdata[3] == 1) { ?> <div class="card-body" <?php } ?>
<?php if ($altdata[3] <> 1) { ?> <div class="card-body d-none" <?php } ?>
<?php
//pch 21.5.'24 correction for new subscription with Allow Users to Select Plugins = No
// }?>
<!--jmail-expand ends-->
See attachment for the modified file.
regards,
Peter