Tagged: googlemaps, map, maps
I’ve one map in widget footer, it works BUT if in one page i’ve too a map with Avia builder, the box in the content stay blank.
If i temporaly disable footer widget/map, it shows.
sorry for my english (French)
Hi noe34!
I reported it to Kriesi. For a quick fix insert this code into enfold/functions.php or your child theme functions.php file:
add_filter( 'avia_google_maps_widget_load_api', 'avia_remove_widget_script', 10, 2);
function avia_remove_widget_script($load, $config) {
if(is_page(array(20))) return false;
return true;
}
and instead of 20 insert the id of the page where you use the maps element.
Best regards,
Peter
Thx for quickly support !
Can you reply here when official fix is done ?
thanks.