Hello,
I need to customize the event details page:
In the first table with event properties (title, event date, category, location address, etc.) some labels are missing italian translation.
I checked the code in components\com_dtregister\templates\default\views\event\detail.php file and I found this piece of code:
if (count($view_array['event_properties']) > 0) :
?>
<h3 class="dt-event-box-title"><?php echo JText::_("DT_EVENT_DETAIL"); ?></h3>
<table class="table table-bordered table-striped">
<?php
foreach ($view_array['event_properties'] as $property) {
echo $property;
}
?>
</table>
<?php endif; ?>
but I was not able to find where it fills the single line of the table with values, and where it uses translations for labels.
Could you please tell me where to check?
regard,
Matt