HEX
Server: Apache
System: Linux pdx1-shared-a2-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: dh_hwg2wc (6369923)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/dh_hwg2wc/fnaluxury.com/wp-content/themes/houzez/template-parts/realtors/agency/map.php
<?php
$agency_address = get_post_meta( get_the_ID(), 'fave_agency_address', true ); 

if( ! empty( $agency_address ) ) {
	if(houzez_get_map_system() == 'google') {
		$mapData = houzez_getLatLongFromAddress($agency_address);
	} else {
		$mapData = houzezOSM_getLatLngFromAddress($agency_address);
	}
}

if(houzez_get_map_system() == 'google') {
	wp_enqueue_script('houzez-agent-single-map', HOUZEZ_JS_DIR_URI. 'single-agent-google-map.js', array('jquery'), '1.0.0', true);
} else {
	wp_enqueue_script('houzez-agent-single-map', HOUZEZ_JS_DIR_URI. 'single-agent-osm-map.js', array('jquery'), '1.0.0', true);
}

if( ! empty( $mapData ) ) { ?>
	<div id="houzez-agent-sidebar-map" data-lat="<?php echo esc_attr($mapData['lat']); ?>" data-lng="<?php echo esc_attr($mapData['lng']); ?>"></div>
<?php } ?>