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');
That worked! Thank you!
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.