Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #242928

    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)

    #243709

    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

    #243829

    Thx for quickly support !
    Can you reply here when official fix is done ?

    thanks.

    #252668

    Hi!
    version 2.7 should fix the problem ;)
    Regards,
    Kriesi

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘[BUG] Google maps error when 2 maps at both’ is closed to new replies.