cipher87

Google Map API turn off

Mar 16th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /*
  2.  * Turn off googlemap api
  3.  * ref: http://www.kriesi.at/support/topic/problem-with-a-plugin/#post-761759
  4.  */
  5. add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
  6.   function disable_google_map_api($load_google_map_api) {
  7.   $load_google_map_api = false;
  8.   return $load_google_map_api;
  9. }
Add Comment
Please, Sign In to add comment