Version Description
- Style bug fix
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 6.0.2 |
Comparing to | |
See all releases |
Code changes from version 6.0.0 to 6.0.2
- css/wpgmza_style.css +1 -1
- readme.txt +6 -0
- wpGoogleMaps.php +4 -4
css/wpgmza_style.css
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
}
|
29 |
.wpgmza_markerbox img { margin: 3px !important; }
|
30 |
|
31 |
-
.wpgmza_markerbox h1
|
32 |
padding-left:0 !important;
|
33 |
padding-right:0 !important;
|
34 |
margin-left:0 !important;
|
28 |
}
|
29 |
.wpgmza_markerbox img { margin: 3px !important; }
|
30 |
|
31 |
+
.wpgmza_markerbox h1,.wpgmza_markerbox h2,.wpgmza_markerbox h3,.wpgmza_markerbox h4,.wpgmza_markerbox h5,.wpgmza_markerbox h6,.wpgmza_markerbox h7,.wpgmza_markerbox h8,.wpgmza_markerbox strong,.wpgmza_markerbox p,.wpgmza_markerbox br {
|
32 |
padding-left:0 !important;
|
33 |
padding-right:0 !important;
|
34 |
margin-left:0 !important;
|
readme.txt
CHANGED
@@ -94,6 +94,12 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
|
|
94 |
|
95 |
== Changelog ==
|
96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
= 6.0.0 =
|
98 |
* Fixed a map width bug with the datatables layout. Now falls in line with the map width.
|
99 |
* Added more options to the map settings page
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 6.0.2 =
|
98 |
+
* Style bug fix
|
99 |
+
|
100 |
+
= 6.0.1 =
|
101 |
+
* Small bug fix
|
102 |
+
|
103 |
= 6.0.0 =
|
104 |
* Fixed a map width bug with the datatables layout. Now falls in line with the map width.
|
105 |
* Added more options to the map settings page
|
wpGoogleMaps.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
-
Version: 6.0.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
@@ -53,8 +53,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
|
53 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
54 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
55 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
56 |
-
$wpgmza_version = "6.0.
|
57 |
-
$wpgmza_p_version = "6.0.
|
58 |
$wpgmza_t = "basic";
|
59 |
define("WPGMAPS", $wpgmza_version);
|
60 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
@@ -3754,7 +3754,7 @@ function wpgmaps_update_db_check() {
|
|
3754 |
}
|
3755 |
|
3756 |
//create all XML files
|
3757 |
-
|
3758 |
}
|
3759 |
|
3760 |
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
+
Version: 6.0.2
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
53 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
54 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
55 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
56 |
+
$wpgmza_version = "6.0.2";
|
57 |
+
$wpgmza_p_version = "6.0.2";
|
58 |
$wpgmza_t = "basic";
|
59 |
define("WPGMAPS", $wpgmza_version);
|
60 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
3754 |
}
|
3755 |
|
3756 |
//create all XML files
|
3757 |
+
wpgmaps_update_all_xml_file();
|
3758 |
}
|
3759 |
|
3760 |
|