@normanlacy:
The complete path is:
wp-content/plugins/comprehensive-google-map-plugin/assets/js
Regards,
Michael
// coastlog.net
@jacklee2: If all else fails, delete the following lines from assets/js/cgmp.framework.js:
if (version < 1.3) {
alert(CGMPGlobal.errors.oldJquery);
//Logger.fatal("Client uses jQuery older than the version 1.3.0. Aborting map generation ..");
return false;
}
Don’t forget to make a backup first.
Regards,
Michael
// coastlog.net
Quick workaround:
You need to edit the file assets/js/cgmp.framework.min.js
Find the line
if(1.3>m)return alert(i.oldJquery),!1;
and change it to:
if(1.1>m)return alert(i.oldJquery),!1;
Then open the file assets/js/cgmp.framework.js
Find
var version = parseFloat($.fn.jquery);
if (version < 1.3) {
and change that to:
var version = parseFloat($.fn.jquery);
if (version < 1.1) {
That should do the trick…
Regards,
Michael
// coastlog.net