Title: PHP notices
Last modified: August 24, 2016

---

# PHP notices

 *  Resolved [Birgir Erlendsson (birgire)](https://wordpress.org/support/users/birgire/)
 * (@birgire)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/php-notices-46/)
 * 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://wordpress.org/plugins/google-maps-easy/](https://wordpress.org/plugins/google-maps-easy/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [supsystic](https://wordpress.org/support/users/supsysticcom/)
 * (@supsysticcom)
 * [11 years ago](https://wordpress.org/support/topic/php-notices-46/#post-6108613)
 * Hello.
    Thank you for reporting, those issues was already fixed.

Viewing 1 replies (of 1 total)

The topic ‘PHP notices’ is closed to new replies.

 * ![](https://ps.w.org/google-maps-easy/assets/icon-256x256.png?rev=1086633)
 * [Easy Google Maps](https://wordpress.org/plugins/google-maps-easy/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/google-maps-easy/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/google-maps-easy/)
 * [Active Topics](https://wordpress.org/support/plugin/google-maps-easy/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/google-maps-easy/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/google-maps-easy/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [supsystic](https://wordpress.org/support/users/supsysticcom/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/php-notices-46/#post-6108613)
 * Status: resolved