Plugin Directory

Changeset 3344611


Ignore:
Timestamp:
08/14/2025 11:16:05 AM (4 months ago)
Author:
flippercode
Message:

warning issues are resolved

Location:
wp-google-map-plugin
Files:
950 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-google-map-plugin/trunk/modules/map/views/map-forms/infowindow-settings.php

    r3320406 r3344611  
    215215            ),
    216216            'customiser_controls' => array( 'edit_mode', 'placeholder', 'sourcecode' ),
    217             'tutorial_link' => 'https://www.wpmapspro.com/docs/how-to-create-extra-fields-for-location-infowindow-2/'
     217            'tutorial_link' => 'https://www.wpmapspro.com/docs/customizing-infowindow-messages-for-locations/'
    218218        )
    219219    );
  • wp-google-map-plugin/trunk/modules/shortcode/views/put-wpgmp.php

    r3327496 r3344611  
    14451445$map_data['map_options']['tiles_provider'] = WPGMP_Helper::wpgmp_get_leaflet_provider();
    14461446
    1447 $map_data['apiKey'] = $wpgmp_settings['wpgmp_api_key'];
     1447if( isset( $wpgmp_settings['wpgmp_api_key'] ) ){
     1448    $map_data['apiKey'] = $wpgmp_settings['wpgmp_api_key'];
     1449}else{
     1450    $map_data['apiKey'] = '';
     1451}
     1452
    14481453
    14491454$map_data = apply_filters( 'wpgmp_final_map_data', $map_data, $map );
  • wp-google-map-plugin/trunk/readme.txt

    r3327496 r3344611  
    33Contributors:      flippercode
    44Plugin Name:       WP MAPS
    5 Tags: store locator, google maps, openstreetmap, map, directory
     5Tags: store locator, google maps, openstreetmap, map, leaflet
    66Author URI:        http://profiles.wordpress.org/flippercode/
    77Author:            flippercode
    88Requires at least: 3.4
    9 Tested up to: 6.8.1
    10 Stable tag: 4.8.2
     9Tested up to: 6.8.2
     10Stable tag: 4.8.3
    1111Requires PHP: 5.3
    1212License: GPLv2 or later
     
    233233== Changelog ==
    234234
     235= 4.8.3 =
     236* Add : Updated the doc for Infowindow Message for Locations.
     237* Add : Fixed the Undefined wpgmp_api_key error.
     238
    235239= 4.8.2 =
    236240* Add : Fixed the Fatel error htmlspecialchars_decode().
  • wp-google-map-plugin/trunk/wp-google-map-plugin.php

    r3327496 r3344611  
    66Author: WePlugins
    77Author URI: https://weplugins.com/
    8 Version: 4.8.2
     8Version: 4.8.3
    99Text Domain: wp-google-map-plugin
    1010Domain Path: /lang
     
    13061306            $this->wpgmp_define( 'ALLOW_UNFILTERED_UPLOADS', true );
    13071307            $this->wpgmp_define( 'WPGMP_SLUG', 'wpgmp_view_overview' );
    1308             $this->wpgmp_define( 'WPGMP_VERSION', '4.8.2' );
     1308            $this->wpgmp_define( 'WPGMP_VERSION', '4.8.3' );
    13091309            $this->wpgmp_define( 'WPGMP_FOLDER', basename( dirname( __FILE__ ) ) );
    13101310            $this->wpgmp_define( 'WPGMP_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.