WP Google Maps - Version 9.0.9

Version Description

  • 2022-08-11 =
  • Added Atlas Novus tag to plugin website link
  • Removed internal build swap notice, for the time being
Download this release

Release Info

Developer DylanAuty
Plugin Icon 128x128 WP Google Maps
Version 9.0.9
Comparing to
See all releases

Code changes from version 9.0.8 to 9.0.9

includes/class.admin-notices.php CHANGED
@@ -48,6 +48,13 @@ class AdminNotices {
48
  * Gut says no, but for now this makes more sense than doing it inline
49
  */
50
  if(!empty($wpgmza->settings->internal_engine)){
 
 
 
 
 
 
 
51
  $this->create('switch_engines',
52
  array(
53
  'link' => 'admin.php?page=wp-google-maps-menu-settings',
@@ -57,6 +64,7 @@ class AdminNotices {
57
  'title' => 'switch_engines'
58
  )
59
  );
 
60
  }
61
 
62
  /* Developer Hook (Action) - Create additional persistent notices, be mindful of conditional creation */
48
  * Gut says no, but for now this makes more sense than doing it inline
49
  */
50
  if(!empty($wpgmza->settings->internal_engine)){
51
+ /**
52
+ * This initial swap notice detracts from the first-time experience, so for the moment it has been disabled for new users
53
+ *
54
+ * Users can still swap via the settings area though
55
+ */
56
+
57
+ /*
58
  $this->create('switch_engines',
59
  array(
60
  'link' => 'admin.php?page=wp-google-maps-menu-settings',
64
  'title' => 'switch_engines'
65
  )
66
  );
67
+ */
68
  }
69
 
70
  /* Developer Hook (Action) - Create additional persistent notices, be mindful of conditional creation */
legacy-core.php CHANGED
@@ -196,8 +196,12 @@ function wpgmza_plugin_action_links( $links ) {
196
 
197
  if(!$wpgmza->isProVersion()){
198
  // Only show this link if the user is not a Pro user
 
 
 
 
199
  array_unshift( $links,
200
- '<a class="" target="_BLANK" href="'.wpgm_pro_link("https://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=plugin_link_upgrade").'">' . __( 'Get Pro Version', 'wp-google-maps' ) . '</a>' );
201
  }
202
 
203
  return $links;
196
 
197
  if(!$wpgmza->isProVersion()){
198
  // Only show this link if the user is not a Pro user
199
+ $proLink = "https://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=plugin_link_upgrade";
200
+ if(!$wpgmza->internalEngine->isLegacy()){
201
+ $proLink .= "-atlas-novus";
202
+ }
203
  array_unshift( $links,
204
+ '<a class="" target="_BLANK" href="'.wpgm_pro_link($proLink).'">' . __( 'Get Pro Version', 'wp-google-maps' ) . '</a>' );
205
  }
206
 
207
  return $links;
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: google maps, maps, map, map markers, google map, google maps plugin, wp go
5
  Requires at least: 3.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.3
8
- Stable tag: 9.0.8
9
  License: GPLv2
10
 
11
  The easiest to use Google maps plugin! Create a custom Google map, store locator or map widget with high quality markers containing categories, descriptions, images and links.
@@ -240,6 +240,10 @@ Please update your WP Go Maps version to 6.3.15 to ensure you are using the late
240
 
241
  == Changelog ==
242
 
 
 
 
 
243
  = 9.0.8 - 2022-08-03 =
244
  * Added installer links to API key fields in settings area, to improve API key creation process for returning users
245
  * Updated all base PO files, source information updated for future improvements
5
  Requires at least: 3.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.3
8
+ Stable tag: 9.0.9
9
  License: GPLv2
10
 
11
  The easiest to use Google maps plugin! Create a custom Google map, store locator or map widget with high quality markers containing categories, descriptions, images and links.
240
 
241
  == Changelog ==
242
 
243
+ = 9.0.9 - 2022-08-11 =
244
+ * Added Atlas Novus tag to plugin website link
245
+ * Removed internal build swap notice, for the time being
246
+
247
  = 9.0.8 - 2022-08-03 =
248
  * Added installer links to API key fields in settings area, to improve API key creation process for returning users
249
  * Updated all base PO files, source information updated for future improvements
wpGoogleMaps.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Go Maps (formerly WP Google Maps)
4
  Plugin URI: https://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: 9.0.8
7
  Author: WP Go Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
@@ -12,6 +12,10 @@ Domain Path: /languages
12
 
13
 
14
  /*
 
 
 
 
15
  * 9.0.8 - 2022-08-03
16
  * Added installer links to API key fields in settings area, to improve API key creation process for returning users
17
  * Updated all base PO files, source information updated for future improvements
3
  Plugin Name: WP Go Maps (formerly WP Google Maps)
4
  Plugin URI: https://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: 9.0.9
7
  Author: WP Go Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
12
 
13
 
14
  /*
15
+ * 9.0.9 - 2022-08-11
16
+ * Added Atlas Novus tag to plugin website link
17
+ * Removed internal build swap notice, for the time being
18
+ *
19
  * 9.0.8 - 2022-08-03
20
  * Added installer links to API key fields in settings area, to improve API key creation process for returning users
21
  * Updated all base PO files, source information updated for future improvements