Hello,
Currently, the venue details of a single event in the List view are merged and listed next to each other (Venue name + street name + city + postal code + country + google map link).
Instead of this, I need to split this to have each information on a separate line to display it this way :
- Venue name
- Street name
- Postal code + City
- Google Map link
Therefore, based on what’s explained on Themer’s Guide, I wanted to bring changes to the-events-calendar\src\views\list\single-event.php.
The problem is that this whole information is stored in one function as shown here below :
<?php if ( $venue_details ) : ?>
<!-- Venue Display Info -->
<div class="tribe-events-venue-details">
<?php echo implode( ', ', $venue_details ); ?>
</div> <!-- .tribe-events-venue-details -->
<?php endif; ?>
Can you explain me how to split the venue details please ?
Thank you.