Viewing 1 replies (of 1 total)
  • Thread Starter lyssa322

    (@lyssa322)

    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/’ );

Viewing 1 replies (of 1 total)
  • The topic ‘consecutive forward slash characters ("//") in link and script’ is closed to new replies.