MapPress Easy Google Maps - Version 2.73.3

Version Description

  • Fixed: PHP error when loading filters template
Download this release

Release Info

Developer chrisvrichardson
Plugin Icon 128x128 MapPress Easy Google Maps
Version 2.73.3
Comparing to
See all releases

Code changes from version 2.73.2 to 2.73.3

languages/mappress-google-maps-for-wordpress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the MapPress Maps for WordPress plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: MapPress Maps for WordPress 2.73.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mappress-google-maps-for-wordpress\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-12-22T17:28:54+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
 
@@ -408,15 +408,15 @@ msgstr ""
408
  msgid "Get Directions"
409
  msgstr ""
410
 
411
- #: templates/map-filters.php:3
412
  msgid "Filter"
413
  msgstr ""
414
 
415
- #: templates/map-filters.php:12
416
  msgid "Reset"
417
  msgstr ""
418
 
419
- #: templates/map-filters.php:14
420
  msgid "Done"
421
  msgstr ""
422
 
2
  # This file is distributed under the same license as the MapPress Maps for WordPress plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: MapPress Maps for WordPress 2.73.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mappress-google-maps-for-wordpress\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-12-28T19:34:39+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
 
408
  msgid "Get Directions"
409
  msgstr ""
410
 
411
+ #: templates/map-filters.php:4
412
  msgid "Filter"
413
  msgstr ""
414
 
415
+ #: templates/map-filters.php:13
416
  msgid "Reset"
417
  msgstr ""
418
 
419
+ #: templates/map-filters.php:15
420
  msgid "Done"
421
  msgstr ""
422
 
mappress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: MapPress Maps for WordPress
4
  Plugin URI: https://www.mappresspro.com
5
  Author URI: https://www.mappresspro.com
6
  Description: MapPress makes it easy to add Google and Leaflet Maps to WordPress
7
- Version: 2.73.2
8
  Author: Chris Richardson
9
  Text Domain: mappress-google-maps-for-wordpress
10
  Thanks to all the translators and to Scott DeJonge for his wonderful icons
@@ -36,7 +36,7 @@ if (is_dir(dirname( __FILE__ ) . '/pro')) {
36
  }
37
 
38
  class Mappress {
39
- const VERSION = '2.73.2';
40
 
41
  static
42
  $baseurl,
4
  Plugin URI: https://www.mappresspro.com
5
  Author URI: https://www.mappresspro.com
6
  Description: MapPress makes it easy to add Google and Leaflet Maps to WordPress
7
+ Version: 2.73.3
8
  Author: Chris Richardson
9
  Text Domain: mappress-google-maps-for-wordpress
10
  Thanks to all the translators and to Scott DeJonge for his wonderful icons
36
  }
37
 
38
  class Mappress {
39
+ const VERSION = '2.73.3';
40
 
41
  static
42
  $baseurl,
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: maps, google maps, map, map markers, google map, leaflet maps, leaflet map
5
  Requires at least: 5.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.9
8
- Stable tag: 2.73.2
9
 
10
  == Description ==
11
  MapPress is the easiest way to add beautiful interactive Google and Leaflet maps to WordPress.
@@ -89,6 +89,9 @@ Please see the plugin documentation pages:
89
 
90
  == Changelog ==
91
 
 
 
 
92
  = 2.73.2 =
93
  * Fixed: possible PHP error on settings screen
94
  * Fixed: box-sizing added to layout CSS, directions made max width in mini view
5
  Requires at least: 5.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.9
8
+ Stable tag: 2.73.3
9
 
10
  == Description ==
11
  MapPress is the easiest way to add beautiful interactive Google and Leaflet maps to WordPress.
89
 
90
  == Changelog ==
91
 
92
+ = 2.73.3 =
93
+ * Fixed: PHP error when loading filters template
94
+
95
  = 2.73.2 =
96
  * Fixed: possible PHP error on settings screen
97
  * Fixed: box-sizing added to layout CSS, directions made max width in mini view
templates/map-filters.php CHANGED
@@ -1,18 +1,20 @@
1
- <div class='mapp-filters'>
2
- <div class='mapp-filter-wrapper'>
3
- <div class='mapp-button mapp-caret mapp-filter-toggle' data-mapp-action='filter-toggle'><?php _e('Filter', 'mappress-google-maps-for-wordpress');?></div>
4
- <div class='mapp-filter-body'>
5
- <div class='mapp-filter-list'>
6
- <?php foreach(Mappress::$options->filters as $atts) { ?>
7
- <?php $filter = new Mappress_Filter($atts); ?>
8
- <div class='mapp-filter-values'><?php echo $filter->get_html(); ?></div>
9
- <?php } ?>
10
- </div>
11
- <div class='mapp-filter-toolbar'>
12
- <div class='mapp-link-button mapp-filter-reset' data-mapp-action='filter-reset'><?php _e('Reset', 'mappress-google-maps-for-wordpress');?></div>
13
- <div class='mapp-filter-count'></div>
14
- <div class='mapp-submit-button mapp-filter-done' data-mapp-action='filter-toggle'><?php _e('Done', 'mappress-google-maps-for-wordpress');?></div>
 
 
15
  </div>
16
  </div>
17
  </div>
18
- </div>
1
+ <?php if (Mappress::$pro) { ?>
2
+ <div class='mapp-filters'>
3
+ <div class='mapp-filter-wrapper'>
4
+ <div class='mapp-button mapp-caret mapp-filter-toggle' data-mapp-action='filter-toggle'><?php _e('Filter', 'mappress-google-maps-for-wordpress');?></div>
5
+ <div class='mapp-filter-body'>
6
+ <div class='mapp-filter-list'>
7
+ <?php foreach(Mappress::$options->filters as $atts) { ?>
8
+ <?php $filter = new Mappress_Filter($atts); ?>
9
+ <div class='mapp-filter-values'><?php echo $filter->get_html(); ?></div>
10
+ <?php } ?>
11
+ </div>
12
+ <div class='mapp-filter-toolbar'>
13
+ <div class='mapp-link-button mapp-filter-reset' data-mapp-action='filter-reset'><?php _e('Reset', 'mappress-google-maps-for-wordpress');?></div>
14
+ <div class='mapp-filter-count'></div>
15
+ <div class='mapp-submit-button mapp-filter-done' data-mapp-action='filter-toggle'><?php _e('Done', 'mappress-google-maps-for-wordpress');?></div>
16
+ </div>
17
  </div>
18
  </div>
19
  </div>
20
+ <?php } ?>