Event Calendar WD – Responsive Event Calendar plugin - Version 1.0.96

Version Description

  • Fixed: Description on event post
Download this release

Release Info

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

Code changes from version 1.0.95 to 1.0.96

Files changed (5) hide show
  1. ecwd.php +2 -2
  2. ecwd_admin_class.php +1 -1
  3. ecwd_class.php +1 -1
  4. readme.txt +6 -1
  5. views/single-event.php +1 -1
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.0.95
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -24,7 +24,7 @@ if (!defined('ECWD_URL')) {
24
  }
25
 
26
  if (!defined('ECWD_VERSION')) {
27
- define('ECWD_VERSION', "1.0.95");
28
  }
29
 
30
  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.0.96
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
24
  }
25
 
26
  if (!defined('ECWD_VERSION')) {
27
+ define('ECWD_VERSION', "1.0.96");
28
  }
29
 
30
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
ecwd_admin_class.php CHANGED
@@ -6,7 +6,7 @@
6
  class ECWD_Admin {
7
 
8
  protected static $instance = null;
9
- protected $version = '1.0.95';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
  protected static $default_shortcode = '[ecwd id="%s" type="full" page_items="5" event_search="yes" display="full" displays="full,list,week,day" filters=""]';
6
  class ECWD_Admin {
7
 
8
  protected static $instance = null;
9
+ protected $version = '1.0.96';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
  protected static $default_shortcode = '[ecwd id="%s" type="full" page_items="5" event_search="yes" display="full" displays="full,list,week,day" filters=""]';
ecwd_class.php CHANGED
@@ -6,7 +6,7 @@
6
  */
7
  class ECWD {
8
 
9
- protected $version = '1.0.95';
10
  protected $plugin_name = 'event-calendar-wd';
11
  protected $prefix = 'ecwd';
12
  protected static $instance = null;
6
  */
7
  class ECWD {
8
 
9
+ protected $version = '1.0.96';
10
  protected $plugin_name = 'event-calendar-wd';
11
  protected $prefix = 'ecwd';
12
  protected static $instance = null;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
4
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 1.0.95
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,6 +12,8 @@ Event Calendar WD is a user-friendly event calendar plugin. This event calendar
12
 
13
  == Description ==
14
 
 
 
15
  Event Calendar WD is a responsive calendar plugin for organizing events. This WordPress calendar lets you manage and publish unlimited event calendars on your site.
16
 
17
  = Event Calendar WD =
@@ -245,6 +247,9 @@ After downloading the ZIP file of the Event Calendar WD plugin,
245
 
246
  == Changelog ==
247
 
 
 
 
248
  = 1.0.95 =
249
  * Changed: Plugin interface
250
  * Fixed: Minor bugs
4
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
+ Stable tag: 1.0.96
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ https://www.youtube.com/watch?v=ksdQOc4iwXM
16
+
17
  Event Calendar WD is a responsive calendar plugin for organizing events. This WordPress calendar lets you manage and publish unlimited event calendars on your site.
18
 
19
  = Event Calendar WD =
247
 
248
  == Changelog ==
249
 
250
+ = 1.0.96 =
251
+ * Fixed: Description on event post
252
+
253
  = 1.0.95 =
254
  * Changed: Plugin interface
255
  * Fixed: Minor bugs
views/single-event.php CHANGED
@@ -417,7 +417,7 @@ get_header();
417
  <?php
418
 
419
  $event_content = get_the_content();
420
- if (empty($event_content)) { ?>
421
  <div class="entry-content"><?php the_content(); ?></div>
422
  <?php } ?>
423
  <!-- End Content -->
417
  <?php
418
 
419
  $event_content = get_the_content();
420
+ if (!empty($event_content)) { ?>
421
  <div class="entry-content"><?php the_content(); ?></div>
422
  <?php } ?>
423
  <!-- End Content -->