Version Description
- Fixed an js error breaking the store locator
Download this release
Release Info
Developer | tijmensmit |
Plugin | WP Store Locator |
Version | 1.2.21 |
Comparing to | |
See all releases |
Code changes from version 1.2.20 to 1.2.21
- js/wpsl-gmap.js +1 -1
- readme.txt +4 -1
- wp-store-locator.php +2 -2
js/wpsl-gmap.js
CHANGED
@@ -507,7 +507,7 @@ function findFormattedAddress( latLng, callback ) {
|
|
507 |
startAddress = response[0].formatted_address;
|
508 |
callback();
|
509 |
} else {
|
510 |
-
|
511 |
}
|
512 |
});
|
513 |
}
|
507 |
startAddress = response[0].formatted_address;
|
508 |
callback();
|
509 |
} else {
|
510 |
+
geocodeErrors( status );
|
511 |
}
|
512 |
});
|
513 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: tijmensmit
|
|
3 |
Tags: google maps, store locator, business locations, geocoding, stores, geo
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 3.9.1
|
6 |
-
Stable tag: 1.2.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
|
@@ -78,6 +78,9 @@ If you find a plugin or theme that causes a conflict, please report it on the [s
|
|
78 |
|
79 |
== Changelog ==
|
80 |
|
|
|
|
|
|
|
81 |
= 1.2.20 =
|
82 |
* Fixed the directions url sometimes showing an incomplete address due to an encoding issue
|
83 |
* Fixed the 'items' count on the store overview page showing the incorrect number after deleting a store
|
3 |
Tags: google maps, store locator, business locations, geocoding, stores, geo
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 3.9.1
|
6 |
+
Stable tag: 1.2.21
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
|
78 |
|
79 |
== Changelog ==
|
80 |
|
81 |
+
= 1.2.21 =
|
82 |
+
* Fixed an js error breaking the store locator
|
83 |
+
|
84 |
= 1.2.20 =
|
85 |
* Fixed the directions url sometimes showing an incomplete address due to an encoding issue
|
86 |
* Fixed the 'items' count on the store overview page showing the incorrect number after deleting a store
|
wp-store-locator.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI:
|
|
5 |
Description: An easy to use location management system that enables users to search for nearby physical stores
|
6 |
Author: Tijmen Smit
|
7 |
Author URI: http://tijmensmit.com/
|
8 |
-
Version: 1.2.
|
9 |
Text Domain: wpsl
|
10 |
Domain Path: /languages/
|
11 |
License: GPLv3
|
@@ -83,7 +83,7 @@ if ( !class_exists( 'WP_Store_locator' ) ) {
|
|
83 |
public function define_constants() {
|
84 |
|
85 |
if ( !defined( 'WPSL_VERSION_NUM' ) )
|
86 |
-
define( 'WPSL_VERSION_NUM', '1.2.
|
87 |
|
88 |
if ( !defined( 'WPSL_URL' ) )
|
89 |
define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
|
5 |
Description: An easy to use location management system that enables users to search for nearby physical stores
|
6 |
Author: Tijmen Smit
|
7 |
Author URI: http://tijmensmit.com/
|
8 |
+
Version: 1.2.21
|
9 |
Text Domain: wpsl
|
10 |
Domain Path: /languages/
|
11 |
License: GPLv3
|
83 |
public function define_constants() {
|
84 |
|
85 |
if ( !defined( 'WPSL_VERSION_NUM' ) )
|
86 |
+
define( 'WPSL_VERSION_NUM', '1.2.21' );
|
87 |
|
88 |
if ( !defined( 'WPSL_URL' ) )
|
89 |
define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
|