Event Calendar WD – Responsive Event Calendar plugin - Version 1.1.26

Version Description

  • Fixed: Featured image saving.
  • Fixed: Conflict with PHP 5.3.
Download this release

Release Info

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

Code changes from version 1.1.25 to 1.1.26

Files changed (5) hide show
  1. changelog.txt +4 -0
  2. ecwd.php +2 -2
  3. ecwd_admin_class.php +46 -54
  4. includes/ecwd-cpt-class.php +5 -3
  5. readme.txt +851 -850
changelog.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  = 1.1.25 =
2
  * Changed: Links to 10Web.io.
3
 
1
+ = 1.1.26 =
2
+ * Fixed: Featured image saving.
3
+ * Fixed: Conflict with PHP 5.3.
4
+
5
  = 1.1.25 =
6
  * Changed: Links to 10Web.io.
7
 
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.25
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.25");
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.26
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.26");
32
  }
33
 
34
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
ecwd_admin_class.php CHANGED
@@ -4,61 +4,53 @@
4
  * ECWD_Admin
5
  */
6
  class ECWD_Admin {
7
-
8
- protected static $instance = null;
9
- protected $ecwd_page = null;
10
- protected $notices = null;
11
- protected static $default_shortcode = '[ecwd id="%s" type="full" page_items="5" event_search="yes" display="full" displays="full,list,week,day" filters=""]';
12
-
13
- private function __construct() {
14
- $plugin = ECWD::get_instance();
15
- $this->prefix = $plugin->get_prefix();
16
- $this->notices = new ECWD_Notices();
17
- add_filter('plugin_action_links_' . plugin_basename(plugin_dir_path(__FILE__) . $this->prefix . '.php'), array(
18
- $this,
19
- 'add_action_links'
20
- ));
21
- $this->ecwd_config();
22
- // Setup admin stants
23
- add_action('init', array($this, 'define_admin_constants'));
24
- add_action('init', array($this, ECWD_PLUGIN_PREFIX . '_shortcode_button'));
25
-
26
- // Add admin styles and scripts
27
- add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_styles'));
28
- add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_scripts'));
29
-
30
- //Add organizer,venue form event edit page
31
- add_action('wp_ajax_ecwd_add_post', array($this, 'wp_ajax_add_post'));
32
- add_action('wp_ajax_ecwd_set_default_calendar', array($this, 'ecwd_set_default_calendar'));
33
- //add shortcode in calendar post content
34
- add_action('wp_insert_post_data', array($this, 'add_calendar_shortcode'));
35
-
36
-
37
- // Add the options page and menu item.
38
- add_action('admin_menu', array($this, 'add_plugin_admin_menu'), 10);
39
-
40
- foreach (array('post.php', 'post-new.php') as $hook) {
41
- add_action("admin_head-$hook", array($this, 'admin_head'));
42
- }
43
- add_action('wp_ajax_ecwd_shortcode', array($this, 'ecwd_shortcode_data'));
44
-
45
- add_action( 'enqueue_block_editor_assets', array($this,'enqueue_block_editor_assets' ));
46
- // Runs the admin notice ignore function incase a dismiss button has been clicked
47
- add_action('admin_init', array($this, 'admin_notice_ignore'));
48
- add_action('admin_notices', array($this, 'ecwd_admin_notices'));
49
- add_action('admin_notices', array($this, 'ecwd_helper_bar'), 10000);
50
- add_filter('parent_file', array($this, 'ecwd_submenu_parent_file'));
51
-
52
- $meta_value = get_option('wd_seo_notice_status');
53
- if ((!function_exists('wd_bp_install_notice')) && (!is_dir(plugin_dir_path(__DIR__) . 'seo-by-10web')) && ($meta_value === '' || $meta_value === false)) {
54
- add_action('admin_notices', array($this, 'wd_bp_install_notice'));
55
- add_action('admin_enqueue_scripts', array($this, 'wd_bp_script_style'));
56
- add_action('wp_ajax_wd_seo_dismiss', array($this, 'wd_bp_install_notice_status'));
57
- }
58
- add_filter('default_hidden_meta_boxes', array($this, 'default_hidden_meta_boxes'),2,2);
59
- add_filter("plugin_row_meta", array($this, 'ecwd_add_plugin_meta_links'), 10, 2);
60
- add_action('untrashed_post', array($this, 'set_default_metas_to_restored_events'));
61
  }
 
 
 
 
62
 
63
  public function wd_bp_install_notice(){
64
  $get_current = get_current_screen();
4
  * ECWD_Admin
5
  */
6
  class ECWD_Admin {
7
+ protected static $instance = NULL;
8
+ protected $ecwd_page = NULL;
9
+ protected $notices = NULL;
10
+ protected static $default_shortcode = '[ecwd id="%s" type="full" page_items="5" event_search="yes" display="full" displays="full,list,week,day" filters=""]';
11
+
12
+ private function __construct() {
13
+ $plugin = ECWD::get_instance();
14
+ $this->prefix = $plugin->get_prefix();
15
+ $this->notices = new ECWD_Notices();
16
+ add_filter('plugin_action_links_' . plugin_basename(plugin_dir_path(__FILE__) . $this->prefix . '.php'), array(
17
+ $this,
18
+ 'add_action_links',
19
+ ));
20
+ $this->ecwd_config();
21
+ // Setup admin stants
22
+ add_action('init', array( $this, 'define_admin_constants' ));
23
+ add_action('init', array( $this, ECWD_PLUGIN_PREFIX . '_shortcode_button' ));
24
+ // Add admin styles and scripts
25
+ add_action('admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ));
26
+ add_action('admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ));
27
+ //Add organizer,venue form event edit page
28
+ add_action('wp_ajax_ecwd_add_post', array( $this, 'wp_ajax_add_post' ));
29
+ add_action('wp_ajax_ecwd_set_default_calendar', array( $this, 'ecwd_set_default_calendar' ));
30
+ //add shortcode in calendar post content
31
+ add_action('wp_insert_post_data', array( $this, 'add_calendar_shortcode' ));
32
+ // Add the options page and menu item.
33
+ add_action('admin_menu', array( $this, 'add_plugin_admin_menu' ), 10);
34
+ foreach ( array( 'post.php', 'post-new.php' ) as $hook ) {
35
+ add_action("admin_head-$hook", array( $this, 'admin_head' ));
36
+ }
37
+ add_action('wp_ajax_ecwd_shortcode', array( $this, 'ecwd_shortcode_data' ));
38
+ add_action('enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ));
39
+ // Runs the admin notice ignore function incase a dismiss button has been clicked
40
+ add_action('admin_init', array( $this, 'admin_notice_ignore' ));
41
+ add_action('admin_notices', array( $this, 'ecwd_admin_notices' ));
42
+ add_action('admin_notices', array( $this, 'ecwd_helper_bar' ), 10000);
43
+ add_filter('parent_file', array( $this, 'ecwd_submenu_parent_file' ));
44
+ $meta_value = get_option('wd_seo_notice_status');
45
+ if ( (!function_exists('wd_bp_install_notice')) && (!is_dir(plugin_dir_path(__DIR__) . 'seo-by-10web')) && ($meta_value === '' || $meta_value === FALSE) ) {
46
+ add_action('admin_notices', array( $this, 'wd_bp_install_notice' ));
47
+ add_action('admin_enqueue_scripts', array( $this, 'wd_bp_script_style' ));
48
+ add_action('wp_ajax_wd_seo_dismiss', array( $this, 'wd_bp_install_notice_status' ));
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
+ add_filter('default_hidden_meta_boxes', array( $this, 'default_hidden_meta_boxes' ), 2, 2);
51
+ add_filter("plugin_row_meta", array( $this, 'ecwd_add_plugin_meta_links' ), 10, 2);
52
+ add_action('untrashed_post', array( $this, 'set_default_metas_to_restored_events' ));
53
+ }
54
 
55
  public function wd_bp_install_notice(){
56
  $get_current = get_current_screen();
includes/ecwd-cpt-class.php CHANGED
@@ -748,9 +748,11 @@ class ECWD_Cpt {
748
  'display_events_organizers_meta'
749
  ), ECWD_PLUGIN_PREFIX . '_event', 'normal', 'high');
750
 
751
- if (current_theme_supports('post-thumbnails', 'post') && post_type_supports('post', 'thumbnail')) {
752
- add_meta_box('postimagediv', __('Featured Image','event-calendar-wd'), 'post_thumbnail_meta_box', null, 'side', 'low');
753
- }
 
 
754
  }
755
 
756
  /**
748
  'display_events_organizers_meta'
749
  ), ECWD_PLUGIN_PREFIX . '_event', 'normal', 'high');
750
 
751
+ global $post;
752
+ $post_type = get_post_type($post);
753
+ if ((self::EVENT_POST_TYPE === $post_type || self::ORGANIZER_POST_TYPE === $post_type || self::VENUE_POST_TYPE === $post_type || self::CALENDAR_POST_TYPE === $post_type || ECWD_PLUGIN_PREFIX . '_theme' === $post_type) && current_theme_supports('post-thumbnails', 'post') && post_type_supports('post', 'thumbnail')) {
754
+ add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
755
+ }
756
  }
757
 
758
  /**
readme.txt CHANGED
@@ -1,850 +1,851 @@
1
- === Event Calendar WD - Responsive Event Calendar plugin ===
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.1
6
- Requires PHP: 5.2
7
- Stable tag: 1.1.25
8
- License: GPLv2 or later
9
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
-
11
- Event Calendar WD is a user-friendly event calendar plugin. This event calendar plugin allows organizing and publishin your events in an easy and elegant way.
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 =
20
-
21
- [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
22
- [WordPress Event Calendar WD](https://10web.io/plugins/wordpress-event-calendar/)
23
- [Demo](https://demo.10web.io/event-calendar/)
24
- [User Guide](https://help.10web.io/hc/en-us/articles/360016499771-Introducing-WordPress-Event-Calendar)
25
- [Support Forum](https://wordpress.org/support/plugin/event-calendar-wd)
26
-
27
-
28
- https://www.youtube.com/watch?v=htmdAkRuIzw
29
-
30
- Event Calendar WD is a user friendly plugin to create an event promotion website or add and manage events to your existing WordPress blog. It’s a highly flexible event organizer plugin to create both, simple one-time events or multiple, recurring events. That's not all, sending event invitations and selling tickets online is easy with this plugin. You can provide a detailed description for all your events using WordPress editor,assign categories and attach tags to each of them. Every calendar is created as a custom post or taxonomy, which enables you to display the calendars among the standard post listings, such as related or latest posts.The plugin will make it easy to spread a word about your events with the social sharing button support, and will let your site visitors easily find events around them using the frontend event search option. Event Calendar WD has a straight-forward admin panel, where you can create and manage your events, add new themes, and customize your calendars.
31
-
32
-
33
-
34
- == Benefits ==
35
- * **Organize as many events as you wish** - With Event Calendar WD you can add unlimited number of events and calendars to your website. Whether you want to go for a one-time event, or add calendars to multiple posts and pages, that’s absolutely doable.
36
- * **Events are easier to find** - Event Calendar WD is SEO-friendly, which means every event you add to your website is optimized for better visibility in search results.
37
- * **Leverage power of social networks** - Don’t let your events go unnoticed. Enable social sharing buttons option on the calendar, and spread a word about your events across the major social platforms. Also, you can sell event tickets directly from your website if you get the Event Tickets Add-on available for the Premium version users.
38
- * **Attract with detailed descriptions** - Give your visitors the most important information they need to know about any event. Provide event venue, mention the hosts and organizers, include images, relevant videos, event link, and mark up the event location on the Google Map.
39
- * **Distinct appearance** - With the available view options, themes and the extensive list of the customization settings, you can fully personalize your calendars and give them a distinct look.
40
- * **Full Control and flexibility** - Event Calendar WD is highly configurable, meaning you’ll get full control over how you display the events and calendars on your site. The user-friendly interface of the plugin, will make it easy to manage and customize your calendars.
41
- * **Support** - The team provides timely and effective support to all its users. We keep standards high and response time low.
42
-
43
-
44
- == What’s in it ==
45
-
46
- = RESPONSIVE LAYOUT =
47
- Event Calendar WD is responsive, designed to provide flawless calendar display across various devices and screen sizes.
48
-
49
- = UNLIMITED EVENTS AND CALENDARS =
50
-
51
- The number of the events as well as the calendars you can add to your website has no limit. Go ahead and fill your website with as many calendars as you want.
52
-
53
- = EVENT CATEGORIES AND TAGS =
54
-
55
- Organizing events on your calendars is super easy. You can assign categories to each of your events and attach as many tags to them as you want.
56
-
57
- = MULTIPLE EVENT DISPLAY VIEWS =
58
-
59
- With Event Calendar WD you can have your calendars displayed in a number of cool views. Currently Month, Week, Day and List views are available in the free option of the plugin, whereas Posterboard, 4-Days and Map views come with the premium option.
60
-
61
- = RECURRING EVENTS =
62
-
63
- If you want to display repeating events on your calendar which are held on a regular basis recurring events option will save you a great deal of time (Premium version). Just specify the event repeating rate under the evet settings and it will automatically be displayed on the calendar.
64
-
65
- = SOCIAL SHARING =
66
-
67
- You can display social sharing buttons on the calendars and let your visitors share your events on Facebook, Google Plus, and Twitter with just a click.
68
-
69
- = CALENDAR WIDGET =
70
-
71
- The calendars are added to the posts and pages with a shortcode, but if you want to display a nice calendar widget on the sidebar areas of your site, you can publish the calendar as a widget.
72
-
73
- = CUSTOMIZABLE THEMES =
74
-
75
- The Premium version of the plugin comes with five customizable calendar themes, that let you personalize the design of you calendars. You can set custom settings for almost every part of the calendar, including overall calendar colors, header, views,pagination, and events. Moreover, you can add new calendar themes with your own styling features.
76
-
77
- = GOOGLE MAPS INTEGRATION =
78
-
79
- The plugin is integrated with Google Maps to help you display event locations. Simply choose a venue for each event and mark up the location on Google Maps, making it super easy for your guests to find venues.
80
-
81
-
82
- == Event Calendar Extensions ==
83
- If you want some additional functionality, like displaying upcoming events, selling online tickets, showing countdown for the events, and let your visitors add events on the calendar from the frontend, there are 14 available add-ons to choose from. Please note that calendar add-ons work with Premium version only. Find the full list of the add-on below.
84
-
85
- _\( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-event-calendar/#product_pricing) )_
86
-
87
- **Event Tickets**
88
- **Frontend Event Management**
89
- **Upcoming Events Widget**
90
- **Filter**
91
- **Subscribe**
92
- **Countdown**
93
- **Google Calendar Integration**
94
- **iCal Integration**
95
- **Facebook Integration**
96
- **Import/Export**
97
- **[Custom Fields**
98
- **Views**
99
- **Export to GCal/ICal**
100
- **Embed**
101
-
102
- = SETTINGS/CUSTOMIZATION =
103
- *Some customizations described here are available in Premium version. Please refer to feature summary for additional info.
104
-
105
- You can add calendars to your website either by inserting the generated shortcode into your posts and pages, or display it as a widget on the sidebar areas of your site. The admin panel of the plugin is pretty straightforward and user-friendly. To add a new calendar you just have to go to the admin panel, click on the “Add a new Calendar” tab and it will open up a new page. Afterwards you need to give a title to the calendar and choose a theme for it. Once you’re done you can preview the calendar, save it as a draft, or publish it right away. You can add events to the calendar either from the admin panel and later assign them to the selected calendars, or by clicking on the date on the calendar itself. To have your event added to the calendar , you need to specify the event name,choose the dates, select the event venue,provide a URL and a relevant video URL if available.For recurring events, you just need to specify the event repeating cycles, such as daily, weekly, monthly, or yearly. Under the settings tab you’ll find an extensive list of the general settings for the calendars that you can adjust to your needs. Here you can select the date display format, enable comments for the events, choose how the events will be organized, enable social icons, and a lot more. You can create new event categories and tags by giving them a title, adding a slug and a description. You can apply the tags and categories to multiple events at ones. For more information about the customization of the calendar settings, please refer to the plugin installation instructions below.
106
-
107
-
108
- [Premium version adds](https://10web.io/plugins/wordpress-event-calendar)
109
-
110
- * Recurring events
111
- * 5 beautiful customizable themes
112
- * 3 premium views: Posterboard, 4-days and Map
113
- * 14 add-ons to expand default functionality
114
-
115
-
116
- ###IMPORTANT:
117
- If you think you found a bug in Event Calendar WD, or have a problem/question concerning the plugin, please check out [Support Forum](https://wordpress.org/support/plugin/event-calendar-wd).
118
-
119
- == Screenshots ==
120
-
121
- 1. WordPress Event Calendar WD - Grey theme
122
- 2. WordPress Event Calendar WD - Calendar
123
- 3. WordPress Event Calendar WD - Calendar With Filter
124
- 4. WordPress Event Calendar WD - Week View
125
- 5. WordPress Event Calendar WD - Event
126
- 6. WordPress Event Calendar WD - Theme Settings
127
- 7. WordPress Event Calendar WD - Create Event
128
- 8. WordPress Event Calendar WD - Edit Venue
129
-
130
- == Frequently Asked Questions ==
131
-
132
-
133
- = 1. How do I publish the calendar in the page or post? =
134
-
135
- To use the created calendars within a page or post you should use the shortcode. Open the page/post from the back end. Press on the Event Calendar WD icon within the editor. The shortcode with three tabs will appear. An alternative is copying the shortcode from the All Calendars subsection (it will take default settings) and further editing it.
136
-
137
- **General**
138
- Select Calendar. Using the drop-down list choose the calendar you want to add.
139
- Events per page in list view. By default 5 events are being listed in list view. You can change the number to the desired quantity.
140
- Enable Event search. Check the box to enable front end search for the events.
141
-
142
- **Views**
143
- You can set up to 7 different views. By using the drop-down you can select a view for each tab. The order of the tabs will be based on the selection.
144
-
145
- **Filters**
146
- This section works with filters add on. You can specify the list of the filtering options you want to display for the front end users.
147
-
148
-
149
- = 2. What add-ons are available for The Events Calendar? =
150
-
151
- You can install a number of management-related, event grouping and integrative add-ons to boost your experience. Please note that the Calendar add-ons are supported by the premium version of Event Calendar WD.
152
-
153
- **FRONTEND MANAGEMENT** - This add-on is designed for allowing the users/guests to add events to the calendar from the front end. In addition, the users can also have permissions to edit/delete their events. The Frontent Management add-on of this event manager plugin turns it into an interactive calendar.
154
-
155
- **IMPORT/EXPORT** - The following data of the Event Calendar WD can be exported and imported: Events, Categories, Venues,Organizers and Tags. The exported/imported data will be in CSV format, which can be further edited, modified and imported.
156
-
157
- **CUSTOM FIELDS** - Custom Fields Add-On will enable you to have more fields for more detailed and structured content: you can use this add-on and create additional fields for each event, venue and organizer.
158
-
159
- **SUBSCRIBE** - Event Calendar Subscription Add-on is a great tool which allows subscribing to events based on category, tag, organizer and venue.
160
-
161
- **EXPORT TO GCAL/ICAL/OUTLOOK** - Export add-on will allow your calendar users to export single or whole month events in CSV and ICS formats and import to their iCalendars, Google and Outlook calendars.
162
-
163
- This is a wonderful feature, since many users often keep their event booking data, restaurant reservations, or schedule on iCal, Google Calendar or Outlook Calendar. With this add-on, you will not need to recreate all these events, simply import them into the events manager.
164
-
165
- **EMBED** - This add-on will allow displaying a calendar from your site to other websites using embed code without need of installing ECWD plugin.
166
-
167
- **FILTER ADD-ON** - This add-on is designed for advanced event filter and browsing. It will display multiple filters, which will make it easier for the user to find the relevant event from the calendar.
168
-
169
- **COUNTDOWN ADD-ON** - With this add-on you can add an elegant countdown to your site. It supports calendar events or a custom one. The styles and colors of the countdown can be modified. It can be used both as widget and shortcode.
170
-
171
- **UPCOMING EVENTS** - The Upcoming events widget is designed for displaying upcoming events lists. The number of events, the event date ranges, as well as the appearance of the widget is fully customizable and easy to manage.
172
-
173
- **VIEWS** - ECWD Views is a convenient add-on for displaying one of the additional Pro views within the pages and posts. The add-on allows choosing the time range of the events, which will be displayed with a particular view.
174
-
175
- **FACEBOOK INTEGRATION** - This addon integrates ECWD with your Facebook page and gives functionality to import events or just display events without importing.
176
-
177
- **GOOGLE CALENDAR INTEGRATION** - This addon integrates ECWD with your Google Calendar and gives functionality to import events or just display events without importing.
178
-
179
- **ICAL INTEGRATION** - This addon integrates ECWD with your iCAL Calendar and gives functionality to import events or just display events without importing.
180
-
181
- **EVENT TICKETS** - Event Tickets Add-on is an easy set up tool for integrating ECWD with WooCommerce to sell tickets for your events. These tickets are sold as bookings from your calendar and you are notified about each sale.
182
-
183
- This event ticketing power-up of the calendar manager plugin allows you to add the following features to your website:
184
-
185
- * event registration/online reservation system,
186
- * appointment booking calendar,
187
- * booking system with a booking form,
188
- * RSVP/booking calendar,
189
- * ticket sales.
190
-
191
- = 3. Can I publish the Calendar as a Widget? =
192
-
193
- Yes, you can publish the events calendar as a widget. To do so, please follow the steps below.
194
-
195
- Go to Appearance>Widgets toolbar.
196
- Find the Event Calendar WD widget and assign it to a custom widget position
197
-
198
- **Title.** Set a title for the widget. Alternatively, you can leave it blank.
199
- **Calendar to Display.** Select the calendar which will be displayed as a widget.
200
- **Display events as.** Here you can set the events to be displayed either in a Month or List view.
201
- **Events per page as a list view.** Here you can set the number of events you want to be displayed when list view is in use.
202
-
203
-
204
- = 4. How do I add a new event in the calendar? =
205
-
206
- Open your availability calendar plugin and navigate to the Add New section in the menu. Here you can create new events by specifying such details, as:
207
- **Title.** Set a title for the event.
208
- **Content.** Provide the details of the event.
209
- **Event Settings:** These settings will help you configure the event dates, repeat rates, URL, venues and organizers.
210
- * **Event Dates.** Specify the starting and finishing dates and times for the event using the datepicker. If the event lasts all day, check the “All Day” option.
211
- * **Repeat Rate.** If the event is recurring, you can set a repeat rate and specify the days for repeating the event on a daily, weekly, monthly or yearly basis.
212
- * **Daily repeat.** Here you can set the frequency of the repeat rate and its finish date. For example, repeat every 4 days until October 5, 2017.
213
- * **Weekly repeat.** Here you can set the finish date and the weekly frequency of the repeat by specifying a repetition day for the selected number of weeks. For example, repeat every 2 weeks on Mondays until October 5, 2015.
214
- * **Monthly repeat.** Here you can set the monthly frequency and the finish date of the repeat. This can be done either by setting the event on the same day of the month as the original event or repeating it on a specified day of the first, second, third, fourth or simply the last week of the month. For example, repeat the event 2 months on the first Friday of the month until October, 2017.
215
- * **Yearly repeat.** Here you can set the yearly frequency and the finish date of the repeat. This can be done by setting the event on the same day of every year as the original event or repeating it every specific month on a specified day of the first, second, third, fourth or simply the last week of that month. For example, repeat the event 2 years on the first Friday of the September until October, 2017.
216
- * **Event Venue.** Select the venue of the event from the existing venues or create a new one by adding a venue title, description, address, phone, website and location using a Google Maps key if necessary. Please note that you need to get a Google Maps key from Google APIs first to be able to configure the Gmaps features and styles in the plugin Settings. As for a newly created venue, it will automatically be added to your Venue list.
217
- * **Event URL.** Set an external URL, which will be included within the event description.
218
- * **Event Video URL.** Set the absolute URL of a YouTube/Vimeo video to be displayed within the event.
219
- * **Calendars.** You can choose the calendar to which the event will be added to.
220
- * **Organizers.** You can choose the organizer of the event from the existing organizers or set a new one by adding the organizer title, description, phone and website.
221
- * **Event Location.** If the venue is not set, you can specify a new location for the event using Google Maps feature. Note that the location will not be added to the Venue list.
222
-
223
- = 5. How to change date format? =
224
-
225
- If you need to change event date format, please open Calendar Settings and type necessary type in Date format input. For instance, in case you want to have dates as 03/1/2015, set the format to M/d/Y.
226
-
227
- = 6. How can I add a Venue to my event? =
228
- To add a new venue navigate to the Venues menu in plugin menu tabs and click on the Add New button.
229
-
230
- You can create new venues by specifying such details, as:
231
-
232
- **Title.** Set a title for the venue.
233
- **Content.** Provide details about the specific venue if necessary.
234
- **Address.** Fill in the address of the venue or show the venue location on Google Maps by checking the ‘Show Google Maps’ option. You can drag and drop the Google Maps marker to the location, which will then be displayed with the event. Please note that you need to get a Google Maps key from Google APIs first to be able to configure the maps features and styles in the plugin Settings.
235
- **Phone.** Fill in the phone number of the venue.
236
- **Website.** Enter the web-address of the venue.
237
- **Featured image.** Set an image to be associated with the specific venue.
238
-
239
-
240
- = 7. Can I filter events based on categories, tags and other attributes? =
241
-
242
- With the help of Event Filter add-on of Event Calendar WD Premium you can add extra user-friendly navigation on your custom calendars.
243
-
244
- The add-on does not require special configuration. When inserting a calendar shortcode into a page or post, all available filters are added automatically. They display as checkboxes, which let users to select one or more options and filter events accordingly.
245
-
246
-
247
- = 8. How can I display an upcoming events calendar on my WordPress site? =
248
-
249
- Premium version of Event Calendar WD plugin provides Upcoming Events add-on. With a simple configuration, it lets you place upcoming events calendar on your website as a WP calendar widget.
250
-
251
-
252
- = 9. Can I display events from my Facebook page on my WordPress calendar? =
253
-
254
- Facebook Integration add-on of Event Calendar WD Pro lets you incorporate Facebook events with your WordPress site, and display the events feed within your WP calendar.
255
-
256
- Turn it into a facebook event calendar by simply providing Facebook page ID when you edit your calendar. Alternatively, you can physically import the events from Import FB Events page, and add them to your Facebook calendar afterwards.
257
-
258
- = 10. How can I integrate Google Calendar with Event Calendar WD? =
259
-
260
- This beautiful calendar plugin for WordPress provides Google Calendar Integration add-on for its Premium version. You can import Gcal into Event Calendar WD, or simply display them on your calendar without importing.
261
-
262
- Simply copy your Google Calendar ID to the corresponding option among WP calendar settings, and the events will appear. When you make changes on your Google Calendar, the events on your attractive calendar will update automatically.
263
-
264
- = 11. Can I let users to add their own events? =
265
-
266
- Frontend Event Management add-on of this events calendar plugin turns your event list into an online booking calendar. It lets users add their own events with desired dates and times, serving as a booking plugin.
267
-
268
- This add-on comes handy, when you require meeting scheduling and appointment booking calendar, or event booking functionality. Users can place event bookings by adding new events from calendar page, which will be queued for website administrator’s approval.
269
-
270
- Tune up Event Calendar WD Pro with Frontend Event Management add-on, and set up a powerful online reservation calendar on your WordPress website!
271
-
272
- = 12. Is it possible to bring iCalendar events into Event Calendar? =
273
-
274
- You can retrieve iCal events lists into the Premium version of this events management plugin using its iCal Integration add-on. Start importing iCal event list to your website calendar in a simple and practical way.
275
-
276
- The iCal Integration add-on allows you to incorporate the events with the following ways:
277
- * Fetch them from iCalendar, without physically having the events in Event Calendar plugin.
278
- * Import the events and bring them to your WordPress site.
279
-
280
- By importing the iCal events, you will bring their descriptions, details, location and settings. You can also choose the category from which you wish to import the events.
281
-
282
- **Note:** Make sure the iCalendar you are trying to incorporate is shared publicly.
283
-
284
- = 13. Can I allow users to buy tickets of events from my calendar? =
285
-
286
- Sell the event subscription through Premium version of this WordPress events manager plugin and its Event Ticketing add-on. It allows you to organize event tickets and reservation easily.
287
-
288
- This add-on is the solution for event ticketing feature, incorporating Event Calendar WD with WooCommerce. The tickets manager tool is easy-to-use. The integration between the add-on and WooCommerce plugin is automatic. With just a few clicks, users are able to buy tickets and make reservation for your event.
289
-
290
- You can set the available dates for ticket sales, price, and stock on the event page. While the tickets are created within Event Calendar WD plugin, the payment of event ticketing is processed by WooCommerce. As the tickets are sold out, visitors will get notified about it with "Sold Out" banner.
291
-
292
- **Note:** Make sure to install/activate WooCommerce plugin to your site in order to use Event Ticketing add-on.
293
-
294
- = 14. How can I show a map of my event location? =
295
-
296
- You can incorporate Google Maps with this event subscription plugin the following way. Edit the venue of your event, then mark **Show Google Maps** checkbox.
297
-
298
- This WordPress events manager plugin will allow you to fill in **Address** of your venue, and Google Maps marker will be placed on the pointed location. You can also specify **Latitude** and **Longitude** of your address. This will make the event reservation process for your users easier.
299
-
300
- Note, that Google Maps API key is required for the maps to display correctly on your events management plugin. To get it, visit [Google API Console](https://console.cloud.google.com/apis/).
301
-
302
- = 15. Can I design the events lists on Month view with colored backgrounds? =
303
-
304
- Using Event Calendar WD WordPress reservation plugin, you can add different background colors to events of each category. To do that, edit the category of your event list, and use **Category color** option to set the background.
305
-
306
- Additionally, you can use **Image** option to place an icon for your event category.
307
-
308
- = 16. How can I have separate event organizers for my events? =
309
-
310
- Event Calendar WD plugin allows you to indicate organizers for each of your events. To begin creating organizers, visit Events > Organizers page, or use Add Organizer link at the bottom of event editor dashboard. Fill in the following information first:
311
-
312
- * Title,
313
- * Description,
314
- * Phone,
315
- * Website.
316
-
317
- Press Save Organizer button. All created organizers will display here as a list.
318
-
319
- In addition to simply showing the host of the event, organizers can contribute to event subscription feature of Subscribe add-on. Users are able to subscribe to events that belong to a selected organizer.
320
-
321
-
322
-
323
- == Installation ==
324
-
325
- #### Thank you for your interest in Event Calendar WD.
326
-
327
- ### Minimum requirements.
328
- * Wordpress 3.9+
329
- * PHP 5.x
330
- * MySQL 5.x
331
-
332
- ### Perform a new installation
333
-
334
- After downloading the ZIP file of the Event Calendar WD plugin,
335
-
336
- 1. Log in to the administrator panel.
337
- 2. Go to Plugins Add > New > Upload.
338
- 3. Click "Choose file" ("Browse") and select the downloaded zip file of the event calendar.
339
- *For Mac Users*
340
- *Go to your Downloads folder and locate the folder with the Event Calendar WD. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
341
- 4. Click "Install Now" button.
342
- 5. Click "Activate Plugin" button for activating the Event Calendar WD.
343
- 6. If the installation does not succeed, please [click here to contact us](https://10web.io/contact-us/).
344
-
345
- == Privacy Policy ==
346
- 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.
347
-
348
- == Changelog ==
349
-
350
- = 1.1.25 =
351
- * Changed: Links to 10Web.io.
352
-
353
- = 1.1.24 =
354
- * New: Integration with 10Web Builder plugin
355
- * New: Separate section for 10Web Plugins
356
- * Fixed: PHP 5.3 compatibility issue
357
-
358
- = 1.1.23 =
359
- * Fixed: Gutenberg compatibility issue
360
-
361
- = 1.1.22 =
362
- * Fixed: XSS vulnerabilities
363
- * Changed: Capability required to edit themes
364
-
365
- = 1.1.21 =
366
- * Fixed: PHP 5.4 error and minor style issues
367
-
368
- = 1.1.20 =
369
- * New: Reset option for settings
370
- * New: Notices about extensions compatibility (Premium)
371
- * New: Delete past events
372
- * Improved: Import/Export menues merged into one (Premium)
373
- * Improved: Recurring events query with caching for better performance (Premium)
374
- * Improved: Number of upcoming events uses posts_per_page as default
375
- * Improved: Better UX when setting Date and time format
376
- * Changed: Do not allow to delete the last theme (Premium)
377
- * Changed: Restore themes if all are deleted
378
- * Changed: Recurring events are added to the slider of related and upcoming events
379
- * Changed: Other optimizations under the hood
380
- * Fixed: Calendar theme shouldn't have view (Premium)
381
- * Fixed: Strip shortcodes from event subscription email (Premium)
382
- * Fixed: Fatal error when inserting countdown in calendar or event content (Premium)
383
-
384
- = 1.1.18 =
385
- * Fixed: Security issue
386
-
387
- = 1.1.17 =
388
- * New: Calendar uninstall
389
- * Improved: Importing iCal all day events (Premium)
390
- * New: Respect event timezone when importing iCal (Premium, requires extension update)
391
- * Fixed: New lines in iCal events descriptions (Premium)
392
- * Improved: Default values of events metadata
393
- * Changed: Other optimizations under the hood
394
-
395
- = 1.1.16 =
396
- * New: GDPR compliance help
397
- * New: WD library updated
398
- * New: Use theme template for single event CPT
399
- * Improved: UX when editing calendar and choosing and adding event to calendar
400
- * Fixed: Event order on category/archive page by event date
401
- * Fixed: Other minor bugs
402
- * Fixed: Password protected events
403
- * Changed: Date inputs hidden from event quick edit params
404
- * Changed: Other optimizations under the hood
405
-
406
- = 1.1.15 =
407
- * Improved: Fully translatable calendar plugin and extensions. Suggest your translations here: https://translate.wordpress.org/projects/wp-plugins/event-calendar-wd
408
- * Improved: Frontend styles of single event, venue and organizer CPT
409
- * Changed: Styles of filters extension (Premium)
410
- * Changed: Some metaboxes moved to higher position
411
-
412
- = 1.1.14 =
413
- * Changed: create_function is deprecated in PHP 7.2
414
- * Changed: Sort organizers and venues by title not slug in post type archive
415
- * Improved: Styles of Gutenberg block popup
416
- * Fixed: Styles of free and premium versions synchronized
417
-
418
- = 1.1.13 =
419
- * Added: Gutenberg integration
420
- * Fixed: Google Maps zoom
421
- * Improved: Russian translation
422
-
423
- = 1.1.12 =
424
- * Improved: Change default calendar using calendar list in dashboard
425
- * Changed: Calendar add-ons and themes do not have separate menu anymore
426
- * Changed: Updates and functionality removed (Premium)
427
-
428
- = 1.1.11 =
429
- * Fixed: Bug on PHP 5.3 version
430
-
431
- = 1.1.10 =
432
- * Changed: Introducing brand new free plugin: SEO by 10Web
433
-
434
- = 1.1.9 =
435
- * Changed: Deactivation popup.
436
- * Fixed: Notice in single event page.
437
-
438
- = 1.1.8 =
439
- * Changed: Web-Dorado links
440
-
441
- = 1.1.7 =
442
- * New: Option to set zoom level in maps view (Pro)
443
- * Fixed: Map displayed without any event for that month (Pro)
444
- * Changed: Minor: WD library updated to version 1.0.12
445
-
446
- = 1.1.6 =
447
- * Fixed: Conflict with some plugins on calendar frontend
448
-
449
- = 1.1.5 =
450
- * Changed: Show notification to install Backup WD plugin only on plugin pages.
451
-
452
- = 1.1.4 =
453
- * Changed: Introducing Backup WD plugin
454
-
455
- = 1.1.3 =
456
- * Changed: Redirect after activation removed
457
- * Changed: WD library updated to version 1.0.11
458
-
459
- = 1.1.2 =
460
- * New: Option to show event timezones on frontend
461
-
462
- = 1.1.1 =
463
- * Changed: Add "ecwd_hide_old_events"=1 as a custom meta field to calendar in order to hide past events and months
464
- * Fixed: PHP notice in events category page when there is no event
465
- * Fixed: JS error when trying to save event with no date
466
- * Fixed: DB changes on silent activation
467
- * Improved: Compatibility of templates for single event and event taxonomy with WooCommerce-compatible themes
468
-
469
- = 1.1.0 =
470
- * Changed: Improved UI of venue editor in event page
471
- * Fixed: Displayed date and time for one day event
472
- * Fixed: Fatal error if PHP Calendar module not loaded
473
- * Fixed: Add new venue from event editor page
474
-
475
- = 1.0.97 =
476
- * Fixed: Remove duplicated post contents form venues and organizers
477
-
478
- = 1.0.96 =
479
- * Fixed: Description on event post
480
-
481
- = 1.0.95 =
482
- * Changed: Plugin interface
483
- * Fixed: Minor bugs
484
-
485
- = 1.0.94 =
486
- * Fixed: Security issue
487
-
488
- = 1.0.93 =
489
- * Fixed: Bug on organizer view
490
-
491
- = 1.0.91 =
492
- * Added: Visible event count per day
493
- * Fixed: Weekly repeating events
494
-
495
- = 1.0.90 =
496
- * Fixed: Helper bar
497
- * Fixed: events archive page
498
- * Fixed: events category archive page
499
-
500
- = 1.0.89 =
501
- * Fixed: Theme update issue
502
- * Fixed: Notices
503
-
504
- = 1.0.88 =
505
- * Added: Helper bar
506
-
507
- = 1.0.87 =
508
- * Added: Overview page
509
- * Changed: Deactivation
510
-
511
- = 1.0.86 =
512
- * Added: "Do not show past events" option
513
-
514
- = 1.0.85 =
515
- * Fixed: Minor bug
516
- * Fixed: Bug on day view
517
-
518
- = 1.0.84 =
519
- * Added: Script keys
520
- * Fixed: Bug on widget
521
- * Fixed: Styles
522
- * Fixed: Back link
523
-
524
- = 1.0.83 =
525
- * Fixed: Calendar search
526
-
527
- = 1.0.82 =
528
- * Changed: Featured plugins
529
-
530
- = 1.0.81 =
531
- * Fixed: Bug on widget list view
532
- * Fixed: Styles
533
-
534
- = 1.0.80 =
535
- * Fixed: Clear cache option notice
536
- * Added: Translations
537
-
538
- = 1.0.79 =
539
- * Added: Widget theme
540
-
541
- = 1.0.78 =
542
- * Added: Event description max length option
543
-
544
- = 1.0.77 =
545
- * Added: Google maps style option
546
- * Added: Latitude,Longitude inputs in event-meta,venue-meta pages
547
-
548
- = 1.0.76 =
549
- * Fixed: Data structures
550
- * Fixed: Bug on Repeating events
551
-
552
- = 1.0.75 =
553
- * Changed: Backend menu
554
-
555
- = 1.0.74 =
556
- * Changed: Organizers, venues cache
557
- * Fixed: Venue edit in event
558
- * Fixed: Gmap js issue
559
-
560
- = 1.0.73 =
561
- * Changed: Settings structure
562
- * Fixed: Minor bug
563
-
564
- = 1.0.72 =
565
- * Fixed: Minor bug
566
-
567
- = 1.0.71 =
568
- * Added: Enable sidebar in event page option
569
-
570
- = 1.0.70 =
571
- * Fixed: Bug on Google Maps
572
-
573
- = 1.0.69 =
574
- * Fixed: Bug on Views add-on
575
- * Changed: Featured themes, plugins pages
576
-
577
- = 1.0.68 =
578
- * Fixed: List view pagination
579
- * Fixed: Week view start
580
-
581
- = 1.0.67 =
582
- * Added: Calendar start date option
583
-
584
- = 1.0.65 =
585
- * Added: Google Maps API Key
586
-
587
- = 1.0.64 =
588
- * Fixed: Translations
589
- * Changed: Open Google map when Marker is clicked option
590
- * Fixed: Mark all days of multi-day event
591
-
592
- = 1.0.63 =
593
- * Added: Show events detail on hover option
594
-
595
- = 1.0.62 =
596
- * Added: Grab the first post image option
597
-
598
- = 1.0.61 =
599
- * Fixed: Conflict with Page Builder by SiteOrigin
600
- * Fixed: Bug on trashed events
601
-
602
- = 1.0.60 =
603
- * Added: Embed add-on
604
-
605
- = 1.0.59 =
606
- * Fixed: Bug on mini calendar
607
- * Fixed: Bug on multi-day events
608
- * Fixed: Bug on event pop-up
609
- * Fixed: Bug on widget
610
-
611
- = 1.0.58 =
612
- * Added: Order of events archive page option
613
- * Fixed: Minor bug
614
-
615
- = 1.0.57 =
616
- * Fixed: Translation
617
-
618
- = 1.0.56 =
619
- * Fixed: Minor bug
620
- * Changed: Event popup position
621
-
622
- = 1.0.55 =
623
- * Fixed: List view events order
624
- * Added: Organaizer on single event
625
- * Added: Portuguese (Brazil) Translation
626
- * Fixed: Description formatting
627
-
628
- = 1.0.54 =
629
- * New: Related events count option
630
-
631
- = 1.0.53 =
632
- * Added: Export to GCal/ICal add-on
633
-
634
- = 1.0.52 =
635
- * Added: Mark all days of multi-day event option
636
-
637
- = 1.0.51 =
638
- * Added: Config page
639
- * Changed: Spanish Translation
640
- * Changed: German Translation
641
- * Changed: Featured plugins/themes page
642
- * Changed: Event details popup direction for 4th day
643
- * Fixed: Scroll issue in mobile
644
-
645
- = 1.0.50 =
646
- * Added: Event Subscribe add-on
647
-
648
- = 1.0.49 =
649
- * Added: Swedish translation by Marcel Króča and Slovak translation by Magnus Juven
650
- * Fixed: Issue with featured image
651
- * Fixed: Pointer bug
652
-
653
- = 1.0.48 =
654
- * Added: Wizard
655
- * Added: Tour
656
- * Added: Czech and Danish translation
657
-
658
- = 1.0.47 =
659
- * Added: Shortcode support on event description
660
-
661
- = 1.0.46 =
662
- * Added: Romanian translation (by Oana Tarce)
663
- * Fixed: Bug for php version < 5.3
664
-
665
- = 1.0.45 =
666
- * Added: Latvian translation (by Intars G.)
667
- * Fixed: Issue with venues dropdown in the back end
668
- * Fixed: CSS issue in calendar views section for 'right to left' languages (e.g. arabic)
669
-
670
- = 1.0.44 =
671
- * Added: Croatian translation
672
- * Added: Sample data
673
-
674
- = 1.0.43 =
675
- * Added: Option for no additional details text
676
-
677
- = 1.0.42 =
678
- * Fixed: Google structured data errors
679
- * Changed: Event hover popup styles
680
-
681
- = 1.0.41 =
682
- * Added: New year promo notice
683
-
684
- = 1.0.40 =
685
- * Added: New theme
686
-
687
- = 1.0.39 =
688
- * Fixed: Date issue for php version < 5.3
689
- * Fixed: German translations
690
-
691
- = 1.0.38 =
692
- * Added: Custom css option
693
-
694
- = 1.0.37 =
695
- * Added: Catalan language support(by Vicenc Huguet)
696
- * Fixed: Views slider js issue
697
-
698
- = 1.0.36 =
699
- * Changed: Responsive pop-up styles
700
- * Changed: Featured plugins
701
-
702
- = 1.0.35 =
703
- * Changed: Category page
704
- * Added: Polish translation
705
-
706
- = 1.0.34 =
707
- * Fixed: Show events issue in list view
708
- * Increased: Date range of events in venue and organizer pages
709
- * Added: Event Tickets add-on
710
-
711
- = 1.0.33 =
712
- * Added: Date format option for list, week and day views
713
- * Fixed: "Back" link in single event page
714
- * Fixed: Shortcode default view issue
715
- * Fixed: Norwegian language files
716
-
717
- = 1.0.32 =
718
- * Fixed: Dates translation issue in posterboard view
719
- * Fixed: Venues show map issue for ajaxed themes
720
- * Fixed: Views slider js issue
721
-
722
- = 1.0.31 =
723
- * Added: Day view option as default to widget
724
- * Added: Close popup by escape
725
- * Added: Finnish translation (by Håkan Mitts)
726
-
727
- = 1.0.30 =
728
- * Added: Mini calendar view for page
729
-
730
- = 1.0.29 =
731
- * Fixed: Norwegian language files name
732
-
733
- = 1.0.28 =
734
- * Added: ECWD Views add-on
735
- * Added: Norwegian (Bokmål) and Norwegian (Nynorsk) languages support(by Vegard Innerdal)
736
-
737
- = 1.0.27 =
738
- * Changed: Added padding to event details for screens < 768
739
- * Changed: Hide next/prev month names for screen < 768
740
- * Fixed: More events popup bug
741
-
742
- = 1.0.26 =
743
- * New: Display Events in popup option
744
-
745
- = 1.0.25 =
746
- * Fixed: Sidebar css in event page for twentyfourteen theme
747
- * Fixed: Calendar widget center css
748
- * Changed: Notices show order
749
-
750
- = 1.0.24 =
751
- * Fixed: Events monthly repeat rate issue
752
- * Added: Week view option to widget
753
- * Added: Custom Fields add-on
754
-
755
- = 1.0.23 =
756
- * Added: Frontend events management add-on
757
- * Fixed: Rewrite rules for custom permalinks structure
758
- * Fixed: JS error in related events slider
759
- * Added: Hungarian language support
760
- * Added: Serbian language support
761
- * Fixed: Translations for Dutch
762
-
763
- = 1.0.22 =
764
- * Added: Ajaxed themes support
765
- * Fixed: Next month link issue
766
- * Changed: More events dialog
767
- * Added: Support/rate us messages
768
-
769
- = 1.0.21 =
770
- * Fixed: JS error in widgets page
771
-
772
- = 1.0.20 =
773
- * Fixed: Show event url issue
774
- * Added: "noindex, nofollow" to calendar links
775
- * Added: Open pop in new tab option
776
- * Added: Japanese support
777
-
778
- = 1.0.19 =
779
- * Minor bug fixed
780
-
781
- = 1.0.18 =
782
- * Added: Themes folder
783
- * Changed: Related events title style
784
- * Added: Apply category color to event title in event page option
785
-
786
- = 1.0.17 =
787
- * Fixed: Time format issue
788
-
789
- = 1.0.16 =
790
- * Added: Show the repeat rate in event page option
791
-
792
- = 1.0.15 =
793
- * Added: Show AM/PM option
794
-
795
- = 1.0.14 =
796
- * Fixed: Conflict with Avada theme
797
- * Added: Date to events link
798
-
799
- = 1.0.13 =
800
- * Changed: Calendar Add-ons page
801
-
802
- = 1.0.11 =
803
- * Changed: Calendar Add-ons page
804
-
805
- = 1.0.10 =
806
- * Added: Organizers and venues archive page order option
807
- * Added: Show categories and tags in event page option
808
- * Fixed: Featured image sizes in widget
809
-
810
- = 1.0.9 =
811
- * Fixed: Show google maps conflict with other plugins
812
- * Fixed: Geolocation bug
813
- * Fixed: Save organizer featured image issue
814
-
815
- = 1.0.8 =
816
- * Changed: Event page
817
- * Added: Portuguese language
818
-
819
- = 1.0.7 =
820
- * New: Related events slider
821
- * New: Enable/disable rewrite rule option
822
-
823
- = 1.0.6 =
824
- * Changed: Removed Add Venue link
825
- * Fixed: Delete event from calendar page issue
826
-
827
- = 1.0.5 =
828
- * New: Events Filters in backend
829
- * Fixed: Bug in shortcode
830
-
831
- = 1.0.4 =
832
- * Fixed: Bug in add/edit calendar
833
-
834
- = 1.0.3 =
835
- * New: Event template
836
- * New: "Show map in event page" option
837
- * Changed: "Repeat until" field is required
838
-
839
- = 1.0.2 =
840
- * Fixed: Minor bugs
841
-
842
- = 1.0.1 =
843
- * Fixed: Bug in Week view
844
- * Fixed: Permalink bug
845
-
846
- = 1.0.0 =
847
- * Initial version
848
-
849
-
850
-
 
1
+ === Event Calendar WD - Responsive Event Calendar plugin ===
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.1
6
+ Requires PHP: 5.2
7
+ Stable tag: 1.1.26
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Event Calendar WD is a user-friendly event calendar plugin. This event calendar plugin allows organizing and publishin your events in an easy and elegant way.
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 =
20
+
21
+ [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
22
+ [WordPress Event Calendar WD](https://10web.io/plugins/wordpress-event-calendar/)
23
+ [Demo](https://demo.10web.io/event-calendar/)
24
+ [User Guide](https://help.10web.io/hc/en-us/articles/360016499771-Introducing-WordPress-Event-Calendar)
25
+ [Support Forum](https://wordpress.org/support/plugin/event-calendar-wd)
26
+
27
+
28
+ https://www.youtube.com/watch?v=htmdAkRuIzw
29
+
30
+ Event Calendar WD is a user friendly plugin to create an event promotion website or add and manage events to your existing WordPress blog. It’s a highly flexible event organizer plugin to create both, simple one-time events or multiple, recurring events. That's not all, sending event invitations and selling tickets online is easy with this plugin. You can provide a detailed description for all your events using WordPress editor,assign categories and attach tags to each of them. Every calendar is created as a custom post or taxonomy, which enables you to display the calendars among the standard post listings, such as related or latest posts.The plugin will make it easy to spread a word about your events with the social sharing button support, and will let your site visitors easily find events around them using the frontend event search option. Event Calendar WD has a straight-forward admin panel, where you can create and manage your events, add new themes, and customize your calendars.
31
+
32
+
33
+
34
+ == Benefits ==
35
+ * **Organize as many events as you wish** - With Event Calendar WD you can add unlimited number of events and calendars to your website. Whether you want to go for a one-time event, or add calendars to multiple posts and pages, that’s absolutely doable.
36
+ * **Events are easier to find** - Event Calendar WD is SEO-friendly, which means every event you add to your website is optimized for better visibility in search results.
37
+ * **Leverage power of social networks** - Don’t let your events go unnoticed. Enable social sharing buttons option on the calendar, and spread a word about your events across the major social platforms. Also, you can sell event tickets directly from your website if you get the Event Tickets Add-on available for the Premium version users.
38
+ * **Attract with detailed descriptions** - Give your visitors the most important information they need to know about any event. Provide event venue, mention the hosts and organizers, include images, relevant videos, event link, and mark up the event location on the Google Map.
39
+ * **Distinct appearance** - With the available view options, themes and the extensive list of the customization settings, you can fully personalize your calendars and give them a distinct look.
40
+ * **Full Control and flexibility** - Event Calendar WD is highly configurable, meaning you’ll get full control over how you display the events and calendars on your site. The user-friendly interface of the plugin, will make it easy to manage and customize your calendars.
41
+ * **Support** - The team provides timely and effective support to all its users. We keep standards high and response time low.
42
+
43
+
44
+ == What’s in it ==
45
+
46
+ = RESPONSIVE LAYOUT =
47
+ Event Calendar WD is responsive, designed to provide flawless calendar display across various devices and screen sizes.
48
+
49
+ = UNLIMITED EVENTS AND CALENDARS =
50
+
51
+ The number of the events as well as the calendars you can add to your website has no limit. Go ahead and fill your website with as many calendars as you want.
52
+
53
+ = EVENT CATEGORIES AND TAGS =
54
+
55
+ Organizing events on your calendars is super easy. You can assign categories to each of your events and attach as many tags to them as you want.
56
+
57
+ = MULTIPLE EVENT DISPLAY VIEWS =
58
+
59
+ With Event Calendar WD you can have your calendars displayed in a number of cool views. Currently Month, Week, Day and List views are available in the free option of the plugin, whereas Posterboard, 4-Days and Map views come with the premium option.
60
+
61
+ = RECURRING EVENTS =
62
+
63
+ If you want to display repeating events on your calendar which are held on a regular basis recurring events option will save you a great deal of time (Premium version). Just specify the event repeating rate under the evet settings and it will automatically be displayed on the calendar.
64
+
65
+ = SOCIAL SHARING =
66
+
67
+ You can display social sharing buttons on the calendars and let your visitors share your events on Facebook, Google Plus, and Twitter with just a click.
68
+
69
+ = CALENDAR WIDGET =
70
+
71
+ The calendars are added to the posts and pages with a shortcode, but if you want to display a nice calendar widget on the sidebar areas of your site, you can publish the calendar as a widget.
72
+
73
+ = CUSTOMIZABLE THEMES =
74
+
75
+ The Premium version of the plugin comes with five customizable calendar themes, that let you personalize the design of you calendars. You can set custom settings for almost every part of the calendar, including overall calendar colors, header, views,pagination, and events. Moreover, you can add new calendar themes with your own styling features.
76
+
77
+ = GOOGLE MAPS INTEGRATION =
78
+
79
+ The plugin is integrated with Google Maps to help you display event locations. Simply choose a venue for each event and mark up the location on Google Maps, making it super easy for your guests to find venues.
80
+
81
+
82
+ == Event Calendar Extensions ==
83
+ If you want some additional functionality, like displaying upcoming events, selling online tickets, showing countdown for the events, and let your visitors add events on the calendar from the frontend, there are 14 available add-ons to choose from. Please note that calendar add-ons work with Premium version only. Find the full list of the add-on below.
84
+
85
+ _\( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-event-calendar/#product_pricing) )_
86
+
87
+ **Event Tickets**
88
+ **Frontend Event Management**
89
+ **Upcoming Events Widget**
90
+ **Filter**
91
+ **Subscribe**
92
+ **Countdown**
93
+ **Google Calendar Integration**
94
+ **iCal Integration**
95
+ **Facebook Integration**
96
+ **Import/Export**
97
+ **[Custom Fields**
98
+ **Views**
99
+ **Export to GCal/ICal**
100
+ **Embed**
101
+
102
+ = SETTINGS/CUSTOMIZATION =
103
+ *Some customizations described here are available in Premium version. Please refer to feature summary for additional info.
104
+
105
+ You can add calendars to your website either by inserting the generated shortcode into your posts and pages, or display it as a widget on the sidebar areas of your site. The admin panel of the plugin is pretty straightforward and user-friendly. To add a new calendar you just have to go to the admin panel, click on the “Add a new Calendar” tab and it will open up a new page. Afterwards you need to give a title to the calendar and choose a theme for it. Once you’re done you can preview the calendar, save it as a draft, or publish it right away. You can add events to the calendar either from the admin panel and later assign them to the selected calendars, or by clicking on the date on the calendar itself. To have your event added to the calendar , you need to specify the event name,choose the dates, select the event venue,provide a URL and a relevant video URL if available.For recurring events, you just need to specify the event repeating cycles, such as daily, weekly, monthly, or yearly. Under the settings tab you’ll find an extensive list of the general settings for the calendars that you can adjust to your needs. Here you can select the date display format, enable comments for the events, choose how the events will be organized, enable social icons, and a lot more. You can create new event categories and tags by giving them a title, adding a slug and a description. You can apply the tags and categories to multiple events at ones. For more information about the customization of the calendar settings, please refer to the plugin installation instructions below.
106
+
107
+
108
+ [Premium version adds](https://10web.io/plugins/wordpress-event-calendar)
109
+
110
+ * Recurring events
111
+ * 5 beautiful customizable themes
112
+ * 3 premium views: Posterboard, 4-days and Map
113
+ * 14 add-ons to expand default functionality
114
+
115
+
116
+ ###IMPORTANT:
117
+ If you think you found a bug in Event Calendar WD, or have a problem/question concerning the plugin, please check out [Support Forum](https://wordpress.org/support/plugin/event-calendar-wd).
118
+
119
+ == Screenshots ==
120
+
121
+ 1. WordPress Event Calendar WD - Grey theme
122
+ 2. WordPress Event Calendar WD - Calendar
123
+ 3. WordPress Event Calendar WD - Calendar With Filter
124
+ 4. WordPress Event Calendar WD - Week View
125
+ 5. WordPress Event Calendar WD - Event
126
+ 6. WordPress Event Calendar WD - Theme Settings
127
+ 7. WordPress Event Calendar WD - Create Event
128
+ 8. WordPress Event Calendar WD - Edit Venue
129
+
130
+ == Frequently Asked Questions ==
131
+
132
+
133
+ = 1. How do I publish the calendar in the page or post? =
134
+
135
+ To use the created calendars within a page or post you should use the shortcode. Open the page/post from the back end. Press on the Event Calendar WD icon within the editor. The shortcode with three tabs will appear. An alternative is copying the shortcode from the All Calendars subsection (it will take default settings) and further editing it.
136
+
137
+ **General**
138
+ Select Calendar. Using the drop-down list choose the calendar you want to add.
139
+ Events per page in list view. By default 5 events are being listed in list view. You can change the number to the desired quantity.
140
+ Enable Event search. Check the box to enable front end search for the events.
141
+
142
+ **Views**
143
+ You can set up to 7 different views. By using the drop-down you can select a view for each tab. The order of the tabs will be based on the selection.
144
+
145
+ **Filters**
146
+ This section works with filters add on. You can specify the list of the filtering options you want to display for the front end users.
147
+
148
+
149
+ = 2. What add-ons are available for The Events Calendar? =
150
+
151
+ You can install a number of management-related, event grouping and integrative add-ons to boost your experience. Please note that the Calendar add-ons are supported by the premium version of Event Calendar WD.
152
+
153
+ **FRONTEND MANAGEMENT** - This add-on is designed for allowing the users/guests to add events to the calendar from the front end. In addition, the users can also have permissions to edit/delete their events. The Frontent Management add-on of this event manager plugin turns it into an interactive calendar.
154
+
155
+ **IMPORT/EXPORT** - The following data of the Event Calendar WD can be exported and imported: Events, Categories, Venues,Organizers and Tags. The exported/imported data will be in CSV format, which can be further edited, modified and imported.
156
+
157
+ **CUSTOM FIELDS** - Custom Fields Add-On will enable you to have more fields for more detailed and structured content: you can use this add-on and create additional fields for each event, venue and organizer.
158
+
159
+ **SUBSCRIBE** - Event Calendar Subscription Add-on is a great tool which allows subscribing to events based on category, tag, organizer and venue.
160
+
161
+ **EXPORT TO GCAL/ICAL/OUTLOOK** - Export add-on will allow your calendar users to export single or whole month events in CSV and ICS formats and import to their iCalendars, Google and Outlook calendars.
162
+
163
+ This is a wonderful feature, since many users often keep their event booking data, restaurant reservations, or schedule on iCal, Google Calendar or Outlook Calendar. With this add-on, you will not need to recreate all these events, simply import them into the events manager.
164
+
165
+ **EMBED** - This add-on will allow displaying a calendar from your site to other websites using embed code without need of installing ECWD plugin.
166
+
167
+ **FILTER ADD-ON** - This add-on is designed for advanced event filter and browsing. It will display multiple filters, which will make it easier for the user to find the relevant event from the calendar.
168
+
169
+ **COUNTDOWN ADD-ON** - With this add-on you can add an elegant countdown to your site. It supports calendar events or a custom one. The styles and colors of the countdown can be modified. It can be used both as widget and shortcode.
170
+
171
+ **UPCOMING EVENTS** - The Upcoming events widget is designed for displaying upcoming events lists. The number of events, the event date ranges, as well as the appearance of the widget is fully customizable and easy to manage.
172
+
173
+ **VIEWS** - ECWD Views is a convenient add-on for displaying one of the additional Pro views within the pages and posts. The add-on allows choosing the time range of the events, which will be displayed with a particular view.
174
+
175
+ **FACEBOOK INTEGRATION** - This addon integrates ECWD with your Facebook page and gives functionality to import events or just display events without importing.
176
+
177
+ **GOOGLE CALENDAR INTEGRATION** - This addon integrates ECWD with your Google Calendar and gives functionality to import events or just display events without importing.
178
+
179
+ **ICAL INTEGRATION** - This addon integrates ECWD with your iCAL Calendar and gives functionality to import events or just display events without importing.
180
+
181
+ **EVENT TICKETS** - Event Tickets Add-on is an easy set up tool for integrating ECWD with WooCommerce to sell tickets for your events. These tickets are sold as bookings from your calendar and you are notified about each sale.
182
+
183
+ This event ticketing power-up of the calendar manager plugin allows you to add the following features to your website:
184
+
185
+ * event registration/online reservation system,
186
+ * appointment booking calendar,
187
+ * booking system with a booking form,
188
+ * RSVP/booking calendar,
189
+ * ticket sales.
190
+
191
+ = 3. Can I publish the Calendar as a Widget? =
192
+
193
+ Yes, you can publish the events calendar as a widget. To do so, please follow the steps below.
194
+
195
+ Go to Appearance>Widgets toolbar.
196
+ Find the Event Calendar WD widget and assign it to a custom widget position
197
+
198
+ **Title.** Set a title for the widget. Alternatively, you can leave it blank.
199
+ **Calendar to Display.** Select the calendar which will be displayed as a widget.
200
+ **Display events as.** Here you can set the events to be displayed either in a Month or List view.
201
+ **Events per page as a list view.** Here you can set the number of events you want to be displayed when list view is in use.
202
+
203
+
204
+ = 4. How do I add a new event in the calendar? =
205
+
206
+ Open your availability calendar plugin and navigate to the Add New section in the menu. Here you can create new events by specifying such details, as:
207
+ **Title.** Set a title for the event.
208
+ **Content.** Provide the details of the event.
209
+ **Event Settings:** These settings will help you configure the event dates, repeat rates, URL, venues and organizers.
210
+ * **Event Dates.** Specify the starting and finishing dates and times for the event using the datepicker. If the event lasts all day, check the “All Day” option.
211
+ * **Repeat Rate.** If the event is recurring, you can set a repeat rate and specify the days for repeating the event on a daily, weekly, monthly or yearly basis.
212
+ * **Daily repeat.** Here you can set the frequency of the repeat rate and its finish date. For example, repeat every 4 days until October 5, 2017.
213
+ * **Weekly repeat.** Here you can set the finish date and the weekly frequency of the repeat by specifying a repetition day for the selected number of weeks. For example, repeat every 2 weeks on Mondays until October 5, 2015.
214
+ * **Monthly repeat.** Here you can set the monthly frequency and the finish date of the repeat. This can be done either by setting the event on the same day of the month as the original event or repeating it on a specified day of the first, second, third, fourth or simply the last week of the month. For example, repeat the event 2 months on the first Friday of the month until October, 2017.
215
+ * **Yearly repeat.** Here you can set the yearly frequency and the finish date of the repeat. This can be done by setting the event on the same day of every year as the original event or repeating it every specific month on a specified day of the first, second, third, fourth or simply the last week of that month. For example, repeat the event 2 years on the first Friday of the September until October, 2017.
216
+ * **Event Venue.** Select the venue of the event from the existing venues or create a new one by adding a venue title, description, address, phone, website and location using a Google Maps key if necessary. Please note that you need to get a Google Maps key from Google APIs first to be able to configure the Gmaps features and styles in the plugin Settings. As for a newly created venue, it will automatically be added to your Venue list.
217
+ * **Event URL.** Set an external URL, which will be included within the event description.
218
+ * **Event Video URL.** Set the absolute URL of a YouTube/Vimeo video to be displayed within the event.
219
+ * **Calendars.** You can choose the calendar to which the event will be added to.
220
+ * **Organizers.** You can choose the organizer of the event from the existing organizers or set a new one by adding the organizer title, description, phone and website.
221
+ * **Event Location.** If the venue is not set, you can specify a new location for the event using Google Maps feature. Note that the location will not be added to the Venue list.
222
+
223
+ = 5. How to change date format? =
224
+
225
+ If you need to change event date format, please open Calendar Settings and type necessary type in Date format input. For instance, in case you want to have dates as 03/1/2015, set the format to M/d/Y.
226
+
227
+ = 6. How can I add a Venue to my event? =
228
+ To add a new venue navigate to the Venues menu in plugin menu tabs and click on the Add New button.
229
+
230
+ You can create new venues by specifying such details, as:
231
+
232
+ **Title.** Set a title for the venue.
233
+ **Content.** Provide details about the specific venue if necessary.
234
+ **Address.** Fill in the address of the venue or show the venue location on Google Maps by checking the ‘Show Google Maps’ option. You can drag and drop the Google Maps marker to the location, which will then be displayed with the event. Please note that you need to get a Google Maps key from Google APIs first to be able to configure the maps features and styles in the plugin Settings.
235
+ **Phone.** Fill in the phone number of the venue.
236
+ **Website.** Enter the web-address of the venue.
237
+ **Featured image.** Set an image to be associated with the specific venue.
238
+
239
+
240
+ = 7. Can I filter events based on categories, tags and other attributes? =
241
+
242
+ With the help of Event Filter add-on of Event Calendar WD Premium you can add extra user-friendly navigation on your custom calendars.
243
+
244
+ The add-on does not require special configuration. When inserting a calendar shortcode into a page or post, all available filters are added automatically. They display as checkboxes, which let users to select one or more options and filter events accordingly.
245
+
246
+
247
+ = 8. How can I display an upcoming events calendar on my WordPress site? =
248
+
249
+ Premium version of Event Calendar WD plugin provides Upcoming Events add-on. With a simple configuration, it lets you place upcoming events calendar on your website as a WP calendar widget.
250
+
251
+
252
+ = 9. Can I display events from my Facebook page on my WordPress calendar? =
253
+
254
+ Facebook Integration add-on of Event Calendar WD Pro lets you incorporate Facebook events with your WordPress site, and display the events feed within your WP calendar.
255
+
256
+ Turn it into a facebook event calendar by simply providing Facebook page ID when you edit your calendar. Alternatively, you can physically import the events from Import FB Events page, and add them to your Facebook calendar afterwards.
257
+
258
+ = 10. How can I integrate Google Calendar with Event Calendar WD? =
259
+
260
+ This beautiful calendar plugin for WordPress provides Google Calendar Integration add-on for its Premium version. You can import Gcal into Event Calendar WD, or simply display them on your calendar without importing.
261
+
262
+ Simply copy your Google Calendar ID to the corresponding option among WP calendar settings, and the events will appear. When you make changes on your Google Calendar, the events on your attractive calendar will update automatically.
263
+
264
+ = 11. Can I let users to add their own events? =
265
+
266
+ Frontend Event Management add-on of this events calendar plugin turns your event list into an online booking calendar. It lets users add their own events with desired dates and times, serving as a booking plugin.
267
+
268
+ This add-on comes handy, when you require meeting scheduling and appointment booking calendar, or event booking functionality. Users can place event bookings by adding new events from calendar page, which will be queued for website administrator’s approval.
269
+
270
+ Tune up Event Calendar WD Pro with Frontend Event Management add-on, and set up a powerful online reservation calendar on your WordPress website!
271
+
272
+ = 12. Is it possible to bring iCalendar events into Event Calendar? =
273
+
274
+ You can retrieve iCal events lists into the Premium version of this events management plugin using its iCal Integration add-on. Start importing iCal event list to your website calendar in a simple and practical way.
275
+
276
+ The iCal Integration add-on allows you to incorporate the events with the following ways:
277
+ * Fetch them from iCalendar, without physically having the events in Event Calendar plugin.
278
+ * Import the events and bring them to your WordPress site.
279
+
280
+ By importing the iCal events, you will bring their descriptions, details, location and settings. You can also choose the category from which you wish to import the events.
281
+
282
+ **Note:** Make sure the iCalendar you are trying to incorporate is shared publicly.
283
+
284
+ = 13. Can I allow users to buy tickets of events from my calendar? =
285
+
286
+ Sell the event subscription through Premium version of this WordPress events manager plugin and its Event Ticketing add-on. It allows you to organize event tickets and reservation easily.
287
+
288
+ This add-on is the solution for event ticketing feature, incorporating Event Calendar WD with WooCommerce. The tickets manager tool is easy-to-use. The integration between the add-on and WooCommerce plugin is automatic. With just a few clicks, users are able to buy tickets and make reservation for your event.
289
+
290
+ You can set the available dates for ticket sales, price, and stock on the event page. While the tickets are created within Event Calendar WD plugin, the payment of event ticketing is processed by WooCommerce. As the tickets are sold out, visitors will get notified about it with "Sold Out" banner.
291
+
292
+ **Note:** Make sure to install/activate WooCommerce plugin to your site in order to use Event Ticketing add-on.
293
+
294
+ = 14. How can I show a map of my event location? =
295
+
296
+ You can incorporate Google Maps with this event subscription plugin the following way. Edit the venue of your event, then mark **Show Google Maps** checkbox.
297
+
298
+ This WordPress events manager plugin will allow you to fill in **Address** of your venue, and Google Maps marker will be placed on the pointed location. You can also specify **Latitude** and **Longitude** of your address. This will make the event reservation process for your users easier.
299
+
300
+ Note, that Google Maps API key is required for the maps to display correctly on your events management plugin. To get it, visit [Google API Console](https://console.cloud.google.com/apis/).
301
+
302
+ = 15. Can I design the events lists on Month view with colored backgrounds? =
303
+
304
+ Using Event Calendar WD WordPress reservation plugin, you can add different background colors to events of each category. To do that, edit the category of your event list, and use **Category color** option to set the background.
305
+
306
+ Additionally, you can use **Image** option to place an icon for your event category.
307
+
308
+ = 16. How can I have separate event organizers for my events? =
309
+
310
+ Event Calendar WD plugin allows you to indicate organizers for each of your events. To begin creating organizers, visit Events > Organizers page, or use Add Organizer link at the bottom of event editor dashboard. Fill in the following information first:
311
+
312
+ * Title,
313
+ * Description,
314
+ * Phone,
315
+ * Website.
316
+
317
+ Press Save Organizer button. All created organizers will display here as a list.
318
+
319
+ In addition to simply showing the host of the event, organizers can contribute to event subscription feature of Subscribe add-on. Users are able to subscribe to events that belong to a selected organizer.
320
+
321
+
322
+
323
+ == Installation ==
324
+
325
+ #### Thank you for your interest in Event Calendar WD.
326
+
327
+ ### Minimum requirements.
328
+ * Wordpress 3.9+
329
+ * PHP 5.x
330
+ * MySQL 5.x
331
+
332
+ ### Perform a new installation
333
+
334
+ After downloading the ZIP file of the Event Calendar WD plugin,
335
+
336
+ 1. Log in to the administrator panel.
337
+ 2. Go to Plugins Add > New > Upload.
338
+ 3. Click "Choose file" ("Browse") and select the downloaded zip file of the event calendar.
339
+ *For Mac Users*
340
+ *Go to your Downloads folder and locate the folder with the Event Calendar WD. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
341
+ 4. Click "Install Now" button.
342
+ 5. Click "Activate Plugin" button for activating the Event Calendar WD.
343
+ 6. If the installation does not succeed, please [click here to contact us](https://10web.io/contact-us/).
344
+
345
+ == Privacy Policy ==
346
+ 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.
347
+
348
+ == Changelog ==
349
+
350
+ = 1.1.26 =
351
+ * Fixed: Featured image saving.
352
+ * Fixed: Conflict with PHP 5.3.
353
+
354
+ = 1.1.25 =
355
+ * Changed: Links to 10Web.io.
356
+
357
+ = 1.1.24 =
358
+ * New: Integration with 10Web Builder plugin
359
+ * New: Separate section for 10Web Plugins
360
+ * Fixed: PHP 5.3 compatibility issue
361
+
362
+ = 1.1.23 =
363
+ * Fixed: Gutenberg compatibility issue
364
+
365
+ = 1.1.22 =
366
+ * Fixed: XSS vulnerabilities
367
+ * Changed: Capability required to edit themes
368
+
369
+ = 1.1.21 =
370
+ * Fixed: PHP 5.4 error and minor style issues
371
+
372
+ = 1.1.20 =
373
+ * New: Reset option for settings
374
+ * New: Notices about extensions compatibility (Premium)
375
+ * New: Delete past events
376
+ * Improved: Import/Export menues merged into one (Premium)
377
+ * Improved: Recurring events query with caching for better performance (Premium)
378
+ * Improved: Number of upcoming events uses posts_per_page as default
379
+ * Improved: Better UX when setting Date and time format
380
+ * Changed: Do not allow to delete the last theme (Premium)
381
+ * Changed: Restore themes if all are deleted
382
+ * Changed: Recurring events are added to the slider of related and upcoming events
383
+ * Changed: Other optimizations under the hood
384
+ * Fixed: Calendar theme shouldn't have view (Premium)
385
+ * Fixed: Strip shortcodes from event subscription email (Premium)
386
+ * Fixed: Fatal error when inserting countdown in calendar or event content (Premium)
387
+
388
+ = 1.1.18 =
389
+ * Fixed: Security issue
390
+
391
+ = 1.1.17 =
392
+ * New: Calendar uninstall
393
+ * Improved: Importing iCal all day events (Premium)
394
+ * New: Respect event timezone when importing iCal (Premium, requires extension update)
395
+ * Fixed: New lines in iCal events descriptions (Premium)
396
+ * Improved: Default values of events metadata
397
+ * Changed: Other optimizations under the hood
398
+
399
+ = 1.1.16 =
400
+ * New: GDPR compliance help
401
+ * New: WD library updated
402
+ * New: Use theme template for single event CPT
403
+ * Improved: UX when editing calendar and choosing and adding event to calendar
404
+ * Fixed: Event order on category/archive page by event date
405
+ * Fixed: Other minor bugs
406
+ * Fixed: Password protected events
407
+ * Changed: Date inputs hidden from event quick edit params
408
+ * Changed: Other optimizations under the hood
409
+
410
+ = 1.1.15 =
411
+ * Improved: Fully translatable calendar plugin and extensions. Suggest your translations here: https://translate.wordpress.org/projects/wp-plugins/event-calendar-wd
412
+ * Improved: Frontend styles of single event, venue and organizer CPT
413
+ * Changed: Styles of filters extension (Premium)
414
+ * Changed: Some metaboxes moved to higher position
415
+
416
+ = 1.1.14 =
417
+ * Changed: create_function is deprecated in PHP 7.2
418
+ * Changed: Sort organizers and venues by title not slug in post type archive
419
+ * Improved: Styles of Gutenberg block popup
420
+ * Fixed: Styles of free and premium versions synchronized
421
+
422
+ = 1.1.13 =
423
+ * Added: Gutenberg integration
424
+ * Fixed: Google Maps zoom
425
+ * Improved: Russian translation
426
+
427
+ = 1.1.12 =
428
+ * Improved: Change default calendar using calendar list in dashboard
429
+ * Changed: Calendar add-ons and themes do not have separate menu anymore
430
+ * Changed: Updates and functionality removed (Premium)
431
+
432
+ = 1.1.11 =
433
+ * Fixed: Bug on PHP 5.3 version
434
+
435
+ = 1.1.10 =
436
+ * Changed: Introducing brand new free plugin: SEO by 10Web
437
+
438
+ = 1.1.9 =
439
+ * Changed: Deactivation popup.
440
+ * Fixed: Notice in single event page.
441
+
442
+ = 1.1.8 =
443
+ * Changed: Web-Dorado links
444
+
445
+ = 1.1.7 =
446
+ * New: Option to set zoom level in maps view (Pro)
447
+ * Fixed: Map displayed without any event for that month (Pro)
448
+ * Changed: Minor: WD library updated to version 1.0.12
449
+
450
+ = 1.1.6 =
451
+ * Fixed: Conflict with some plugins on calendar frontend
452
+
453
+ = 1.1.5 =
454
+ * Changed: Show notification to install Backup WD plugin only on plugin pages.
455
+
456
+ = 1.1.4 =
457
+ * Changed: Introducing Backup WD plugin
458
+
459
+ = 1.1.3 =
460
+ * Changed: Redirect after activation removed
461
+ * Changed: WD library updated to version 1.0.11
462
+
463
+ = 1.1.2 =
464
+ * New: Option to show event timezones on frontend
465
+
466
+ = 1.1.1 =
467
+ * Changed: Add "ecwd_hide_old_events"=1 as a custom meta field to calendar in order to hide past events and months
468
+ * Fixed: PHP notice in events category page when there is no event
469
+ * Fixed: JS error when trying to save event with no date
470
+ * Fixed: DB changes on silent activation
471
+ * Improved: Compatibility of templates for single event and event taxonomy with WooCommerce-compatible themes
472
+
473
+ = 1.1.0 =
474
+ * Changed: Improved UI of venue editor in event page
475
+ * Fixed: Displayed date and time for one day event
476
+ * Fixed: Fatal error if PHP Calendar module not loaded
477
+ * Fixed: Add new venue from event editor page
478
+
479
+ = 1.0.97 =
480
+ * Fixed: Remove duplicated post contents form venues and organizers
481
+
482
+ = 1.0.96 =
483
+ * Fixed: Description on event post
484
+
485
+ = 1.0.95 =
486
+ * Changed: Plugin interface
487
+ * Fixed: Minor bugs
488
+
489
+ = 1.0.94 =
490
+ * Fixed: Security issue
491
+
492
+ = 1.0.93 =
493
+ * Fixed: Bug on organizer view
494
+
495
+ = 1.0.91 =
496
+ * Added: Visible event count per day
497
+ * Fixed: Weekly repeating events
498
+
499
+ = 1.0.90 =
500
+ * Fixed: Helper bar
501
+ * Fixed: events archive page
502
+ * Fixed: events category archive page
503
+
504
+ = 1.0.89 =
505
+ * Fixed: Theme update issue
506
+ * Fixed: Notices
507
+
508
+ = 1.0.88 =
509
+ * Added: Helper bar
510
+
511
+ = 1.0.87 =
512
+ * Added: Overview page
513
+ * Changed: Deactivation
514
+
515
+ = 1.0.86 =
516
+ * Added: "Do not show past events" option
517
+
518
+ = 1.0.85 =
519
+ * Fixed: Minor bug
520
+ * Fixed: Bug on day view
521
+
522
+ = 1.0.84 =
523
+ * Added: Script keys
524
+ * Fixed: Bug on widget
525
+ * Fixed: Styles
526
+ * Fixed: Back link
527
+
528
+ = 1.0.83 =
529
+ * Fixed: Calendar search
530
+
531
+ = 1.0.82 =
532
+ * Changed: Featured plugins
533
+
534
+ = 1.0.81 =
535
+ * Fixed: Bug on widget list view
536
+ * Fixed: Styles
537
+
538
+ = 1.0.80 =
539
+ * Fixed: Clear cache option notice
540
+ * Added: Translations
541
+
542
+ = 1.0.79 =
543
+ * Added: Widget theme
544
+
545
+ = 1.0.78 =
546
+ * Added: Event description max length option
547
+
548
+ = 1.0.77 =
549
+ * Added: Google maps style option
550
+ * Added: Latitude,Longitude inputs in event-meta,venue-meta pages
551
+
552
+ = 1.0.76 =
553
+ * Fixed: Data structures
554
+ * Fixed: Bug on Repeating events
555
+
556
+ = 1.0.75 =
557
+ * Changed: Backend menu
558
+
559
+ = 1.0.74 =
560
+ * Changed: Organizers, venues cache
561
+ * Fixed: Venue edit in event
562
+ * Fixed: Gmap js issue
563
+
564
+ = 1.0.73 =
565
+ * Changed: Settings structure
566
+ * Fixed: Minor bug
567
+
568
+ = 1.0.72 =
569
+ * Fixed: Minor bug
570
+
571
+ = 1.0.71 =
572
+ * Added: Enable sidebar in event page option
573
+
574
+ = 1.0.70 =
575
+ * Fixed: Bug on Google Maps
576
+
577
+ = 1.0.69 =
578
+ * Fixed: Bug on Views add-on
579
+ * Changed: Featured themes, plugins pages
580
+
581
+ = 1.0.68 =
582
+ * Fixed: List view pagination
583
+ * Fixed: Week view start
584
+
585
+ = 1.0.67 =
586
+ * Added: Calendar start date option
587
+
588
+ = 1.0.65 =
589
+ * Added: Google Maps API Key
590
+
591
+ = 1.0.64 =
592
+ * Fixed: Translations
593
+ * Changed: Open Google map when Marker is clicked option
594
+ * Fixed: Mark all days of multi-day event
595
+
596
+ = 1.0.63 =
597
+ * Added: Show events detail on hover option
598
+
599
+ = 1.0.62 =
600
+ * Added: Grab the first post image option
601
+
602
+ = 1.0.61 =
603
+ * Fixed: Conflict with Page Builder by SiteOrigin
604
+ * Fixed: Bug on trashed events
605
+
606
+ = 1.0.60 =
607
+ * Added: Embed add-on
608
+
609
+ = 1.0.59 =
610
+ * Fixed: Bug on mini calendar
611
+ * Fixed: Bug on multi-day events
612
+ * Fixed: Bug on event pop-up
613
+ * Fixed: Bug on widget
614
+
615
+ = 1.0.58 =
616
+ * Added: Order of events archive page option
617
+ * Fixed: Minor bug
618
+
619
+ = 1.0.57 =
620
+ * Fixed: Translation
621
+
622
+ = 1.0.56 =
623
+ * Fixed: Minor bug
624
+ * Changed: Event popup position
625
+
626
+ = 1.0.55 =
627
+ * Fixed: List view events order
628
+ * Added: Organaizer on single event
629
+ * Added: Portuguese (Brazil) Translation
630
+ * Fixed: Description formatting
631
+
632
+ = 1.0.54 =
633
+ * New: Related events count option
634
+
635
+ = 1.0.53 =
636
+ * Added: Export to GCal/ICal add-on
637
+
638
+ = 1.0.52 =
639
+ * Added: Mark all days of multi-day event option
640
+
641
+ = 1.0.51 =
642
+ * Added: Config page
643
+ * Changed: Spanish Translation
644
+ * Changed: German Translation
645
+ * Changed: Featured plugins/themes page
646
+ * Changed: Event details popup direction for 4th day
647
+ * Fixed: Scroll issue in mobile
648
+
649
+ = 1.0.50 =
650
+ * Added: Event Subscribe add-on
651
+
652
+ = 1.0.49 =
653
+ * Added: Swedish translation by Marcel Króča and Slovak translation by Magnus Juven
654
+ * Fixed: Issue with featured image
655
+ * Fixed: Pointer bug
656
+
657
+ = 1.0.48 =
658
+ * Added: Wizard
659
+ * Added: Tour
660
+ * Added: Czech and Danish translation
661
+
662
+ = 1.0.47 =
663
+ * Added: Shortcode support on event description
664
+
665
+ = 1.0.46 =
666
+ * Added: Romanian translation (by Oana Tarce)
667
+ * Fixed: Bug for php version < 5.3
668
+
669
+ = 1.0.45 =
670
+ * Added: Latvian translation (by Intars G.)
671
+ * Fixed: Issue with venues dropdown in the back end
672
+ * Fixed: CSS issue in calendar views section for 'right to left' languages (e.g. arabic)
673
+
674
+ = 1.0.44 =
675
+ * Added: Croatian translation
676
+ * Added: Sample data
677
+
678
+ = 1.0.43 =
679
+ * Added: Option for no additional details text
680
+
681
+ = 1.0.42 =
682
+ * Fixed: Google structured data errors
683
+ * Changed: Event hover popup styles
684
+
685
+ = 1.0.41 =
686
+ * Added: New year promo notice
687
+
688
+ = 1.0.40 =
689
+ * Added: New theme
690
+
691
+ = 1.0.39 =
692
+ * Fixed: Date issue for php version < 5.3
693
+ * Fixed: German translations
694
+
695
+ = 1.0.38 =
696
+ * Added: Custom css option
697
+
698
+ = 1.0.37 =
699
+ * Added: Catalan language support(by Vicenc Huguet)
700
+ * Fixed: Views slider js issue
701
+
702
+ = 1.0.36 =
703
+ * Changed: Responsive pop-up styles
704
+ * Changed: Featured plugins
705
+
706
+ = 1.0.35 =
707
+ * Changed: Category page
708
+ * Added: Polish translation
709
+
710
+ = 1.0.34 =
711
+ * Fixed: Show events issue in list view
712
+ * Increased: Date range of events in venue and organizer pages
713
+ * Added: Event Tickets add-on
714
+
715
+ = 1.0.33 =
716
+ * Added: Date format option for list, week and day views
717
+ * Fixed: "Back" link in single event page
718
+ * Fixed: Shortcode default view issue
719
+ * Fixed: Norwegian language files
720
+
721
+ = 1.0.32 =
722
+ * Fixed: Dates translation issue in posterboard view
723
+ * Fixed: Venues show map issue for ajaxed themes
724
+ * Fixed: Views slider js issue
725
+
726
+ = 1.0.31 =
727
+ * Added: Day view option as default to widget
728
+ * Added: Close popup by escape
729
+ * Added: Finnish translation (by Håkan Mitts)
730
+
731
+ = 1.0.30 =
732
+ * Added: Mini calendar view for page
733
+
734
+ = 1.0.29 =
735
+ * Fixed: Norwegian language files name
736
+
737
+ = 1.0.28 =
738
+ * Added: ECWD Views add-on
739
+ * Added: Norwegian (Bokmål) and Norwegian (Nynorsk) languages support(by Vegard Innerdal)
740
+
741
+ = 1.0.27 =
742
+ * Changed: Added padding to event details for screens < 768
743
+ * Changed: Hide next/prev month names for screen < 768
744
+ * Fixed: More events popup bug
745
+
746
+ = 1.0.26 =
747
+ * New: Display Events in popup option
748
+
749
+ = 1.0.25 =
750
+ * Fixed: Sidebar css in event page for twentyfourteen theme
751
+ * Fixed: Calendar widget center css
752
+ * Changed: Notices show order
753
+
754
+ = 1.0.24 =
755
+ * Fixed: Events monthly repeat rate issue
756
+ * Added: Week view option to widget
757
+ * Added: Custom Fields add-on
758
+
759
+ = 1.0.23 =
760
+ * Added: Frontend events management add-on
761
+ * Fixed: Rewrite rules for custom permalinks structure
762
+ * Fixed: JS error in related events slider
763
+ * Added: Hungarian language support
764
+ * Added: Serbian language support
765
+ * Fixed: Translations for Dutch
766
+
767
+ = 1.0.22 =
768
+ * Added: Ajaxed themes support
769
+ * Fixed: Next month link issue
770
+ * Changed: More events dialog
771
+ * Added: Support/rate us messages
772
+
773
+ = 1.0.21 =
774
+ * Fixed: JS error in widgets page
775
+
776
+ = 1.0.20 =
777
+ * Fixed: Show event url issue
778
+ * Added: "noindex, nofollow" to calendar links
779
+ * Added: Open pop in new tab option
780
+ * Added: Japanese support
781
+
782
+ = 1.0.19 =
783
+ * Minor bug fixed
784
+
785
+ = 1.0.18 =
786
+ * Added: Themes folder
787
+ * Changed: Related events title style
788
+ * Added: Apply category color to event title in event page option
789
+
790
+ = 1.0.17 =
791
+ * Fixed: Time format issue
792
+
793
+ = 1.0.16 =
794
+ * Added: Show the repeat rate in event page option
795
+
796
+ = 1.0.15 =
797
+ * Added: Show AM/PM option
798
+
799
+ = 1.0.14 =
800
+ * Fixed: Conflict with Avada theme
801
+ * Added: Date to events link
802
+
803
+ = 1.0.13 =
804
+ * Changed: Calendar Add-ons page
805
+
806
+ = 1.0.11 =
807
+ * Changed: Calendar Add-ons page
808
+
809
+ = 1.0.10 =
810
+ * Added: Organizers and venues archive page order option
811
+ * Added: Show categories and tags in event page option
812
+ * Fixed: Featured image sizes in widget
813
+
814
+ = 1.0.9 =
815
+ * Fixed: Show google maps conflict with other plugins
816
+ * Fixed: Geolocation bug
817
+ * Fixed: Save organizer featured image issue
818
+
819
+ = 1.0.8 =
820
+ * Changed: Event page
821
+ * Added: Portuguese language
822
+
823
+ = 1.0.7 =
824
+ * New: Related events slider
825
+ * New: Enable/disable rewrite rule option
826
+
827
+ = 1.0.6 =
828
+ * Changed: Removed Add Venue link
829
+ * Fixed: Delete event from calendar page issue
830
+
831
+ = 1.0.5 =
832
+ * New: Events Filters in backend
833
+ * Fixed: Bug in shortcode
834
+
835
+ = 1.0.4 =
836
+ * Fixed: Bug in add/edit calendar
837
+
838
+ = 1.0.3 =
839
+ * New: Event template
840
+ * New: "Show map in event page" option
841
+ * Changed: "Repeat until" field is required
842
+
843
+ = 1.0.2 =
844
+ * Fixed: Minor bugs
845
+
846
+ = 1.0.1 =
847
+ * Fixed: Bug in Week view
848
+ * Fixed: Permalink bug
849
+
850
+ = 1.0.0 =
851
+ * Initial version