Version Description
- Fixed: Minor bug
- Fixed: Bug on day view
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.0.85 |
Comparing to | |
See all releases |
Code changes from version 1.0.84 to 1.0.85
- ecwd.php +2 -2
- ecwd_admin_class.php +1 -1
- ecwd_class.php +1 -1
- includes/calendar-class.php +5 -4
- readme.txt +5 -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.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -22,7 +22,7 @@ if( ! defined( 'ECWD_MAIN_FILE' ) ) {
|
|
22 |
}
|
23 |
|
24 |
if(! defined( 'ECWD_VERSION' ) ){
|
25 |
-
define ('ECWD_VERSION',"1.0.
|
26 |
}
|
27 |
|
28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
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.85
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
22 |
}
|
23 |
|
24 |
if(! defined( 'ECWD_VERSION' ) ){
|
25 |
+
define ('ECWD_VERSION',"1.0.85");
|
26 |
}
|
27 |
|
28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
ecwd_admin_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
-
protected $version = '1.0.
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
+
protected $version = '1.0.85';
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
ecwd_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*/
|
7 |
class ECWD {
|
8 |
|
9 |
-
protected $version = '1.0.
|
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.85';
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected static $instance = null;
|
includes/calendar-class.php
CHANGED
@@ -1023,9 +1023,9 @@
|
|
1023 |
$eventcontent .= ' <span class="event-metalabel" style="background:' . $cellevent['color'] . '"></span>
|
1024 |
<h5 style="color:' . $cellevent['color'] . '" itemprop="name">';
|
1025 |
if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
|
1026 |
-
$eventcontent .= '<span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . '">' . $cellevent['title'] . '</span>';
|
1027 |
} else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
|
1028 |
-
$eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . ' style="color: ' . $cellevent['color'] . '">' . $cellevent['title'] . '</a>';
|
1029 |
} else {
|
1030 |
$eventcontent .= $cellevent['title'];
|
1031 |
}
|
@@ -1037,7 +1037,7 @@
|
|
1037 |
if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
|
1038 |
$eventcontent .= '<span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . '">' . $cellevent['title'] . '</span>';
|
1039 |
} else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
|
1040 |
-
$eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . '>' . $cellevent['title'] . '</a>';
|
1041 |
} else {
|
1042 |
$eventcontent .= $cellevent['title'];
|
1043 |
}
|
@@ -1177,7 +1177,8 @@
|
|
1177 |
}
|
1178 |
$html .= '</div></div></div>';
|
1179 |
}
|
1180 |
-
|
|
|
1181 |
$html .= '<h3 class="event-title" itemprop="name"><span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . '"';
|
1182 |
if (isset($cellevent['color']) && $cellevent['color'] !== '') {
|
1183 |
$html .= ' style="color:' . $cellevent['color'] . ';"';
|
1023 |
$eventcontent .= ' <span class="event-metalabel" style="background:' . $cellevent['color'] . '"></span>
|
1024 |
<h5 style="color:' . $cellevent['color'] . '" itemprop="name">';
|
1025 |
if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
|
1026 |
+
$eventcontent .= '<span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . ' "itemprop="url">' . $cellevent['title'] . '</span>';
|
1027 |
} else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
|
1028 |
+
$eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . ' style="color: ' . $cellevent['color'] . ' "itemprop="url">' . $cellevent['title'] . '</a>';
|
1029 |
} else {
|
1030 |
$eventcontent .= $cellevent['title'];
|
1031 |
}
|
1037 |
if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
|
1038 |
$eventcontent .= '<span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . '">' . $cellevent['title'] . '</span>';
|
1039 |
} else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
|
1040 |
+
$eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . ' itemprop="url">' . $cellevent['title'] . '</a>';
|
1041 |
} else {
|
1042 |
$eventcontent .= $cellevent['title'];
|
1043 |
}
|
1177 |
}
|
1178 |
$html .= '</div></div></div>';
|
1179 |
}
|
1180 |
+
|
1181 |
+
if ($this->event_popup == "yes" && get_post_meta($cellevent['id'], '', true)) {
|
1182 |
$html .= '<h3 class="event-title" itemprop="name"><span start-date-data="' . $cellevent['date'] . '" class="ecwd_open_event_popup event' . $cellevent['id'] . '"';
|
1183 |
if (isset($cellevent['color']) && $cellevent['color'] !== '') {
|
1184 |
$html .= ' style="color:' . $cellevent['color'] . ';"';
|
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.7
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -155,6 +155,10 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
|
|
158 |
= 1.0.84 =
|
159 |
* Added: Script keys
|
160 |
* Fixed: Bug on widget
|
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.7
|
7 |
+
Stable tag: 1.0.85
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.0.85 =
|
159 |
+
* Fixed: Minor bug
|
160 |
+
* Fixed: Bug on day view
|
161 |
+
|
162 |
= 1.0.84 =
|
163 |
* Added: Script keys
|
164 |
* Fixed: Bug on widget
|