• Thanks for the plugin.

    There are PHP notices:

    PHP Notice:  Undefined index: infowindow_width
    PHP Notice:  Undefined index: infowindow_height

    in the file:

    /google-maps-easy/trunk/modules/gmap/views/tpl/gmapDrawMap.php

    This can be fixed with:

    if( isset( $this->currentMap['params']['infowindow_width'] ) && $this->currentMap['params']['infowindow_width'] != ""){
        $infoWindowWidth = $this->currentMap['params']['infowindow_width'];
    } else {
        $infoWindowWidth = $this->indoWindowSize['width'];
    }
    if( isset( $this->currentMap['params']['infowindow_height'] ) && $this->currentMap['params']['infowindow_height'] != ""){
        $infoWindowHeight = $this->currentMap['params']['infowindow_height'];
    } else {
        $infoWindowHeight = $this->indoWindowSize['height'];
    }

    https://www.ads-software.com/plugins/google-maps-easy/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘PHP notices’ is closed to new replies.