Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Google Maps API Key Trouble #1110124

    Victoria, THANK YOU! That fixed it.

    Your response was private, but for the benefit of others having this frustrating experience, here is how my problem was solved. There was some google maps API code in the functions.php file of my CHILD THEME. I commented it out and the maps began working again. Below is what my code looked like. If you have similar code, you may want to try commenting it out to see if it helps.

    function ava_googlemaps_apikey() {
    	$prefix  = is_ssl() ? "https" : "http";
        wp_deregister_script('avia-google-maps-api');
    	wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?key=AIzaSyA4IrtA3dmsQSiyWIBhjoFHPnZ1_S9gl5A', array('jquery'), '3', true);
    	wp_enqueue_script('avia-google-maps-api');
    }
    add_action('init', 'ava_googlemaps_apikey');
    • This reply was modified 5 years, 4 months ago by zac51.
    in reply to: Logo overlapping background image in mobile browsers #451392

    That worked! Thank you!

    in reply to: No Page Options #444651

    Thanks. Updated. However, I think my problem was that those options are no longer below the editor. They are in tabs in the AVIA Layout Builder. Found what I needed. Thanks.

Viewing 3 posts - 1 through 3 (of 3 total)