Mladen

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Google Maps API Error #12386
    Mladen
    Participant

      Found the problem. In my functions.php i had function to remove script version:

      // Remove Script Versionfunction _remove_script_version( $src ){
      $parts = explode( ‘?’, $src );
      return $parts[0];
      }
      add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
      add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );

      After removing it everything is working fine. Great plugin.

    Viewing 1 post (of 1 total)