Hi guys,
To fix this, open up functions.php and change the function on line 949 with the following:
function map_embed($address) {
if (!is_string($address))die("All Addresses must be passed as a string");
$address = str_replace(" ", "+", $address); // replcae all the white space with "+" sign to match with google search pattern
$url = "http://maps.google.com/maps/api/geocode/json?sensor=false&address=$address";
$response = file_get_contents($url);
$json = json_decode($response,TRUE); //generate array object from the response from the web
$_coords['lat'] = $json['results'][0]['geometry']['location']['lat'];
$_coords['long'] = $json['results'][0]['geometry']['location']['lng'];
return $_coords;
}
This will be in the next update.
– Ed