golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/views/blocks/parts
⬆️ Go Up
Upload
File/Folder
Size
Actions
details.php
6.06 KB
Del
OK
map.php
636 B
Del
OK
organizer.php
2.24 KB
Del
OK
venue.php
1.28 KB
Del
OK
Edit: map.php
<?php /** * Map template part for the Event Venue block * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/blocks/parts/map.php * * See more documentation about our Blocks Editor templating system. * * @link http://evnt.is/1aiy * * @version 4.7 * */ if ( ! tribe_embed_google_map() ) { return; } $map = tribe_get_embedded_map(); if ( empty( $map ) ) { return; } ?> <div class="tribe-block__venue__map"> <?php // Display the map. do_action( 'tribe_events_single_meta_map_section_start' ); echo $map; do_action( 'tribe_events_single_meta_map_section_end' ); ?> </div>
Save