Reply To: Google Maps API Error

Home Forums MapPress Support Google Maps API Error 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.