Also the "#10;								" part is a bit strange.
Si prega Accedi o Crea un account a partecipare alla conversazione.
Si prega Accedi o Crea un account a partecipare alla conversazione.
src="https://www.google.com/maps/embed/v1/place?key=' . trim($embedKey) . '
&q=' . urlencode(strip_tags($item->address)) . '" allowfullscreen>
src="https://www.google.com/maps/embed/v1/place?key=' . trim($embedKey) . '&q=' . urlencode(strip_tags($item->address)) . '" allowfullscreen>
Si prega Accedi o Crea un account a partecipare alla conversazione.
Thanks for this report, i will review it for next 3.7.3I just reviewed your code and found the cause of the whitespace bug. Your code looks like this(googlemaps.php):
src="https://www.google.com/maps/embed/v1/place?key=' . trim($embedKey) . ' &q=' . urlencode(strip_tags($item->address)) . '" allowfullscreen>
As you can see you added whitespaces within the php string tags. It should look like this:
src="https://www.google.com/maps/embed/v1/place?key=' . trim($embedKey) . '&q=' . urlencode(strip_tags($item->address)) . '" allowfullscreen>
This will solve your problem.
=> this is because of the default setting from update to 3.7.2 from version before 3.7.2 (dev is acting there as a previous version to 3.7.2, and not officially released ). So the script to update setting for older version than 3.7.2 won't run anymore later
Maybe another problem: I have updated from 3.7.2-dev to 3.7.2 . This resetted the "Maps Service" from embed to Javascript. This shouldn't happen in future releases as this can be a cause for very high costs!
Si prega Accedi o Crea un account a partecipare alla conversazione.
Lyr!C ha scritto:
But the google maps is still working even with the php space... so where is the problem for you ?
Si prega Accedi o Crea un account a partecipare alla conversazione.
Si prega Accedi o Crea un account a partecipare alla conversazione.