-
AuthorPosts
-
January 3, 2019 at 3:26 am #1049420
I have inserted the Enfold Google Maps Widget into Footer Column 2 of https://goodshepherdbangkok.com/, but a Google Error message is displayed: “This page can’t load Google Maps correctly. Do you own this website?” If you click OK the map appears.
Any idea why this happens?
January 3, 2019 at 7:56 am #1049523Hey NevNic,
You haven’t added an API key under Enfold->Google Services, could you try that out first please? Also make sure that you add billing details to the Google account associated with the API key.
Best regards,
RikardJanuary 3, 2019 at 11:59 am #1049579Thank you Rikard.
I suggest that when you add the Google Maps widget, there should be a warning message that you need to add an API key
January 4, 2019 at 5:45 am #1049807Hi,
Sounds good. Google requires every users to generate an API key before embedding a map now. This might help: https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelJanuary 6, 2019 at 11:06 pm #1050659Dear Kriesi-Team,
first of all do I wish your wntire team a Happy, Healthy & Succesfull 2019! And also like to thank you for your excellent job done on the latest Enfold update.
I reply to this subject as somehow I could not find a way how to ask with a corresponding subject and also did not find similar request in the forum.
I have read the documentation, but seem to fail to understand how I can customize the enfold google maps widget in the same way as the google maps option wirhin the advanced layout builder. E.g. colouring the map the same way, etc.Is it only possible with the plugin by snazzy maps which you linked in the documentation?
Thanks a lot for your support.
Have great evening / day.
Yours sincerely,
Sirpa- This reply was modified 5 years, 10 months ago by Sirpa.
January 8, 2019 at 3:33 pm #1051416Hi,
Those options are not available for the map widget but you can use the “avf_google_maps_data” to adjust the map options.
This example adjusts the map saturation:
add_filter( 'avf_google_maps_data', 'avia_maps_widget_saturation', 999, 4 ); function avia_maps_widget_saturation ( $data, $context, $object, $args ) { if($data[0]['shortcode'] === NULL || $data[0]['shortcode'] != 'av_gmap_location') { $data['saturation'] = '-50'; } return $data; }
Related thread: https://kriesi.at/support/topic/enfold-google-maps-widget-saturation/#post-981558
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.