Calendar by WD – Responsive Event Calendar - Version 1.4.25

Version Description

Changed: Compability with WordPress 4.3

Download this release

Release Info

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

Code changes from version 1.4.24 to 1.4.25

calendar.php CHANGED
@@ -3,11 +3,11 @@
3
  Plugin Name: Spider Event Calendar
4
  Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
5
  Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
6
- Version: 1.4.24
7
  Author: https://web-dorado.com/
8
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
10
- $wd_spider_calendar_version="1.4.24";
11
  // LANGUAGE localization.
12
  function sp_calendar_language_load() {
13
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
3
  Plugin Name: Spider Event Calendar
4
  Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
5
  Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
6
+ Version: 1.4.25
7
  Author: https://web-dorado.com/
8
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
10
+ $wd_spider_calendar_version="1.4.25";
11
  // LANGUAGE localization.
12
  function sp_calendar_language_load() {
13
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-calendar.html
4
  Tags: calendar, calendars, event, event calendar, event manager, events calendar,calendar widget, event registration, event management,events, Kalender, agenda, calendario, availability calendar,o nline calendar, holiday calendar, scheduling, free calendar, Calender, upcoming events, event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, reservation
5
  Requires at least: 3.4
6
- Tested up to: 4.2
7
- Stable tag: 1.4.24
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -142,7 +142,13 @@ Vietnamese (vi)
142
 
143
  == Changelog ==
144
 
145
- =1.4.23 =
 
 
 
 
 
 
146
  Fixed: Conflict with some plugins
147
 
148
  = 1.4.22 =
3
  Donate link: https://web-dorado.com/products/wordpress-calendar.html
4
  Tags: calendar, calendars, event, event calendar, event manager, events calendar,calendar widget, event registration, event management,events, Kalender, agenda, calendario, availability calendar,o nline calendar, holiday calendar, scheduling, free calendar, Calender, upcoming events, event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, reservation
5
  Requires at least: 3.4
6
+ Tested up to: 4.3
7
+ Stable tag: 1.4.25
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
142
 
143
  == Changelog ==
144
 
145
+ = 1.4.25 =
146
+ Changed: Compability with WordPress 4.3
147
+
148
+ = 1.4.24 =
149
+ Conflict with event calendar wd fixed
150
+
151
+ = 1.4.23 =
152
  Fixed: Conflict with some plugins
153
 
154
  = 1.4.22 =
spidercalendar_upcoming_events_widget.php CHANGED
@@ -24,7 +24,7 @@ class upcoming_events extends WP_Widget {
24
  'description' => ''
25
  );
26
  $control_ops = array('id_base' => 'upcoming_events'); // Widget Control Settings.
27
- $this->WP_Widget('upcoming_events', 'Upcoming Events', $widget_ops, $control_ops); // Create the widget.
28
  }
29
 
30
  // Extract Args //
24
  'description' => ''
25
  );
26
  $control_ops = array('id_base' => 'upcoming_events'); // Widget Control Settings.
27
+ parent::__construct('upcoming_events', 'Upcoming Events', $widget_ops, $control_ops); // Create the widget.
28
  }
29
 
30
  // Extract Args //
widget_spider_calendar.php CHANGED
@@ -10,7 +10,7 @@ class spider_calendar extends WP_Widget {
10
  'description' => 'Spider Calendar is a highly configurable product which allows you to have multiple organized events.'
11
  );
12
  $control_ops = array('id_base' => 'spider_calendar'); // Widget Control Settings.
13
- $this->WP_Widget('spider_calendar', 'Spider Calendar', $widget_ops, $control_ops); // Create the widget.
14
  }
15
 
16
  // Extract Args //
10
  'description' => 'Spider Calendar is a highly configurable product which allows you to have multiple organized events.'
11
  );
12
  $control_ops = array('id_base' => 'spider_calendar'); // Widget Control Settings.
13
+ parent::__construct('spider_calendar', 'Spider Calendar', $widget_ops, $control_ops); // Create the widget.
14
  }
15
 
16
  // Extract Args //