Calendar by WD – Responsive Event Calendar - Version 1.5.58

Version Description

Fixed: JS error on widget

Download this release

Release Info

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

Code changes from version 1.5.57 to 1.5.58

calendar.php CHANGED
@@ -3,12 +3,12 @@
3
  Plugin Name: Spider Event Calendar
4
  Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
5
  Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
6
- Version: 1.5.57
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
11
- $wd_spider_calendar_version="1.5.57";
12
  // LANGUAGE localization.
13
  function sp_calendar_language_load() {
14
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
@@ -496,6 +496,8 @@ function sp_calendar_options_panel() {
496
  add_action('admin_print_styles-' . $page_calendar, 'spider_calendar_admin_styles_scripts');
497
  add_action('admin_print_styles-' . $page_uninstall, 'spider_calendar_admin_styles_scripts');
498
  add_action('admin_print_styles-' . $page_widget_theme, 'spider_widget_calendar_themes_admin_styles_scripts');
 
 
499
  }
500
 
501
  function Spider_calendar_Licensing() {
@@ -519,6 +521,10 @@ function Spider_calendar_Licensing() {
519
  </div>
520
  <?php
521
  }
 
 
 
 
522
 
523
  function spider_calendar_themes_admin_styles_scripts() {
524
  global $wd_spider_calendar_version;
@@ -1402,7 +1408,7 @@ function calendar_export() {
1402
 
1403
  if (!function_exists('spcal_bp_install_notice')) {
1404
 
1405
- if(get_option('wds_bk_notice_status')==='' || get_option('wds_bk_notice_status')==='1'){
1406
  return;
1407
  }
1408
 
@@ -1431,32 +1437,32 @@ if (!function_exists('spcal_bp_install_notice')) {
1431
 
1432
  $spcal_bp_plugin_url = plugins_url('', __FILE__);
1433
  $prefix = 'sp';
1434
- $meta_value = get_option('wd_bk_notice_status');
1435
  if ($meta_value === '' || $meta_value === false) {
1436
  ob_start();
1437
  ?>
1438
  <div class="notice notice-info" id="wd_bp_notice_cont">
1439
  <p>
1440
- <img id="wd_bp_logo_notice" src="<?php echo $spcal_bp_plugin_url . '/images/backup-logo.png'; ?>">
1441
- <?php _e("Spider Event Calendar advises: Install brand new FREE", $prefix) ?>
1442
- <a href="https://wordpress.org/plugins/backup-wd/" title="<?php _e("More details", $prefix) ?>"
1443
- target="_blank"><?php _e("Backup WD", $prefix) ?></a>
1444
- <?php _e("plugin to keep your data and website safe.", $prefix) ?>
1445
  <a class="button button-primary"
1446
- href="<?php echo esc_url(wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=backup-wd'), 'install-plugin_backup-wd')); ?>">
1447
  <span onclick="wd_bp_notice_install()"><?php _e("Install", $prefix); ?></span>
1448
  </a>
1449
  </p>
1450
  <button type="button" class="wd_bp_notice_dissmiss notice-dismiss"><span class="screen-reader-text"></span>
1451
  </button>
1452
  </div>
1453
- <script>spcal_bp_url = '<?php echo add_query_arg(array('action' => 'wd_bp_dismiss',), admin_url('admin-ajax.php')); ?>'</script>
1454
  <?php
1455
  echo ob_get_clean();
1456
  }
1457
  }
1458
 
1459
- if (!is_dir(plugin_dir_path(dirname(__FILE__)) . 'backup-wd')) {
1460
  add_action('admin_notices', 'spcal_bp_install_notice');
1461
  }
1462
 
@@ -1467,9 +1473,9 @@ if (!function_exists('spcal_bp_install_notice')) {
1467
  * 1 : never show again
1468
  */
1469
  function spcal_bp_install_notice_status() {
1470
- update_option('wd_bk_notice_status', '1', 'no');
1471
  }
1472
- add_action('wp_ajax_wd_bp_dismiss', 'spcal_bp_install_notice_status');
1473
  }
1474
 
1475
 
3
  Plugin Name: Spider Event Calendar
4
  Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
5
  Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
6
+ Version: 1.5.58
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
11
+ $wd_spider_calendar_version="1.5.58";
12
  // LANGUAGE localization.
13
  function sp_calendar_language_load() {
14
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
496
  add_action('admin_print_styles-' . $page_calendar, 'spider_calendar_admin_styles_scripts');
497
  add_action('admin_print_styles-' . $page_uninstall, 'spider_calendar_admin_styles_scripts');
498
  add_action('admin_print_styles-' . $page_widget_theme, 'spider_widget_calendar_themes_admin_styles_scripts');
499
+ add_action('admin_print_styles', 'spider_widget_styles_scripts');
500
+
501
  }
502
 
503
  function Spider_calendar_Licensing() {
521
  </div>
522
  <?php
523
  }
524
+ function spider_widget_styles_scripts(){
525
+ wp_enqueue_script('wp-color-picker');
526
+ wp_enqueue_style( 'wp-color-picker' );
527
+ }
528
 
529
  function spider_calendar_themes_admin_styles_scripts() {
530
  global $wd_spider_calendar_version;
1408
 
1409
  if (!function_exists('spcal_bp_install_notice')) {
1410
 
1411
+ if(get_option('wds_seo_notice_status')==='' || get_option('wds_seo_notice_status')==='1'){
1412
  return;
1413
  }
1414
 
1437
 
1438
  $spcal_bp_plugin_url = plugins_url('', __FILE__);
1439
  $prefix = 'sp';
1440
+ $meta_value = get_option('wd_seo_notice_status');
1441
  if ($meta_value === '' || $meta_value === false) {
1442
  ob_start();
1443
  ?>
1444
  <div class="notice notice-info" id="wd_bp_notice_cont">
1445
  <p>
1446
+ <img id="wd_bp_logo_notice" src="<?php echo $spcal_bp_plugin_url . '/images/seo_logo.png'; ?>">
1447
+ <?php _e("Spider Event Calendar advises:Optimize your web pages for search engines with the", $prefix) ?>
1448
+ <a href="https://wordpress.org/plugins/seo-by-10web/" title="<?php _e("More details", $prefix) ?>"
1449
+ target="_blank"><?php _e("FREE SEO", $prefix) ?></a>
1450
+ <?php _e("plugin.", $prefix) ?>
1451
  <a class="button button-primary"
1452
+ href="<?php echo esc_url(wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=seo-by-10web'), 'install-plugin_seo-by-10web')); ?>">
1453
  <span onclick="wd_bp_notice_install()"><?php _e("Install", $prefix); ?></span>
1454
  </a>
1455
  </p>
1456
  <button type="button" class="wd_bp_notice_dissmiss notice-dismiss"><span class="screen-reader-text"></span>
1457
  </button>
1458
  </div>
1459
+ <script>spcal_bp_url = '<?php echo add_query_arg(array('action' => 'wd_seo_dismiss',), admin_url('admin-ajax.php')); ?>'</script>
1460
  <?php
1461
  echo ob_get_clean();
1462
  }
1463
  }
1464
 
1465
+ if (!is_dir(plugin_dir_path(dirname(__FILE__)) . 'seo-by-10web')) {
1466
  add_action('admin_notices', 'spcal_bp_install_notice');
1467
  }
1468
 
1473
  * 1 : never show again
1474
  */
1475
  function spcal_bp_install_notice_status() {
1476
+ update_option('wd_seo_notice_status', '1', 'no');
1477
  }
1478
+ add_action('wp_ajax_wd_seo_dismiss', 'spcal_bp_install_notice_status');
1479
  }
1480
 
1481
 
images/backup-logo.png DELETED
Binary file
images/seo_logo.png ADDED
Binary file
readme.txt CHANGED
@@ -1,147 +1,68 @@
1
  === Calendar by WD - Responsive Event Calendar ===
2
  Contributors: webdorado, wdsupport, 10web
3
  Tags: calendar, event, event calendar, events, events calendar, calendars, event manager, calendar widget, event management, free calendar, Calender, upcoming events
4
- Requires at least: 3.4
5
  Tested up to: 4.9
6
- Stable tag: 1.5.57
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
- Event Calendar by WD is a responsive calendar plugin for organizing events. This calendar calendar lets you manage and publish unlimited event calendars on your site.
11
 
12
  == Description ==
13
- [Special offer: Try Spider Event Calendar premium and 60+ other plugins for free at 10Web](https://10web.io/plugins/wordpress-spider-calendar/)
14
- 10Web is a new platform from WebDorado
15
-
16
- WordPress event calendar is a FREE user-friendly responsive calendar plugin to manage multiple recurring events and various display options. This free calendar plugin makes event registration and events management easy and lets you display beautiful responsive calendars, upcoming events and calendar widget. It’s perfect for websites organising seminars,summits, conferences, concerts,meetings, who want to have it displayed in an attractive calendar.
17
 
 
18
  [WordPress Calendar](https://web-dorado.com/products/wordpress-calendar.html)
19
  [Demo](http://wpdemo.web-dorado.com/spider-calendar/)
20
  [Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=SpiderCalendar)
21
  [User Manual](https://web-dorado.com/spider-calendar-wordpress-guide-step-1.html)
22
 
 
 
 
 
 
23
 
24
- Spider Event Calendar is a highly configurable calendar plugin which allows you to have multiple organized events in one calendar. This plugin is one of the best WordPress Calendar available in WordPress Directory. If you have problem with organizing your WordPress Calendar events and displaying them in a calendar format, then Spider WordPress Calendar Plugin is the best solution. Maybe you just want to have a quick look at your WP calendar schedule to remind yourself about the future appointments or online reservations? Or you want to bring together your holiday calendar, web calendars, online calendars and events lists? Spider Calendar event plugin comes with advanced calendar manager tools and options. It will be great if calendar extension will be able to show all events, display them in an events widget as a beautiful and customizable calendar on your website. Spider WordPress Calendar is a great online events organizer and events manager plugin which is also an extremely user friendly calendar. Its a feature rich event manager plugin allowing you to use it as an editorial calendar,news calendar or availability calendar.
 
 
25
 
26
- You can add unlimited number of calendars and events on your website. You can have a separate upcoming events calendar on any page you’d like.
27
- There is also a possibility of displaying the events in a list view. The product includes a widget called Upcoming events, allowing to have a specific number of upcoming events arranged in ordered or randomized option.
28
  Possibility to add multiple events for a single date, including events from different categories.
29
- You can display the calendar in a smaller format for all pages using the Calendar widget.
30
- Different categories created for the calendar will be displayed as a legend below the calendar. This will allow the users to manage the types of the events they are looking for.
31
 
 
32
 
33
- This advanced events plugin allows you to provide detailed information about the events you have in your interactive calendar. You can provide event dates, time, venue, mention the event organizers, upload an image or a video for a particular event, and more. If you have an event page on your website you can use the calendar shortcode or event shortcode to display it on the page. Also, that can be a very good place to display an upcoming events widget. For websites with long events lists there is an event filter option in the front end to help your site visitors filter out events they are not interested in.
 
 
 
 
34
 
35
- Its recurring events option makes event scheduling even easier. You just need to provide the repeating rate of the event and it will automatically be displayed on the calendar.
36
- Spider Calendar comes with a number of event display options, and calendar themes, but if you want to have custom calendars with your own style you can add new themes with customized settings and options.
37
-
38
-
39
- = Features of Spider Event Calendar: =
40
-
41
- * 100% responsive. Fully compatible with all mobile devices.
42
- * You can add unlimited number of calendars, event categories and unlimited number of events for each calendar.
43
- * [WordPress Calendar](https://web-dorado.com/products/wordpress-calendar.html) can be used as a widget as well.
44
- * Separate upcoming events widget to display upcoming events in a list. The widget features are customizable.
45
- * With a simple click on the date on the Calendar you will see the events and their descriptions recorded for that day.
46
- * Possibility to set the month and the year initially displayed on the calendar (option to display any particular month instead of the current month on the calendar).
47
- * Possibility of displaying events repeating on a specific day of week on a weekly, monthly and even yearly basis.
48
- * Possibility of displaying single-day events.
49
- * Possibility to choose month display format in the Spider Event Calendar.
50
- * Option of displaying from one to four views (Month, List, Week and Day).
51
- * Possibility of setting one of the view options as a default one.
52
- * An option to create categories.
53
- * Possibility to assign a category for each event.
54
- * Option of having different colors for each category.
55
- * Filtering possibility in the front end: when clicking upon the category legend it will display events of that category only.
56
- * Possibility to display multiple events for a single day.
57
- * Possibility to include custom HTML, e.g. images in the event description.
58
- * Possibility of defining the default view, as well as view options for the calendar widget.
59
- * Colors and fonts of the Upcoming events widget can be customized from the widget area.
60
- * Possibility to include only the events and not the calendar as whole in a list form with Upcoming Events widget.
61
- * Calendar widget uses lightbox for displaying events similar to the large calendar.
62
- * Possibility of searching and browsing event in the back end for easier and quick editing.
63
- * Possibility to display events of only specific categories, when pressing the mentioned category labels below.
64
- * Possibility to use the same color for the event categories (legend display below the calendars) for a uni-color design.
65
- * Support for both 12-hour and 24-hour time options.
66
- * All categories legend for displaying all events or returning to original state after hitting a specific category
67
- * Support for recurring events
68
 
69
  Upgrade to [WordPress Calendar Pro](https://web-dorado.com/products/wordpress-calendar.html) to add features:
70
 
71
- * Spider Event Calendar allows you to change the colors of the calendar and fit it to the colors of your website.
72
- * Spider Event Calendar has 17 standard themes included in extension package for the plugin and 6 themes for the widget.
73
- * You can set width of the Spider Event Calendar in the widget and in the [WordPress calendar plugin](https://web-dorado.com/products/wordpress-calendar.html) as well.
74
- * You can change calendar date color, font size and font family in the popup.
75
- * Possibility to change arrow color and background color in the popup in the Spider Event Calendar.
76
- * Possibility to change popup background color in the Spider Event Calendar.
77
- * Possibility to define the height and width of the popup in the Spider Event Calendar.
78
- * Possibility to define the number of displayed events in the popup in the Spider Event Calendar.
79
- * Possibility to change next, previous and current month font size and color in the Spider Event Calendar.
80
- * Possibility to change current day cell border color in the Spider Event Calendar.
81
- * Possibility to define the main border radius, color and width in the Spider Event Calendar.
82
- * You have also possibility to change popup window parameters in the Spider Event Calendar.
83
  * Possibility to add new themes based on the default theme.
84
  * Possibility of displaying/hiding the category legend below the calendar widget.
85
  * Possibility of selecting the start day of the week (Monday, Sunday).
86
- * Possibility to select calendar date style in the popup.
87
  * Possibility to set a number of events to be displayed within a single day
88
 
89
  ###IMPORTANT:
90
- If you think you found a bug in Spider Calendar or have any problem/question concerning the plugin, please check out [Support Forum](https://wordpress.org/support/plugin/spider-event-calendar). If you do not find a solution here, do not hesitate to contact us at [info@web-dorado.com](mailto:info@web-dorado.com).
91
 
92
 
93
- ### Supported languages
94
-
95
- *If you need language which is not included in this list, please contact us and we will do the translation within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
96
-
97
- Afrikaans (af)
98
- Albanian (sq)
99
- Arabic (ar)
100
- Armenian (hy_AM)
101
- Belarusian (be_BY)
102
- Bulgarian (bg_BG)
103
- Catalan (ca)
104
- Chinese, Simplified (zh_CN)
105
- Croatian (hr)
106
- Czech (cs_CZ)
107
- Danish (da_DK)
108
- Dutch (nl_NL)
109
- Esperanto (eo_EO)
110
- Estonian (et)
111
- Finnish (fi)
112
- French (fr_FR)
113
- Galician (gl_ES)
114
- Georgian (ka_GE)
115
- German (de_DE)
116
- Greek (el)
117
- Hebrew (he_IL)
118
- Hindi (hi_IN)
119
- Hungarian (hu_HU)
120
- Indonesian (id_ID)
121
- Italian (it_IT) by Guido Gilli
122
- Japanese (ja)
123
- Korean (ko_KR)
124
- Latvian (lv)
125
- Lithuanian (lt_LT)
126
- Macedonian (mk_MK)
127
- Malay (ms_MY)
128
- Maltese (mt_MT)
129
- Norwegian (nb_NO)
130
- Persian (fa_IR)
131
- Polish (pl_PL)
132
- Portuguese (pt_PT)
133
- Russian (ru_RU)
134
- Romanian (ro_RO)
135
- Serbian (sr_RS)
136
- Slovak (sk_SK)
137
- Spanish (es_ES)
138
- Swedish (sv_SE)
139
- Tamil (ta)
140
- Thai (th)
141
- Turkish (tr_TR)
142
- Ukrainian (uk_UA)
143
- Vietnamese (vi)
144
-
145
  == Screenshots ==
146
  1. WordPress Event Calendar - Calendar
147
  2. WordPress Event Calendar - Widget Calendar
@@ -153,6 +74,9 @@ Vietnamese (vi)
153
 
154
  == Changelog ==
155
 
 
 
 
156
  = 1.5.57 =
157
  Changed: Deactivation popup
158
 
@@ -339,16 +263,9 @@ categories and upcoming events
339
  Initial version
340
 
341
 
342
- == Spider Event Calendar ==
343
- = Step by step guide for the calendar installation, Installing the calendar =
344
-
345
- 1.1 Minimum requirements for installing the WordPress Calendar.
346
-
347
- * Wordpress 3.0+
348
- * PHP 5.x
349
- * MySQL 5.x
350
 
351
- 1.2 Perform a new installation for the calendar.
352
 
353
  1. Log in to the administrator panel for installing the calendar.
354
  2. Go to Plugins Add >New >Upload.
@@ -358,252 +275,249 @@ Initial version
358
  4. Click **Upload&Install** button for uploading and installing the calendar.
359
  5. Click **Activate Plugin** button for activating the calendar plugin.
360
  6. If the installation of the calendar succeeded you will see the message in the picture. If any problem occurs, during the installation of the calendar please contact us info@web-dorado.com.
 
 
 
 
 
361
 
362
- 1.3 Updating the calendar.
363
 
364
- If you want to update the calendar plugin while preserving your existing calendars, you need to deactivate and delete the Spider Calendar from the list of installed plugins (Do not uninstall it using the Uninstall Spider Calendar option of the plugin, otherwise you will lose your initial data) and install the new plugin.
365
 
366
- == Step 2:Spider Event Calendar ==
367
-
368
- = Creating/Editing calendars. =
369
 
370
- 2.1 On the left menu select Calendar ->Calendars ->Add a Calendar.
371
- 2.2 Title. Add a title for the calendar.
372
- 2.3 Default Year. Specify the year that is displayed by default. Leave empty for current year.
373
- 2.4 Default month. Specify the month that is displayed by default.
374
- 2.5 Use 12 hours time format. Choose the format of the time for the calendar.
375
- 2.6 Published. Choose whether to publish the calendar or not.
376
-
377
- == Step 3:Spider Event Calendar ==
378
 
379
- = Creating/Editing events. =
380
-
381
- 3.1 On the left menu select Calendar > Calendars.
382
- 3.2 Select a calendar from the list. Click on the Add an Event button for creating a new event. If you want to edit an existing event, simply click on its title in the list of events.
383
- 3.3 Title. Add a title for the event.
384
- 3.4 Select Category. Choose the category/categories of the events.
385
- 3.5 Date. Provide the date of the event.
386
- 3.6 Time. Set the start and the end time for the event.
387
- 3.7 Note. Write the description of the event.
388
- 3.8 Published. Choose whether to publish the event or not.
389
- 3.9 Repeat Event.Choose the frequency for repeating the events.
390
- -Don't repeat this event.
391
- -Repeat daily. Choose the frequency of the days for repeating the events.
392
- -Repeat weekly. Choose the quantity of the weeks and a weekday for repeating the events.
393
- -Repeat monthly. Choose the quantity of the months and the quantity of the weekdays for repeating the events.
394
- -Repeat yearly. Choose the quantity of the years, choose a month and the frequency of the week and weekdays.
395
- -Repeat until. Choose the end date for repeating each event.
396
- 3.10 Save. Click the "Save" button to save the created event.
 
 
397
 
398
  Note: Spider Event Calendar is not an online booking calendar and does not come with a booking system or reservation system. It does not support event bookings or event subscriptions. However you can manually add your bookings, Facebook calendar events, outlook appointments, Icalendar ( Ical ) appointment booking, and other events feed to the calendar. If you want to have booking forms, RSVP functionality, Facebook event calendar, or Google Calendar integration, you’ll have to get an appointment booking calendar, a booking plugin or other reservation plugin.
399
 
400
- It does not support ticket integration,event ticketing and ticket sale. For this purpose you can check out Event Calendar WD, which allows you to sale event tickets and also provides events calendars Google maps integration. With its events gmap option you’ll be able to mark event location on Google maps.
401
-
402
-
403
- == Step 4:Spider Event Calendar ==
404
-
405
- = Adding Themes to the calendar for a page/post view. =
406
-
407
- There are 11 default calendar and widget themes. You can use one of the calendar default themes or create a new one. If you change the parameters of the calendar default theme here is a big **Reset Theme** button for resetting default theme*s parameters on the calendar to original.
408
 
409
- 4.1 On the left menu select Calendar>Calendar Themes>Add a Theme You can fill the all parameters of the calendar theme or inherit the parameters of the calendar theme from the default themes of the calendar.
410
- 4.2 The General Parameters of the Spider Event Calendar.
411
- 4.2.1 Title. Choose a title for the calendar theme.
412
- 4.2.2 Default theme. Choose the default theme for the calendar.
413
- 4.2.3 Width. Define the width of the calendar.
414
- 4.2.4 The first day of the week. Choose whether to start the calendar from Monday or from Sunday.
415
- 4.2.5 Main Border Color. Choose the color of the calendar main border.
416
- 4.2.6 Main Border Radius. Define the radius of the calendar main border.
417
- 4.2.7 Main Border Width. Define the width of the [WordPress Calendar plugin](http://wordpress.org/extend/plugins/spider-event-calendar/) main border.
418
-
419
-
420
- 4.3 The Header Parameters of the Spider Event Calendar
421
- 4.3.1 Header height. Define the height of the calendar header.
422
- 4.3.2 Header background color. Choose the background color of the calendar header.
423
- 4.3.3 Current month font size. Define the font size of the calendar current month.
424
- 4.3.4 Current Month color. Choose the color of the calendar current month.
425
- 4.3.5 Current Month arrow color. Choose the color for the calendar's current month arrow.
426
- 4.3.6 Arrow size. Define the size of the arrow on the calendar.
427
- 4.3.7 Names of the Weekdays color. Choose the color for the names of weekdays.
428
- 4.3.8 Names of the Weekdays cell height. Define the height of the cell for the names of weekdays.
429
- 4.3.9 Names of the Weekdays Background Color. Choose the background color for the weekdays.
430
- 4.3.10 Sunday background color. Choose Sunday background color for the [WordPress Event Calendar](http://wordpress.org/extend/plugins/spider-event-calendar/).
431
- 4.3.11 Names of the Weekdays Font Size. Define the font size of the weekday.
432
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
 
434
- 4.4 The Body Parameters of the Spider [WordPress Event Calendar](http://wordpress.org/extend/plugins/spider-event-calendar/).
435
- 4.4.1 Background color. Choose the background color for the calendar.
436
- 4.4.2 Cell height. Define the height of the calendar cell.
437
- 4.4.3 Other months days text color. Choose the text color of the other months for the calendar.
438
- 4.4.4 Other months days background color. Choose the background color for the other months days on the calendar.
439
- 4.4.5 Cell text color without events. Choose the text color for the calendar cell without events.
440
- 4.4.6 Cell text color with [WordPress Calendar events](http://wordpress.org/extend/plugins/spider-event-calendar/). Choose the text color for the calendar cell with events.
441
- 4.4.7 Cell background color with events. Choose the background color for the calendar cell with events.
442
- 4.4.8 Event title color. Choose the color for the calendarevent title.
443
- 4.4.9 Current day cell border color. Choose the cell border color for the calendar current day.
444
- 4.4.10 Cell border color. Choose the color for the calendar cell border.
445
- 4.4.11 Sundays text color. Choose the text color for Sundays for the calendar.
446
- 4.4.12 Sundays cell background color. Choose the background color for Sundays cell for the calendar.
447
- 4.4.13 Sundays font size. Define the font size of Sundays for the calendar.
448
- 4.4.14 Days font size. Define the font size of the calendar days.
449
- 4.4.15 Show time in cell. Choose whether to show the time on the calendar cell or not.
450
- 4.4.16 Show Numbers for event. Choose whether to display numbers for events or not.
451
- 4.4.17 Number of Displayed event. Define the number of displayed events.
452
- 4.4.18 Event Titles Background Color. Choose the background color for the event titles.
453
- 4.4.19 Views Tabs Background Color. Choose the background color for the views tabs.
454
- 4.4.20 Views Tabs Text Color. Choose the text color for the views tabs.
455
- 4.4.21 Views Tabs Font Size. Define the font size of views tabs.
456
 
457
-
458
- 4.5 The Popup Window Parameters of the Spider Event Calendar
459
- 4.5.1 Date format in popup. Choose the format of the calendar date in popup.
460
- 4.5.2 Event title color in popup. Choose the color for the calendar event title in popup.
461
- 4.5.3 Event title font size in popup. Define the font size of the calendar event title in popup.
462
- 4.5.4 Event title font family in popup.Select thecalendar event title font family in popup.
463
- 4.5.5 Event title font style in popup. Select the calendar event title font style in popup.
464
- 4.5.6 Date color in popup. Choose the color for the calendar date in popup.
465
- 4.5.7 Date font size in popup. Define the font size of thecalendar date in popup.
466
- 4.5.8 Date font family in popup. Choose the font family of the calendar date in popup.
467
- 4.5.9 Date style in popup. Select the style of the calendar date in popup.
468
- 4.5.10 Arrow background color in popup. Choose the background color for the calendar arrow in popup.
469
- 4.5.11 Arrow color in popup. Choose the color for the calendar arrow in popup.
470
- 4.5.12 Popup background color. Choose the background color for the calendar popup.
471
- 4.5.13 Popup width. Define the width of the calendar popup.
472
- 4.5.14 Popup height. Define the height of the calendar popup.
473
- 4.5.15 Number of displayed events. Define the number of displayed events for the calendar.
474
- 4.5.16 Show repeat rate. Choose whether to show the calendar repeat rate or not.
475
-
476
- 4.6 The Other Views Parameters of the Spider Event Calendar.
477
- 4.6.1 Date Background Color. Specify the background color of the event date cell (List View and Weekly View).
478
- 4.6.2 Event Background Color 1. Select the background color of the events with an odd number.
479
- 4.6.3 Event Background Color 2. Select the background color of the events with an even number.
480
- 4.6.4 Event Number Background Color 1. Select the number background color of the events with an odd number.
481
- 4.6.5 Event Number Background Color 2. Select the number background color of the events with an even number.
482
- 4.6.6 Event Number Color. Specify the color of the event number.
483
- 4.6.7 Day and Month Font Color. Specify the font color of the day and the month of the event date (e.g. 23 March).
484
- 4.6.8 Day of the Week Font Color. Specify the font color of the day of the week in the event date.
485
- 4.6.9 Date Font Size. Specify the font size of the date text.
486
- 4.6.10 Event Number Font Size. Specify the font size of the event number.
487
- 4.6.11 Event Cell Height. Specify the height of the event cell.
488
- 4.6.12 Date Cell Height. Specify the height of the date cell.
489
- 4.6.13 Day and Month Font Size. Specify the font size of the day and the month of the event date.
490
- 4.6.14 Day of the Week Font Size. Specify the font size of the day of the week in the event date.
491
-
492
-
493
- == Step 5:Spider Event Calendar ==
494
-
495
- = Adding Themes to the calendar for the widget view =
496
-
497
- 5.1 On the left menu select Calendar->Widget Themes->Add a Theme.
498
-
499
- 5.2 The General Parameters of the Spider Event Calendar.
500
- 5.2.1 Title. Choose a title for the theme.
501
- 5.2.2 Default Theme. Choose the default theme.
502
- 5.2.3 Width. Define the Width.
503
- 5.2.4 The First day of the Week. Choose whether to start the week from Monday or from Sunday.
504
-
505
- 5.3 The Popup Window Parameters of the Spider Event Calendar.
506
- 5.3.1 Date Format in Popup. Choose the format of the date in popup.
507
- 5.3.2 Event Title Color in Popup. Choose the color for the event title in popup.
508
- 5.3.3 Event Title Font Size in Popup. Define the font size of the event title in popup.
509
- 5.3.4 Event Title Font Family in Popup.Select the event title font family in popup.
510
- 5.3.5 Event Title Font Style in Popup. Select the event title font style in popup.
511
- 5.3.6 Date Color in Popup. Choose the color of the date in popup.
512
- 5.3.7 Date Font Size in Popup. Define the font size of the date in popup.
513
- 5.3.8 Date Font Family in Popup. Choose the font family of the date in popup.
514
- 5.3.9 Date Style in Popup. Select the style of the date in popup.
515
- 5.3.10 Arrow Background Color in Popup. Choose the background color of the arrow in popup.
516
- 5.3.11 Arrow Color in Popup. Choose the color of the arrow in popup.
517
- 5.3.12 Popup Background Color. Choose the background color for the popup.
518
- 5.3.13 Popup Width. Define the width of the popup.
519
- 5.3.14 Popup Height. Define the height of the popup.
520
- 5.3.15 Show Repeat Rate. Choose whether to show the repeat rate or not.
521
-
522
- 5.4 The Body Parameters of the Spider Event Calendar.
523
- 5.4.1 YEAR Font. Choose font style for the year.
524
- 5.4.2 MONTH Font. Choose font style for the month.
525
- 5.4.3 DAY Font. Choose the font style for the day.
526
- 5.4.4 Names of the Weekdays Font. Choose the font style for the names of the weekdays.
527
- 5.4.5 Header Background Color. Choose the background color of the header.
528
- 5.4.6 Calendar Background Color. Choose the background color of the calendar.
529
- 5.4.7 Color of Month. Choose the color to display the months.
530
- 5.4.8 Color of the Names of the Weekdays. Choose the color to display the names of the weekdays.
531
- 5.4.9 Color of Other Months. Choose the color for the other month days.
532
- 5.4.10 Color of Days without Events. Choose the color for the days without events.
533
- 5.4.11 Color of Days with Events. Choose the color for the days with events.
534
- 5.4.12 Background Color of Days with Events. Select the background color for the days with events.
535
- 5.4.13 Background Color of Current Day. Select the background color for the current day.
536
- 5.4.14 Color of Arrows. Choose the color for the arrows.
537
- 5.4.15 Color of Current Day. Choose the color for the current day.
538
- 5.4.16 Border Color of the Current Day. Select the border color for the current day.
539
- 5.4.17 Color of Sundays. Choose the color for Sundays.
540
- 5.4.18 Background Color for the Names of the Weekdays. Select the background color for the names of the weekdays.
541
- 5.4.19 Sunday Background Color. Select the background color for Sundays.
542
- 5.4.20 Cell Border Color. Choose the color for the cell border.
543
- 5.4.21 Year and Month Font Size. Choose the font size to display year and month.
544
- 5.4.22 Year Font color. Select the font color for the year.
545
- 5.4.23 Year Tabs Background color. Choose the background color for the year tabs.
546
-
547
-
548
- == Step 6:Spider Event Calendar ==
549
 
550
- = Publishing the created Calendar in the Page or Post =
551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
 
553
- 6.1 Press the button named Insert Spider Event Calendar in a post or page you want to show the calendar.
554
- 6.2 Select calendar. Select a calendar from the given list.
555
- 6.3 Select theme. Select a calendar theme from the given list.
556
- 6.4 Select Default View. Select the default view from provided options (Month, List, Week and Day).
557
- 6.5 Select Views. Select the views options (Month, List, Week and Day) for the calendar in the public view.
558
- 6.6 Save the page or post where the calendar is inserted.
 
 
559
 
560
  Alternatively, you can use Spider Event Calendar without the button on the toolbar: Add the shortcode [Spider_Calendar id="1" theme="10" default="month" select="month,list,week,day,"] (where Spider_Calendar id is the id of the calendar, theme is the ID of the theme, default is the default view of the calendar, select is the option for the available views.)
561
-
562
- == Step 7:Spider Event Calendar ==
563
-
564
- = Publishing the created Calendar in the widget =
565
-
566
 
567
- 7.1 Add Spider Event Calendar Widget to the sidebar.
568
- 7.2 Select calendar. Select a calendar from the given list.
569
- 7.3 Select theme for a widget. Select a calendar theme for the widget from the given list.
570
- 7.4 Select Default View. Select the default view from provided options (Month, List, Week and Day).
571
- 7.5 Select Views. Select the views options (Month, List, Week and Day) for the calendar in the public view.
572
- 7.6 Save the widget where the calendar is inserted.
573
-
574
- Step 8: Publishing the Upcoming Events widget.
575
- In addition to the main widget you can also use Upcoming Events widget, which will display a custom list of upcoming events.
576
- 8.1 Add Upcoming Events Widget to the sidebar.
577
- 8.2 Title. Provide title for the widget.
578
- 8.3 Select Calendar. Select a calendar from the given list.
579
- 8.4 Select Theme for a widget. Select a theme for the widget from the given list.
580
- 8.5 Events to display. Choose among the display possibilities for the list.
581
- 8.5.1 Starting from current date.
 
 
 
 
 
582
  Event quantity. Select the amount of events to be displayed with the widget.
583
- 8.5.2 Events in date interval.
584
  Starting from.Select whether to start with the current day or choose a custom day to start the list.
585
  Select start date.Choose the start date for the event list.
586
  Following days quantity.Define the amount of days you want the event list to include events from.
587
  Events quantity.Define the amount of events to be displayed in the event list.
588
  Ordering.Choose whether to have the events displayed randomly or ordered. When random, specified amount of events will be randomly generated from the entire list of events within the provided interval.
589
- 8.5.3 Selected Events.
590
  Select events from list.Click on Add button to specify the events you want to show in the events list.
591
- 8.6 Show Event Date.Choose whether to display the event date in the list or not.
592
- 8.7 Show Event Repeat Rate. Choose whether to display the event repeat rate in the list or not.
593
- 8.8 Show Event Text. Choose whether to display the event details in the list or not.
594
- 8.9 Show Numbering.Choose whether to have the listed events.
595
- 8.10 Width. Define the width of the widget.
596
- 8.11 Background Color.Select the background color for the widget.
597
- 8.12 Event Title Color.Choose the title color for the events.
598
- 8.13 Event Title Font Size.Define the font size for the event titles.
599
- 8.14 Event Title Font.Specify the font family for the event titles.
600
- 8.15 Event Date Color.Choose the color to display the event dates.
601
- 8.16 Event Date Format.Choose the date format for the events.
602
- 8.17 Event Repeat Rate Color.Choose the color to display the repeat rate line.
603
- 8.18 Event Text Color.Select the text color for the events.
604
- 8.19 Divider Color.Select the color to be used with the divider.
605
- 8.20 Save the widget.
606
-
607
-
608
-
609
-
1
  === Calendar by WD - Responsive Event Calendar ===
2
  Contributors: webdorado, wdsupport, 10web
3
  Tags: calendar, event, event calendar, events, events calendar, calendars, event manager, calendar widget, event management, free calendar, Calender, upcoming events
4
+ Requires at least: 3.9
5
  Tested up to: 4.9
6
+ Stable tag: 1.5.58
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ Event Calendar by WD is a responsive calendar plugin for organizing events. Plugin lets you manage and publish unlimited event calendars on your site.
11
 
12
  == Description ==
 
 
 
 
13
 
14
+ [Special Offer for all Premium Plugins](https://web-dorado.com/wordpress-plugins-bundle.html)
15
  [WordPress Calendar](https://web-dorado.com/products/wordpress-calendar.html)
16
  [Demo](http://wpdemo.web-dorado.com/spider-calendar/)
17
  [Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=SpiderCalendar)
18
  [User Manual](https://web-dorado.com/spider-calendar-wordpress-guide-step-1.html)
19
 
20
+ WordPress event calendar is a FREE user-friendly responsive plugin to manage multiple recurring events and various display options. This free plugin makes event registration and events management easy and lets you display beautiful responsive calendars, upcoming events and more. It’s perfect for websites organising seminars, summits, conferences, concerts, meetings, and more.
21
+
22
+ This tool is a highly configurable plugin which allows you to have multiple organized events in one calendar. It is one of the best plugin of its kind available in WordPress Directory. If you have problem with organizing your events and displaying them in a calendar format, then this plugin is the best solution.
23
+
24
+ Maybe you just want to have a quick look at your schedule to remind yourself about the future appointments or online reservations? Or you want to bring together your holiday occasions, webinars, and events lists? This WordPress plugin comes with advanced event manager tools and options. Spider WordPress Calendar is a great online events organizer and events manager plugin. It’s a feature-rich event manager plugin allowing you to use it as an editorial, news or availability agenda.
25
 
26
+ You can add unlimited number of calendars and events on your website. You can have a separate upcoming events widget on any page youd like.
27
+
28
+ There is also a possibility of displaying the events in a list view. The product includes a widget called Upcoming events, allowing to have a specific number of upcoming events arranged in ordered or randomized option.
29
 
 
 
30
  Possibility to add multiple events for a single date, including events from different categories.
31
+ You can display the calendar in a smaller format for all pages using its widgets.
32
+ Different categories created for the events will be displayed as a legend below the calendar. This will allow the users to manage the types of the events they are looking for.
33
 
34
+ This advanced events plugin allows you to provide detailed information about the upcoming events you have. You can provide event dates, time, venue, mention the event organizers, upload an image or a video for a particular event, and more. If you have an event page on your website you can use the shortcode of the plugin to display it on the page.
35
 
36
+ Also, that can be a very good place to display an upcoming events widget. For websites with long events lists there is an event filter option in the front end to help your site visitors filter out events they are not interested in.
37
+
38
+ Its recurring events option makes event scheduling even easier. You just need to provide the repeating rate of the event.
39
+
40
+ Spider Calendar comes with a number of event display options, and themes, but if you want to have custom styles, you can add new themes with customized settings and options.
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  Upgrade to [WordPress Calendar Pro](https://web-dorado.com/products/wordpress-calendar.html) to add features:
44
 
45
+ * 17 standard themes included in extension package for the plugin and 6 themes for the widget.
46
+ * Possibility to alter the width of the widget and main calendar.
47
+ * You can change date color, font size and font family in the event popup.
48
+ * Possibility to change arrow color and background color in the event popup.
49
+ * Possibility to change event popup background color.
50
+ * Possibility to define the height and width of the popup.
51
+ * Possibility to define the number of displayed events in the popup.
52
+ * Possibility to change next, previous and current month font size and color.
53
+ * Possibility to change current day cell border color.
54
+ * Possibility to define the main border radius, color and width.
55
+ * You have also possibility to change popup window parameters.
 
56
  * Possibility to add new themes based on the default theme.
57
  * Possibility of displaying/hiding the category legend below the calendar widget.
58
  * Possibility of selecting the start day of the week (Monday, Sunday).
59
+ * Possibility to select event date style in the popup.
60
  * Possibility to set a number of events to be displayed within a single day
61
 
62
  ###IMPORTANT:
63
+ If you think you found a bug in the plugin or have any problem/question concerning the plugin, please check out [Support Forum](https://wordpress.org/support/plugin/spider-event-calendar). If you do not find a solution here, do not hesitate to contact us at [info@web-dorado.com](mailto:info@web-dorado.com).
64
 
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  == Screenshots ==
67
  1. WordPress Event Calendar - Calendar
68
  2. WordPress Event Calendar - Widget Calendar
74
 
75
  == Changelog ==
76
 
77
+ = 1.5.58 =
78
+ Fixed: JS error on widget
79
+
80
  = 1.5.57 =
81
  Changed: Deactivation popup
82
 
263
  Initial version
264
 
265
 
266
+ += Installation ==
 
 
 
 
 
 
 
267
 
268
+ Follow the steps below to install the calendar plugin.
269
 
270
  1. Log in to the administrator panel for installing the calendar.
271
  2. Go to Plugins Add >New >Upload.
275
  4. Click **Upload&Install** button for uploading and installing the calendar.
276
  5. Click **Activate Plugin** button for activating the calendar plugin.
277
  6. If the installation of the calendar succeeded you will see the message in the picture. If any problem occurs, during the installation of the calendar please contact us info@web-dorado.com.
278
+
279
+
280
+
281
+
282
+ == Frequently Asked Questions ==
283
 
 
284
 
285
+ = How can I update the plugin? =
286
 
287
+ If you want to update the calendar plugin while preserving your existing calendars, you need to deactivate and delete the Spider Calendar from the list of installed plugins (Do not uninstall it using the Uninstall Spider Calendar option of the plugin, otherwise you will lose your initial data) and install the new plugin.
288
+
289
+ = How can I create or edit calendars? =
290
 
291
+ On the left menu select Calendar ->Calendars ->Add a Calendar.
292
+ Title. Add a title for the calendar.
293
+ Default Year. Specify the year that is displayed by default. Leave empty for current year.
294
+ Default month. Specify the month that is displayed by default.
295
+ Use 12 hours time format. Choose the format of the time for the calendar.
296
+ Published. Choose whether to publish the calendar or not.
 
 
297
 
298
+ = How can I create or edit events? =
299
+
300
+ On the left menu select Calendar > Calendars.
301
+ Select a calendar from the list. Click on the Add an Event button for creating a new event. If you want to edit an existing event, simply click on its title in the list of events.
302
+ Title. Add a title for the event.
303
+ Select Category. Choose the category/categories of the events.
304
+ Date. Provide the date of the event.
305
+ Time. Set the start and the end time for the event.
306
+ Note. Write the description of the event.
307
+ Published. Choose whether to publish the event or not.
308
+ Repeat Event.Choose the frequency for repeating the events.
309
+
310
+ * Don't repeat this event.
311
+ * Repeat daily. Choose the frequency of the days for repeating the events.
312
+ * Repeat weekly. Choose the quantity of the weeks and a weekday for repeating the events.
313
+ * Repeat monthly. Choose the quantity of the months and the quantity of the weekdays for repeating the events.
314
+ * Repeat yearly. Choose the quantity of the years, choose a month and the frequency of the week and weekdays.
315
+ * Repeat until. Choose the end date for repeating each event.
316
+
317
+ Save. Click the "Save" button to save the created event.
318
 
319
  Note: Spider Event Calendar is not an online booking calendar and does not come with a booking system or reservation system. It does not support event bookings or event subscriptions. However you can manually add your bookings, Facebook calendar events, outlook appointments, Icalendar ( Ical ) appointment booking, and other events feed to the calendar. If you want to have booking forms, RSVP functionality, Facebook event calendar, or Google Calendar integration, you’ll have to get an appointment booking calendar, a booking plugin or other reservation plugin.
320
 
321
+ It does not support ticket integration,event ticketing and ticket sale. For this purpose you can check out Event Calendar WD, which allows you to sale event tickets and also provides events calendars Google maps integration. With its events gmap option you’ll be able to mark event location on Google maps.
322
+
323
+ = Does the plugin provide customization options? =
324
+
325
+ In Premium version of the plugin there are 11 default calendar and widget themes. You can use one of the calendar default themes or create a new one. If you change the parameters of the calendar default theme here is a big **Reset Theme** button for resetting default theme*s parameters on the calendar to original.
 
 
 
326
 
327
+ On the left menu select Calendar > Calendar Themes > Add a Theme. You can fill the all parameters of the calendar theme or inherit the parameters of the calendar theme from the default themes of the calendar.
328
+
329
+ **The General Parameters of the Spider Event Calendar.**
330
+
331
+ Title. Choose a title for the calendar theme.
332
+ Default theme. Choose the default theme for the calendar.
333
+ Width. Define the width of the calendar.
334
+ The first day of the week. Choose whether to start the calendar from Monday or from Sunday.
335
+ Main Border Color. Choose the color of the calendar main border.
336
+ Main Border Radius. Define the radius of the calendar main border.
337
+ Main Border Width. Define the width of the [WordPress Calendar plugin](http://wordpress.org/extend/plugins/spider-event-calendar/) main border.
338
+
339
+ **The Header Parameters of the Spider Event Calendar**
340
+
341
+ Header height. Define the height of the calendar header.
342
+ Header background color. Choose the background color of the calendar header.
343
+ Current month font size. Define the font size of the calendar current month.
344
+ Current Month color. Choose the color of the calendar current month.
345
+ Current Month arrow color. Choose the color for the calendar's current month arrow.
346
+ Arrow size. Define the size of the arrow on the calendar.
347
+ Names of the Weekdays color. Choose the color for the names of weekdays.
348
+ Names of the Weekdays cell height. Define the height of the cell for the names of weekdays.
349
+ Names of the Weekdays Background Color. Choose the background color for the weekdays.
350
+ Sunday background color. Choose Sunday background color for the [WordPress Event Calendar](http://wordpress.org/extend/plugins/spider-event-calendar/).
351
+ Names of the Weekdays Font Size. Define the font size of the weekday.
352
+
353
+ **The Body Parameters of the Spider WordPress Event Calendar**
354
+
355
+ Background color. Choose the background color for the calendar.
356
+ Cell height. Define the height of the calendar cell.
357
+ Other months days text color. Choose the text color of the other months for the calendar.
358
+ Other months days background color. Choose the background color for the other months days on the calendar.
359
+ Cell text color without events. Choose the text color for the calendar cell without events.
360
+ Cell text color with [WordPress Calendar events](http://wordpress.org/extend/plugins/spider-event-calendar/). Choose the text color for the calendar cell with events.
361
+ Cell background color with events. Choose the background color for the calendar cell with events.
362
+ Event title color. Choose the color for the calendarevent title.
363
+ Current day cell border color. Choose the cell border color for the calendar current day.
364
+ Cell border color. Choose the color for the calendar cell border.
365
+ Sundays text color. Choose the text color for Sundays for the calendar.
366
+ Sundays cell background color. Choose the background color for Sundays cell for the calendar.
367
+ Sundays font size. Define the font size of Sundays for the calendar.
368
+ Days font size. Define the font size of the calendar days.
369
+ Show time in cell. Choose whether to show the time on the calendar cell or not.
370
+ Show Numbers for event. Choose whether to display numbers for events or not.
371
+ Number of Displayed event. Define the number of displayed events.
372
+ Event Titles Background Color. Choose the background color for the event titles.
373
+ Views Tabs Background Color. Choose the background color for the views tabs.
374
+ Views Tabs Text Color. Choose the text color for the views tabs.
375
+ Views Tabs Font Size. Define the font size of views tabs.
376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
 
378
+ **The Popup Window Parameters of the Spider Event Calendar**
379
+
380
+ Date format in popup. Choose the format of the calendar date in popup.
381
+ Event title color in popup. Choose the color for the calendar event title in popup.
382
+ Event title font size in popup. Define the font size of the calendar event title in popup.
383
+ Event title font family in popup.Select thecalendar event title font family in popup.
384
+ Event title font style in popup. Select the calendar event title font style in popup.
385
+ Date color in popup. Choose the color for the calendar date in popup.
386
+ Date font size in popup. Define the font size of thecalendar date in popup.
387
+ Date font family in popup. Choose the font family of the calendar date in popup.
388
+ Date style in popup. Select the style of the calendar date in popup.
389
+ Arrow background color in popup. Choose the background color for the calendar arrow in popup.
390
+ Arrow color in popup. Choose the color for the calendar arrow in popup.
391
+ Popup background color. Choose the background color for the calendar popup.
392
+ Popup width. Define the width of the calendar popup.
393
+ Popup height. Define the height of the calendar popup.
394
+ Number of displayed events. Define the number of displayed events for the calendar.
395
+ Show repeat rate. Choose whether to show the calendar repeat rate or not.
396
+
397
+ **The Other Views Parameters of the Spider Event Calendar.**
398
+
399
+ Date Background Color. Specify the background color of the event date cell (List View and Weekly View).
400
+ Event Background Color 1. Select the background color of the events with an odd number.
401
+ Event Background Color 2. Select the background color of the events with an even number.
402
+ Event Number Background Color 1. Select the number background color of the events with an odd number.
403
+ Event Number Background Color 2. Select the number background color of the events with an even number.
404
+ Event Number Color. Specify the color of the event number.
405
+ Day and Month Font Color. Specify the font color of the day and the month of the event date (e.g. 23 March).
406
+ Day of the Week Font Color. Specify the font color of the day of the week in the event date.
407
+ Date Font Size. Specify the font size of the date text.
408
+ Event Number Font Size. Specify the font size of the event number.
409
+ Event Cell Height. Specify the height of the event cell.
410
+ Date Cell Height. Specify the height of the date cell.
411
+ Day and Month Font Size. Specify the font size of the day and the month of the event date.
412
+ Day of the Week Font Size. Specify the font size of the day of the week in the event date.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
+ = Can I edit the appearance of calendar widgets? =
415
 
416
+ On the left menu select Calendar -> Widget Themes -> Add a Theme.
417
+
418
+ **The General Parameters of the Spider Event Calendar.**
419
+
420
+ Title. Choose a title for the theme.
421
+ Default Theme. Choose the default theme.
422
+ Width. Define the Width.
423
+ The First day of the Week. Choose whether to start the week from Monday or from Sunday.
424
+
425
+ **The Popup Window Parameters of the Spider Event Calendar.**
426
+
427
+ Date Format in Popup. Choose the format of the date in popup.
428
+ Event Title Color in Popup. Choose the color for the event title in popup.
429
+ Event Title Font Size in Popup. Define the font size of the event title in popup.
430
+ Event Title Font Family in Popup.Select the event title font family in popup.
431
+ Event Title Font Style in Popup. Select the event title font style in popup.
432
+ Date Color in Popup. Choose the color of the date in popup.
433
+ Date Font Size in Popup. Define the font size of the date in popup.
434
+ Date Font Family in Popup. Choose the font family of the date in popup.
435
+ Date Style in Popup. Select the style of the date in popup.
436
+ Arrow Background Color in Popup. Choose the background color of the arrow in popup.
437
+ Arrow Color in Popup. Choose the color of the arrow in popup.
438
+ Popup Background Color. Choose the background color for the popup.
439
+ Popup Width. Define the width of the popup.
440
+ Popup Height. Define the height of the popup.
441
+ Show Repeat Rate. Choose whether to show the repeat rate or not.
442
+
443
+ **The Body Parameters of the Spider Event Calendar.**
444
+
445
+ YEAR Font. Choose font style for the year.
446
+ MONTH Font. Choose font style for the month.
447
+ DAY Font. Choose the font style for the day.
448
+ Names of the Weekdays Font. Choose the font style for the names of the weekdays.
449
+ Header Background Color. Choose the background color of the header.
450
+ Calendar Background Color. Choose the background color of the calendar.
451
+ Color of Month. Choose the color to display the months.
452
+ Color of the Names of the Weekdays. Choose the color to display the names of the weekdays.
453
+ Color of Other Months. Choose the color for the other month days.
454
+ Color of Days without Events. Choose the color for the days without events.
455
+ Color of Days with Events. Choose the color for the days with events.
456
+ Background Color of Days with Events. Select the background color for the days with events.
457
+ Background Color of Current Day. Select the background color for the current day.
458
+ Color of Arrows. Choose the color for the arrows.
459
+ Color of Current Day. Choose the color for the current day.
460
+ Border Color of the Current Day. Select the border color for the current day.
461
+ Color of Sundays. Choose the color for Sundays.
462
+ Background Color for the Names of the Weekdays. Select the background color for the names of the weekdays.
463
+ Sunday Background Color. Select the background color for Sundays.
464
+ Cell Border Color. Choose the color for the cell border.
465
+ Year and Month Font Size. Choose the font size to display year and month.
466
+ Year Font color. Select the font color for the year.
467
+ Year Tabs Background color. Choose the background color for the year tabs.
468
 
469
+ = How can I publish calendars on pages or posts? =
470
+
471
+ Press the button named Insert Spider Event Calendar in a post or page you want to show the calendar.
472
+ Select calendar. Select a calendar from the given list.
473
+ Select theme. Select a calendar theme from the given list.
474
+ Select Default View. Select the default view from provided options (Month, List, Week and Day).
475
+ Select Views. Select the views options (Month, List, Week and Day) for the calendar in the public view.
476
+ Save the page or post where the calendar is inserted.
477
 
478
  Alternatively, you can use Spider Event Calendar without the button on the toolbar: Add the shortcode [Spider_Calendar id="1" theme="10" default="month" select="month,list,week,day,"] (where Spider_Calendar id is the id of the calendar, theme is the ID of the theme, default is the default view of the calendar, select is the option for the available views.)
 
 
 
 
 
479
 
480
+ = Can I place the calendar on a widget area? =
481
+
482
+ You can add Spider Event Calendar Widget to the sidebar the following way.
483
+
484
+ Select calendar. Select a calendar from the given list.
485
+ Select theme for a widget. Select a calendar theme for the widget from the given list.
486
+ Select Default View. Select the default view from provided options (Month, List, Week and Day).
487
+ Select Views. Select the views options (Month, List, Week and Day) for the calendar in the public view.
488
+ Save the widget where the calendar is inserted.
489
+
490
+ In Premium version of the plugin, you can publish the calendar with Upcoming Events widget.
491
+
492
+ In addition to the main widget you can also use Upcoming Events widget, which will display a custom list of upcoming events.
493
+
494
+ Add Upcoming Events Widget to the sidebar.
495
+ Title. Provide title for the widget.
496
+ Select Calendar. Select a calendar from the given list.
497
+ Select Theme for a widget. Select a theme for the widget from the given list.
498
+ Events to display. Choose among the display possibilities for the list.
499
+ Starting from current date.
500
  Event quantity. Select the amount of events to be displayed with the widget.
501
+ Events in date interval.
502
  Starting from.Select whether to start with the current day or choose a custom day to start the list.
503
  Select start date.Choose the start date for the event list.
504
  Following days quantity.Define the amount of days you want the event list to include events from.
505
  Events quantity.Define the amount of events to be displayed in the event list.
506
  Ordering.Choose whether to have the events displayed randomly or ordered. When random, specified amount of events will be randomly generated from the entire list of events within the provided interval.
507
+ Selected Events.
508
  Select events from list.Click on Add button to specify the events you want to show in the events list.
509
+ Show Event Date.Choose whether to display the event date in the list or not.
510
+ Show Event Repeat Rate. Choose whether to display the event repeat rate in the list or not.
511
+ Show Event Text. Choose whether to display the event details in the list or not.
512
+ Show Numbering.Choose whether to have the listed events.
513
+ Width. Define the width of the widget.
514
+ Background Color.Select the background color for the widget.
515
+ Event Title Color.Choose the title color for the events.
516
+ Event Title Font Size.Define the font size for the event titles.
517
+ Event Title Font.Specify the font family for the event titles.
518
+ Event Date Color.Choose the color to display the event dates.
519
+ Event Date Format.Choose the date format for the events.
520
+ Event Repeat Rate Color.Choose the color to display the repeat rate line.
521
+ Event Text Color.Select the text color for the events.
522
+ Divider Color.Select the color to be used with the divider.
523
+ Save the widget.
 
 
 
 
style_for_cal/wd_bp_install.css CHANGED
@@ -8,7 +8,7 @@
8
  }
9
 
10
  #wd_bp_logo_notice {
11
- width: 40px;
12
  float: left;
13
  margin-right: 10px;
14
  }
8
  }
9
 
10
  #wd_bp_logo_notice {
11
+ width: 50px;
12
  float: left;
13
  margin-right: 10px;
14
  }
wd/assets/img/sp_calendar_main_plugin.png ADDED
Binary file