Hi, your theme is in conflict with this plugin https://codecanyon.net/item/chauffeur-booking-system-for-wordpress/21072773
Basically, when BA Book Everything plugin is active, I am getting this kind of error:
You have included the Google Maps JavaScript API multiple times on this page. This may cause unexpected errors.
Can you advise how to disable google map API in your theme/plugin? I won’t be using it
I have added this code to file functions.php of child theme, but it does not work
function remove_google_api_scripts()
{
wp_dequeue_script( 'babe-google-api' );
wp_deregister_script('babe-google-api');
}
add_action( 'wp_enqueue_scripts', 'remove_google_api_scripts', 11 );
Thanks!