i had that problem too. i use enfold theme with a child theme so i can have changes on some template files.
i then use ACF to load a google maps field in post-edit. But for some reason the map did not appear as long as i use enfold theme. there is no JS error in console. but i found out, that you just need a very simple filter to make it work:
add_filter( 'avf_load_google_map_api', '__return_false' );
put that in your child theme functions.php and google maps will work.