Event Calendar WD – Responsive Event Calendar plugin - Version 1.1.35

Version Description

  • Added: Option for Event title style.
  • Fixed: Category metas ordering.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 Event Calendar WD – Responsive Event Calendar plugin
Version 1.1.35
Comparing to
See all releases

Code changes from version 1.1.34 to 1.1.35

ecwd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://10web.io/plugins/wordpress-event-calendar/
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
- * Version: 1.1.34
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/
9
  * Text Domain: event-calendar-wd
@@ -28,7 +28,7 @@ if(! defined( 'ECWD_URL' ) ){
28
  }
29
 
30
  if (!defined('ECWD_VERSION')) {
31
- define('ECWD_VERSION', "1.1.34");
32
  }
33
 
34
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://10web.io/plugins/wordpress-event-calendar/
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
+ * Version: 1.1.35
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/
9
  * Text Domain: event-calendar-wd
28
  }
29
 
30
  if (!defined('ECWD_VERSION')) {
31
+ define('ECWD_VERSION', "1.1.35");
32
  }
33
 
34
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: webdorado, 10web
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.3
6
  Requires PHP: 5.2
7
- Stable tag: 1.1.34
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -345,6 +345,10 @@ After downloading the ZIP file of the Event Calendar WD plugin,
345
  Event Calendar WD plugin optionally embeds Google Maps on front end to display events on the map. Embedded Google Maps behave in the exact same way as if visitor has opened Google Maps site. Google may collect data about visitors, use cookies and tracking, included their logged-in experience interaction with Google platform. Google Maps are regulated under terms of Google privacy policy https://policies.google.com/privacy. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
346
 
347
  == Changelog ==
 
 
 
 
348
  = 1.1.34 =
349
  * Fixed: Minor bug.
350
 
2
  Contributors: webdorado, 10web
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.4
6
  Requires PHP: 5.2
7
+ Stable tag: 1.1.35
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
345
  Event Calendar WD plugin optionally embeds Google Maps on front end to display events on the map. Embedded Google Maps behave in the exact same way as if visitor has opened Google Maps site. Google may collect data about visitors, use cookies and tracking, included their logged-in experience interaction with Google platform. Google Maps are regulated under terms of Google privacy policy https://policies.google.com/privacy. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
346
 
347
  == Changelog ==
348
+ = 1.1.35 =
349
+ * Added: Option for Event title style.
350
+ * Fixed: Category metas ordering.
351
+
352
  = 1.1.34 =
353
  * Fixed: Minor bug.
354
 
views/admin/ecwd-event-calendars-meta.php CHANGED
@@ -9,6 +9,8 @@ $post_id = $post->ID;
9
  $type = ECWD_PLUGIN_PREFIX.'_calendar';
10
  $args = array(
11
  'post_type' => $type,
 
 
12
  'post_status' => 'publish',
13
  'posts_per_page' => -1,
14
  'ignore_sticky_posts' => 1
9
  $type = ECWD_PLUGIN_PREFIX.'_calendar';
10
  $args = array(
11
  'post_type' => $type,
12
+ 'order' => "ASC",
13
+ 'orderby' => 'post_title',
14
  'post_status' => 'publish',
15
  'posts_per_page' => -1,
16
  'ignore_sticky_posts' => 1
views/admin/ecwd-event-organizers-meta.php CHANGED
@@ -6,11 +6,12 @@ global $post;
6
 
7
  $single_event = $this->single_event_for_metas;
8
 
9
-
10
  $post_id = $post->ID;
11
  $type = ECWD_PLUGIN_PREFIX . '_organizer';
12
  $args = array(
13
  'post_type' => $type,
 
 
14
  'post_status' => 'publish',
15
  'posts_per_page' => -1,
16
  'ignore_sticky_posts' => 1
6
 
7
  $single_event = $this->single_event_for_metas;
8
 
 
9
  $post_id = $post->ID;
10
  $type = ECWD_PLUGIN_PREFIX . '_organizer';
11
  $args = array(
12
  'post_type' => $type,
13
+ 'order' => "ASC",
14
+ 'orderby' => 'post_title',
15
  'post_status' => 'publish',
16
  'posts_per_page' => -1,
17
  'ignore_sticky_posts' => 1
views/admin/ecwd-event-venues-meta.php CHANGED
@@ -29,6 +29,8 @@ $has_selected_venue = false;
29
 
30
  $args = array(
31
  'post_type' => ECWD_PLUGIN_PREFIX . '_venue',
 
 
32
  'post_status' => 'publish',
33
  'posts_per_page' => -1,
34
  'ignore_sticky_posts' => 1
29
 
30
  $args = array(
31
  'post_type' => ECWD_PLUGIN_PREFIX . '_venue',
32
+ 'order' => "ASC",
33
+ 'orderby' => 'post_title',
34
  'post_status' => 'publish',
35
  'posts_per_page' => -1,
36
  'ignore_sticky_posts' => 1