Skip to content

Instantly share code, notes, and snippets.

@erdivyang10
Last active February 28, 2019 05:21
Show Gist options
  • Save erdivyang10/3dc952bd82880abc75c541403cdb431f to your computer and use it in GitHub Desktop.
Save erdivyang10/3dc952bd82880abc75c541403cdb431f to your computer and use it in GitHub Desktop.
Disable Enfold Theme Google maps script using a Filter
//A filter to disable the google maps script in Enfold Theme. Need to insert this filter on activated Wordpres theme functions.php
add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
function disable_google_map_api($load_google_map_api) {
$load_google_map_api = false;
return $load_google_map_api;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment