Event Calendar WD – Responsive Event Calendar plugin - Version 1.1.23

Version Description

  • Fixed: Gutenberg compatibility issue
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Event Calendar WD – Responsive Event Calendar plugin
Version 1.1.23
Comparing to
See all releases

Code changes from version 1.1.22 to 1.1.23

Files changed (4) hide show
  1. changelog.txt +3 -0
  2. ecwd.php +2 -2
  3. includes/ecwd-shortcodes.php +6 -0
  4. readme.txt +5 -2
changelog.txt CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  = 1.1.22 =
2
  * Fixed: XSS vulnerabilities
3
  * Changed: Capability required to edit themes
1
+ = 1.1.23 =
2
+ * Fixed: Gutenberg compatibility issue
3
+
4
  = 1.1.22 =
5
  * Fixed: XSS vulnerabilities
6
  * Changed: Capability required to edit themes
ecwd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
- * Version: 1.1.22
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * Text Domain: event-calendar-wd
@@ -25,7 +25,7 @@ if (!defined('ECWD_URL')) {
25
  }
26
 
27
  if (!defined('ECWD_VERSION')) {
28
- define('ECWD_VERSION', "1.1.22");
29
  }
30
 
31
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
+ * Version: 1.1.23
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * Text Domain: event-calendar-wd
25
  }
26
 
27
  if (!defined('ECWD_VERSION')) {
28
+ define('ECWD_VERSION', "1.1.23");
29
  }
30
 
31
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
includes/ecwd-shortcodes.php CHANGED
@@ -10,6 +10,12 @@
10
  include_once(ABSPATH . 'wp-admin/includes/plugin.php');
11
  function ecwd_shortcode($attr) {
12
 
 
 
 
 
 
 
13
  if(get_post_type() == "ecwd_event"){
14
  return "";
15
  }
10
  include_once(ABSPATH . 'wp-admin/includes/plugin.php');
11
  function ecwd_shortcode($attr) {
12
 
13
+ global $wp;
14
+
15
+ if(!empty($wp->query_vars['rest_route'])) {
16
+ return "";//for gutenberg
17
+ }
18
+
19
  if(get_post_type() == "ecwd_event"){
20
  return "";
21
  }
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: webdorado,wdsupport
3
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
4
  Requires at least: 3.9
5
- Tested up to: 4.9
6
  Requires PHP: 5.2
7
- Stable tag: 1.1.22
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -347,6 +347,9 @@ Event Calendar WD plugin optionally embeds Google Maps on front end to display e
347
 
348
  == Changelog ==
349
 
 
 
 
350
  = 1.1.22 =
351
  * Fixed: XSS vulnerabilities
352
  * Changed: Capability required to edit themes
2
  Contributors: webdorado,wdsupport
3
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
4
  Requires at least: 3.9
5
+ Tested up to: 5.0
6
  Requires PHP: 5.2
7
+ Stable tag: 1.1.23
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
347
 
348
  == Changelog ==
349
 
350
+ = 1.1.23 =
351
+ * Fixed: Gutenberg compatibility issue
352
+
353
  = 1.1.22 =
354
  * Fixed: XSS vulnerabilities
355
  * Changed: Capability required to edit themes