had to remove slashes in wp-google-map-plugin.php file:
Currently:
if ( ! defined( ‘WPGMP_CSS’ ) ) {
define( ‘WPGMP_CSS’, WPGMP_URL.’/assets/css/’ );
}
if ( ! defined( ‘WPGMP_JS’ ) ) {
define( ‘WPGMP_JS’, WPGMP_URL.’/assets/js/’ );
After changes:
if ( ! defined( ‘WPGMP_CSS’ ) ) {
define( ‘WPGMP_CSS’, WPGMP_URL.’assets/css/’ );
}
if ( ! defined( ‘WPGMP_JS’ ) ) {
define( ‘WPGMP_JS’, WPGMP_URL.’assets/js/’ );