Hello
Your custom template is working now
Also i cleaned a PHP 7.2 notice for you, inside file
components/com_flexicontent/templates/.../snips/eventDetail.php
This is what happened
- your custom template is parsing
Code:
$items->fields['some_date_fieldname']->display
and we have changed the default display for the above
making it configurable in via 2 parameters 1 for item view and 1 for category view
- after changing the above 2 parameters to 'Y-m-d' your custom code works again
It would have been better to have used originally the raw values
Code:
$items->fields[4444]->fieldvalues
but anyway
you can keep your template unchanged
it should not be a problem again since now the field's configuration has been saved
This is not a bug, it works as designed
but i understand that the change of '
default' display format via this update broke your site
and i am sorry that this happened