🏠 Root
/
home
/
a
/
r
/
t
/
artorgp
/
parankhoit
/
wp-content
/
plugins
/
the-events-calendar
/
src
/
views
/
modules
/
Editing: map.php
<?php /** * Template used for maps embedded within single events and venues. * Override this template in your own theme by creating a file at: * * [your-theme]/tribe-events/modules/map.php * * @version 4.6.19 * * @var $index * @var $width * @var $height */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } $style = apply_filters( 'tribe_events_embedded_map_style', "height: $height; width: $width", $index ); ?> <div id="tribe-events-gmap-<?php echo esc_attr( $index ) ?>" style="<?php echo esc_attr( $style ) ?>" aria-hidden="true"></div><!-- #tribe-events-gmap-<?php esc_attr( $index ) ?> -->
Save
Cancel