Version Description
- Added: ordering for marker listings
Download this release
Release Info
Developer | webdorado |
Plugin | WD Google Maps – Google Maps builder Plugin |
Version | 1.0.40 |
Comparing to | |
See all releases |
Code changes from version 1.0.39 to 1.0.40
- admin/views/GMWDViewMaps_gmwd.php +18 -1
- gmwd_admin_class.php +1 -1
- readme.txt +5 -2
- wd-google-maps.php +1 -1
admin/views/GMWDViewMaps_gmwd.php
CHANGED
@@ -1187,7 +1187,24 @@ class GMWDViewMaps_gmwd extends GMWDView{
|
|
1187 |
<td>
|
1188 |
<input type="text" name="listing_header_title" id="listing_header_title" value="<?php _e("Markers","gmwd");?>" disabled readonly>
|
1189 |
</td>
|
1190 |
-
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1191 |
<tr>
|
1192 |
<td><label for="marker_list_position" title="<?php _e("Select the position for marker listing.","gmwd");?>"><?php _e("Marker List Position","gmwd");?>:</label></td>
|
1193 |
<td>
|
1187 |
<td>
|
1188 |
<input type="text" name="listing_header_title" id="listing_header_title" value="<?php _e("Markers","gmwd");?>" disabled readonly>
|
1189 |
</td>
|
1190 |
+
</tr>
|
1191 |
+
<tr>
|
1192 |
+
<td><label for="marker_listing_order" title="<?php _e("Order your marker listsing.","gmwd");?>"><?php _e("Order By","gmwd");?>:</label></td>
|
1193 |
+
<td>
|
1194 |
+
<select name="marker_listing_order" id="marker_listing_order" disabled readonly>
|
1195 |
+
<option><?php _e("Title","gmwd");?></option>
|
1196 |
+
</select>
|
1197 |
+
</td>
|
1198 |
+
</tr>
|
1199 |
+
<tr>
|
1200 |
+
<td><label for="marker_listing_order_dir" title="<?php _e("Choose order direction for your marker listsing.","gmwd");?>"><?php _e("Order Direction","gmwd");?>:</label></td>
|
1201 |
+
<td>
|
1202 |
+
<input type="radio" class="inputbox" id="marker_listing_order_dir0" name="marker_listing_order_dir" checked="checked" value="asc" disabled readonly>
|
1203 |
+
<label for="marker_listing_order_dir0"><?php _e("Asc","gmwd"); ?></label>
|
1204 |
+
<input type="radio" class="inputbox" id="marker_listing_order_dir1" name="marker_listing_order_dir" value="desc" disabled readonly>
|
1205 |
+
<label for="marker_listing_order_dir1"><?php _e("Desc","gmwd"); ?></label>
|
1206 |
+
</td>
|
1207 |
+
</tr>
|
1208 |
<tr>
|
1209 |
<td><label for="marker_list_position" title="<?php _e("Select the position for marker listing.","gmwd");?>"><?php _e("Marker List Position","gmwd");?>:</label></td>
|
1210 |
<td>
|
gmwd_admin_class.php
CHANGED
@@ -11,7 +11,7 @@ class GMWDAdmin{
|
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
-
private static $version = '1.0.
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
+
private static $version = '1.0.40';
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado, wdsupport
|
|
3 |
Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
4 |
Tags: google map, google maps, map, map markers, maps, directions, google map plugin, google maps plugin, map plugin, map widget, wp google map, wp google maps, google map widget, google map shortcode, wp map, google maps directions, google maps builder, google places, google places api, google maps api, google places reviews, contact page map, custom google map, loaction by address, location, map direction, map styles, polygons, simple google map, gmap, google map embed, best google maps, custom google maps
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -117,6 +117,9 @@ After downloading the ZIP file of the Google Maps WD plugin,
|
|
117 |
|
118 |
== Changelog ==
|
119 |
|
|
|
|
|
|
|
120 |
= 1.0.39 =
|
121 |
* Changed: Dashboard guide texts
|
122 |
|
3 |
Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
4 |
Tags: google map, google maps, map, map markers, maps, directions, google map plugin, google maps plugin, map plugin, map widget, wp google map, wp google maps, google map widget, google map shortcode, wp map, google maps directions, google maps builder, google places, google places api, google maps api, google places reviews, contact page map, custom google map, loaction by address, location, map direction, map styles, polygons, simple google map, gmap, google map embed, best google maps, custom google maps
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 1.0.40
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.0.40 =
|
121 |
+
* Added: ordering for marker listings
|
122 |
+
|
123 |
= 1.0.39 =
|
124 |
* Changed: Dashboard guide texts
|
125 |
|
wd-google-maps.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Google Maps WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
-
* Version: 1.0.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
4 |
* Plugin Name: Google Maps WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
+
* Version: 1.0.40
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|