Home › Forums › MapPress Support › Google Maps API Error › Reply To: Google Maps API Error
April 28, 2013 at 3:36 am
#12386
Found the problem. In my functions.php i had function to remove script version:
// Remove Script Versionfunction _remove_script_version( $src ){
$parts = explode( ‘?’, $src );
return $parts[0];
}
add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );
After removing it everything is working fine. Great plugin.