Hello,
I'm using yout List theme, and for events list page I will need to hide some html element based on event category.
For example, with events of a specific category I need to hide the part that shows event date and time:
<?php if ($config->getGlobal('event_date_show')) {
echo '<div class="event-date-time">' . $eventTable->displaydatecolumn() . '</div>'
} ?>
Which is the best way to do this cuastomization? How can I get the category id of an event from this view? Is there any function that already get the category id?
Kind regards,
Matt