This repository was archived by the owner on Nov 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1607 lines (1469 loc) · 86.3 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Events Manager ===
Contributors: netweblogic, nutsmuggler
Donate link: http://wp-events-plugin.com
Tags: events, event, event registration, event calendar, events calendar, event management, paypal, registration, ticket, tickets, ticketing, tickets, theme, widget, locations, maps, booking, attendance, attendee, buddypress, calendar, gigs, payment, payments, sports,
Requires at least: 3.5
Tested up to: 3.9.1
Stable tag: 5.5.3.1
Fully featured event registration management including recurring events, locations management, calendar, Google map integration, booking management
== Description ==
Events Manager is a full-featured event registration plugin for WordPress based on the principles of flexibility, reliability and powerful features!
Version 5 now makes events and locations WordPress Custom Post Types, allowing for more possibilities than ever before!
* [Demo](http://demo.wp-events-plugin.com/)
* [Documentation](http://wp-events-plugin.com/documentation/)
* [Tutorials](http://wp-events-plugin.com/tutorials/)
= Main Features =
* Easy event registration (single day with start/end times)
* Recurring and long (multi-day) event registration
* Bookings Management (including approval/rejections, export CVS, and more!)
* Multiple Tickets
* MultiSite Support
* BuddyPress Support
* Submit Events
* Group Events
* Personal Events
* Activity Stream
* more on the way
* Guest/Member Event submissions
* Assign event locations and view events by location
* Event categories
* Easily create custom event attributes (e.g. dress code)
* Google Maps
* Advanced permissions - restrict user management of events and locations.
* Widgets for Events, Locations and Calendars
* Fine grained control of how every aspect of your events are shown on your site, easily modify templates from the settings pages and template files
* iCal Feed (single and all events)
* Add to Google Calendar buttons
* RSS Feeds
* Compatible with SEO plugins
* Plenty of template tags and shortcodes for use in your posts and pages
* Actively maintained and supported
* Lots of documentation and tutorials
* And much more!
= Go Pro =
We have also released an add-on for Events Manager which not only demonstrates the flexibility of Events Manager, but also adds some important features:
* PayPal, Authorize.net and Offline Payments
* Custom booking forms
* Coupon Codes
* Faster support via private forums
For more information or to go pro, [visit our plugin website](http://wp-events-plugin.com).
== Installation ==
Events Manager works like any standard Wordpress plugin, and requires little configuration to start managing events. If you get stuck, visit the our documentation and support forums.
Whenever installing or upgrading any plugin, or even Wordpress itself, it is always recommended you back up your database first!
= Installing =
1. If installing, go to Plugins > Add New in the admin area, and search for events manager.
2. Click install, once installed, activate and you're done!
Once installed, you can start adding events straight away, although you may want to visit the plugin site documentation and learn how to unleash the full power of Events Manager.
= Upgrading =
1. When upgrading, visit the plugins page in your admin area, scroll down to events manager and click upgrade.
2. Wordpress will help you upgrade automatically.
= Upgrading from version 4 to 5 =
Please [read these instructions](http://wp-events-plugin.com/updating-to-v5/).
== Upgrade Notice ==
For those upgrading from version 4 to 5, please [read these instructions](http://wp-events-plugin.com/updating-to-v5/).
== Frequently Asked Questions ==
See our [FAQ](http://wp-events-plugin.com/documentation/faq/) page, which is updated more regularly.
== Screenshots ==
1. Event registration and user submitted events pending approval
2. Event ticketing and bookings forms, easily styleable.
3. Multiple tickets with constraints and prices
4. Locations with google map integration
5. Event registration page
6. Manage attendees with various booking reports
== Changelog ==
= 5.5.3.1 =
* added #_TAGNOTES
* fixed forced owner event/location searches when logged in as subscribers and in AJAX requests where owner attribute is false
* fixed minor php warning
= 5.5.3 =
* changed scopes of various functions to static and various other related adjustments to fix PHP Strict errors
* increaded minimum required WP version to 3.5
* WP_Mail is now default mail transport method
* updated Swedish
* fixed issues with editing no-user name with pro custom forms
* fixed bug preventing redirection back to current page from the booking form login form
* fixed has_tag and has_category conditionals not being regognized when dashes are used
* added default color for categories
* fixed default color problem for FullCalendar
* fixed submit form not showing success message in FireFox
* fixed potential error in EM_Ticket::is_available() not checking event cut-off date,
* fixed single ticket mode new admin UI not showing ticket end date if cut-off date already exists
* fixed events_list_grouped shortcode always displaying pagination links even if disabled
* fixed update from 5.4.1 not creating new user email template in settings
* fixed "test email settings" button using saved settings rather than newly entered test settings
* fixed minor php warning if no attachment info supplied to EM_Mailer
* removed get_current_blog_id() function as this was for < WP 3.1 support
* fixed buddypress subnav menu items showing logged-in user links rather than displayed user (props to Maxime Lafontaine)
* added *_get_url*_get_ical_url and _get_rss_url for em_category em_tag em_location and em_event object functions
* fixed filter em_booking_calculate_price not assigning filtered value to booking_price property
* fixed problems due to lack of late static binding in get_post_search and get_pagination_links functions
* changed object get_post_search functions to accept all values from get_search_defaults
* fixed pagination problems when searching grouped events lists and ajax disabled
* changed - temporarily silenced 'scope' when 'eventless' is used on location list arguments as no results appear with both used at once
* changed search html input field to use placeholder attribute if available in browser like with Geo search
* added number_of_weeks argument to EM_Calendar to allow fixed week tables
* fixed WP FullCalendar not showing long events in following months
* fixed WP FullCalendar not showing all events in 6th week if current month ends 5th week
* added RSS feed ordering and scope options in settings page
* added #_BOOKINGSCUTOFF #_BOOKINGSCUTOFFDATE and #_BOOKINGSCUTOFFTIME placeholders
* fixed no cut-off date assigned to event when in single ticket mode and no end date/time defined
* fixed JS/BuddyPress bug when clicking to delete an event within the BP profile area
* fixed default events AJAX search not using default event list scope if no scope search supplied
* updated POT file along with Swedish and Polish translations
* fixed saving recurrence tempate not saving ticket role restrictions to recurrences
* fixed PHP error when tags are deactivated
* added functionality for searching multiple event/location owners in search attribute 'owner',
* fixed bug with pagination showing
* fixed quick edit not updating location author index table
* fixed closed message showing instead of login message to guests if registered-user tickets exist for event,
* fixed ticket availability calculation issue with member or guest only tickets when displaying tickets to user
* replaced usage of archive_template and category_template filters with taxonomy_template for both taxonomies, props to @avir673 and @greenshady
* added option on settings page and a search attribute 'header_format' for formatting groupby headers
* changed checkboxes html so text and box is wrapped in a label field
* fixed js date picker so change now triggered for end date fields when selected start date changes the end date value
* fixed display of duplicate events and incorrect cross-site events when in MS Global mode
* fixed incorrect page counts in some MultiSite Global instances by making use of SQL_CALC_FOUND_ROWS instead of COUNT()
* fixed rogue closing div on front-end events and locations admin table
* fixed "no location" dropdown problem in editor when using ddms with a default location
* added fail-safe compatibility check with Pro version to prevent known fatal errors on upgrades
* fixed BP 1.9+ warning for using bp_core_delete_notifications_by_type
* added status search parameter to EM_Person->get_bookings()
* changed BP events profile page to paginate events list and only show confirmed upcoming event bookings
* fixed language localization domain of migrated WP FullCalendar admin options to dbem
* fixed calendar more links linking to event if limit is set to 1 and direct links are enabled
* fixed recurring events not showing as pending or draft in front-end editor
* fixed saving of recurring events to pending from published status resulting in draft status
* fixed various PHP warnings
* fixed tickets not saving when submitting event anonymously
* fixed all-day events resetting booking cut-off time to midnight when saved
* fixed some warnings triggered by bookings with no real event (such as Pro MB bookings)
* (minor) added parameter to EM_Notices so that instances don't try to set/use cookie data
* changed use constant EM_FORCE_REGISTRATION in favour of EM_Bookings::$force_registration flag and EM_Bookings::is_registration_forced (backwards compatible)
* fixed PHP capability warning deriving from creating EM_Person instances with invalid user IDs
* fixed bug where extra admin emails added via hooks don't get sent if admin emails on settings page is blank
* fixed potential non-existent custom booking columns offsetting booking admin table pages and exports data by one cell
= 5.5.2 =
* fixed (rare) looping problem with calendar generation
* fixed permalink rule problems for events page children with url-encoded slugs
* changed country name 'Libyan Arab Jamahiriya' to just 'Libya'
* fixed BP Group selection dropdown being limited to 20 groups
* updated Hungarian and Polish
* fixed event results bug for certain months in WP FullCalendar
* fixed duplication error when tags are disabled
* fixed single ticket mode cutting off event bookings on event start (requires resave of affected events)
* fixed duplicate location problem and potentially fixed duplicate/shadow event problem,
* fixed booking cut-off times using submitted event time if no cut-off time submitted and all-day event is checked
* fixed php warning on taxonomy pages on some installs when overriding with formatting
* updated German and French language files
* fixed location still appearing when trashed
* fixed long page loads on settings page with many users or locations on blog (now requests location/user IDs instead of a dropdown)
* fixed bug preventing pro manual bookings for new users when guest bookings disabled
* fixed turkish datepicker not translating
* fixed issues caused by 5.5 update breaking filters using *_output_pagination (now requires PHP 5.3 to work, otherwise use em_object_get_pagination_links)
* fixed #_BOOKINGATTENDEES not working when 'reserve unconfirmed spaces' is set to no
* added new default search arguments for search form
* changed default country to 'none' by default,
* moved location search form html into new templates/search/location.php template
* changed location search fields to be shown if country search field is hidden
* fixed typo of option dbem_seRAch_form_submit
* added default country option specifically for search form
* improved search form arguments which allows fine-grained control via shortcode as well
* added events_search and locations_search shortcode names
* improved search UX by hiding location options if geo search used
* added geolocation unit and distance options to search form
* fixed XSS vulnerability in booking form and preventitive measures taken in other areas (no template fixes necessary)
* fixed feeds not working when no events page defined
* fixed booking_date using mysql instead of blog timezone
* fixed maps not showing on front-end edit locations page
* fixed pagination querystring affecting other event/location/category/tag lists without pagination enabled
* fixed events RSS feed taking over blog feed if events page is homepage
* changed RSS feed url ending to feed/ to avoid unnecessary redirects
* fixed bbPress deactivation erasing all EM capabilities for all roles
* added removal button for category images
* added JS for hiding event/location images when marked for deletion on public forms
* fixed ticket cut-off time not being accurately respected
* fixed 'all' status search not returning drafts
* added 'everything' status which includes trashed events/locations
* fixed BP CSS conflict with wp_editor (https://buddypress.trac.wordpress.org/ticket/5167)
* changed order of when recurrences get saved if in admin area so other plugin post meta data gets properly copied over
* added missing translatable strings for ML (WPML) mode in settings page
* fixed MS Global location link problem when viewing location on different blog,
* fixed AJAX searches not including subsite items in MS Global mode
* improved RSS linking and overriding logic
* added RSS feeds for individual locations/categories/tags
* added iCal feeds for individual locations/categories/tags and any custom taxonomy attached to locations or events
* fixed category base slug not being editable in MultiSite (kudos Maxime Lafontaine)
= 5.5.1 =
* fixed init code not executing WP FullCalendar integration in time
* changed generation of WP_Rewrite rules for children of event post type to query the database directly rather than use get_posts
* updated French translation
* fixed mysql warning/error when creating events with a new location
* changed default events widget format to use #_EVENTDATES
* fixed google maps problem
* fixed 5.5 bug where search attributes being included in pagination links when not necessary
* fixed calendar not using ordering as per settings
* fixed chronological ordering on calendars with long and all-day events
* fixed geo.js not being overridable an overridable template file
* fixed limit=0 being ignored in shortcodes and functions
* fixed pagination being forced for categories_list shortcode regardless of attribute
= 5.5 =
* fixed different versions of http/https maps js libraries being called
* added performance improvements to calendar queries and generation, speeding up calendars with many events per month
* added Reunion to countries list
* added more meaningful text to settings page to clarify booking pages
* added link to profile page to avoid confusion with admin test emails
* fixed php warning in my bookings page bottom pagination
* changed booking ticket editor forms and removed the jQuery UI Dialog in favour of inline forms
* added guest-only ticket option
* added member role restriction options to tickets
* changed jQuery datepicker to have a -100 +10 year range
* added numeric check to ticket spaces during get_post
* added public class flags for event/location/booking admin and my bookings pages,
* changed - consolidated generation of all "my bookings" pages to go via em-template-tags.php functions
* removed my bookings page being generated via events page if no page defined (you should now define a page or use the shortcode)
* changed all listing shortcdodes and template tags to use relevant list template if no specific format supplied
* improved event list/search ajax JS
* added AJAX capabilities to search forms and event/location/category/tag lists with pagination
* added data attribute support for pagination links when AJAX is enabled
* revamped the search form styling and structure
* added location page search form and shortcode/template tags
* fixed pagination bug when searching events/locations with text
* fixed EM_Mailer fatal error bug
* fixed strpos() warning on em_get_locations
* improved efficiency of grouped events list
* added bookings_open and bookings_closed conditional event placeholders
* added CSS flags to templates for future-stying possibilities to event/location pages and lists, tag lists, category lists, booking forms and front-end admin areas
* changed search form and pagination AJAX php to use wp_ajax_ actions
* moved pagination functionality into extendable EM_Object::get_pagination_links for use in *::output() functions
* moved EM_Events::get_post_search() into EM_Object::get_post_search() to allow sharing with other objects using search forms
* moved display code for em_get_events_list_grouped function contents into EM_Events::output_grouped()
* changed EM_Events and EM_Locations into 'static'-only classes (function scoping will follow eventually)
* changed scopes of EM_Object::get_post_search and EM_Object::get_pagination_links to static
* added near, near_unit and near_distance search arguments for coordinate-based searches
* added geographical searching and Google places autocomplete service
* added more search form options to settings page
* removed page number and list number definitions from within list templates
* modified various templates, detailed below:
* changed booking ticket template by unifying forms/ticket-form(s).php into forms/event/bookings-ticket-form.php
* changed forms/bookingform/tickets-list.php to account for displaying guest and role-restricted tickets
* removed inline JS from forms/event/bookings.php template
* removed inclusion of forms/tickets-form.php from forms/event-editor.php
* added inline js from forms/event-editor.php to JS file
* moved em-tickets-form div ID to cover just tickets and event-rsvp-options covers the rest,
* unbolded labels and made headings h4 in bookings section of forms/event/bookings.php
* changed h4 to h3 in event-editor.php and location-editor.php templates
* removed search form inclusion on templates/events-list.php and is now included separately
* added wrapper class to templates/events-list.php layout for future styling
* moved grouped events out of events-list.php into events-list-grouped.php template
* fixed/added sanitization to EM_Ticket::get_post to prevent potential xss,
* fixed/added escaping to booking form template
* fixed recurrences not updating category in main site of MS Global installs
* fixed overriding the_content for valid items in a loop when on tag and category pages
* removed global $EM_Location from locations admin list template
* fixed the em_maps_location_hook js hook not being triggered event/location admin pages
* fixed php warning when creating events with no location info
* fixed some untranslated text
* added parsing of placeholders on single event and location page titles (useful in SEO plugins)
* lowered priority of wp_footer js to 20 (from 10)
* moved WP FullCalendar integration code into EM (and loaded only if needed)
* updated Swedish, German and French language files
* added Chinese Simplified (Taiwan)
* updated POT file
* changed - simplified inclusion of event post type in search results
* changed - set priority of save_post for events/locations to 1
* added preemptive validation during wp_insert_post_data which immediately makes it a draft before any saving is done
* fixed php warning in bookings admin table
* added per-event tax rate function and corresponding em_event_get_tax_rate filter
* improved map loading JS and now can be used in ajax searches
* changed templates/map-global.php - moved coordinates div into container div
* added js em_maps_loaded and em_ajax_search events
* updated jQuery - changed instances of .attr('checked') to .prop('checked') or .is(':checked')
* changed location forms to have consistent id and class structure (id to be deprecated)
* changed CSS for location forms to uses classes not ids
* added templates/forms/map-container.php
* changed location form templates to call a seperate/single map template
* fixed inconsistencies with set_status functions in EM_Events and EM_Location objects
* added deregistration of em script on BP messages page to avoid autocompleter clashes
* fixed WPDB::escape() usage and replaced with esc_sql()
* fixed duplicating events not copying excerpt and tags
* fixed capabilities not being saved for bbPress 2.2+ roles
* fixed featured image on event/location submission - now only showing delete checkbox if image exists
* changed #_ATTENDEESPENDINGLIST so it includes any booking statuses that reserve a space
= 5.4.4 =
* updated Spanish, Polish and POT translations
* fixed search attribute owner so 'me' will show no events to guest users
* added optional $email_attendee parameter to EM_Booking::email() function
* updated lightness css theme to support jQuery UI 1.10.x (used in WP 3.6)
* fixed JS errors related to jQuery 1.10.x (used in WP 3.6)
* moved em_template_my_bookings_footer action so only called if logged in,
* fixed event_date_created not being saved in events table
* fixed "Email Sent" message showing up if no emails sent,
* added em_booking_admin_emails filter
* added bookings table default ordering by date of booking
* fixed CSS for event editor location fields and maps not appearing on same row
* fixed links on MS subsites in global mode to other blogs being incorrect if direct linking disabled
* fixed eventful locations search showing trashed/pending locations
* fixed problems with previous_status flags in event and location objects
* fixed problems with approval email notifications not going out
* added responsive resizing for location google maps
* fixed read_others_locations not being enforced to location dropdown on event editor
* fixed bookings cut-off time not being saved on all-day events
* fixed php warning on category page
* fixed some words within formats not being translated on first install
* fixed various missing translation domains from gettext functions
= 5.4.3 =
* minor JS mod for some rare IE9 conflicts by moving global load_ui_css variable into jQuery.ready()
* fixed booking form showing tickets twice
* fixed issues with placeholders not converting if immediately preceded by a conditional opening/closing tag
* fixed overriden emails/new-user.php templates not being respected anymore since this was added to settings
* fixed timepicker compatibility with jQuery 1.9.1
* fixed google maps js being loaded if previously loaded by another plugin
* fixed translation domain missing for some text in settings page
* fixed ical infinite loop problem when limit is 0
* fixed MS Global Tables bug when filtering by categories for sub-site events
* added RSS events limit option
* removed location page title format option from settings if not in MS Global mode
* modified location search attribute for events with no locations
= 5.4.2 =
* improved the handling of orphaned events and locations, they now show information and can be deleted front-end
* fixed deleting of drafts on front-end,
* fixed display/deleting of trashed events and locations on front-end
* changed status of trashed events and locations to -1 (old trashed events may still show up front-end)
* added escaping to search input field in front-end events admin,
* front-end events admin search form now works in all event statuses
* added draft/pending/publish as possible values to event/location status search attribute,
* took out unnecessary update of post_name in EM_Event::set_status()
* fixed untranslated dates when showing post meta
* updated German and Russian translations
* changed recurrence form to say 'each event SPANS x days' instead of LASTS
* changed SQL statement to use of EM_Event::set_status() in EM_Event::save()
* location shortcode and functions can now search status by text name (trash/pending/publish/draft)
* fixed em_bookings_get_tickets filter being applied in wrong function instead of em_bookings_get_available_tickets
* fixed email subjects showing escaped entities
* fixed events with members only tickets showing bookings closed to guests
* added option to show member-only tickets to guests
* modified booking form and tickets list templates to achieve the above two changes
* fixed invalid username characters such as + in emails causing registration errors
* fixed tickets admin JS where deleting default ticket prevents new ticket being added without page reload
* added #_BOOKINGSUMMARY placeholder
* added registration email templates to settings page
* added location and description format options to ical settings,
* added description of event to ical feed,
* merged single event ical template ical-event.php (now deprecated) with main ical.php feed
* fixed is_past conditional not considering if current events are set to be past events,
* added is_current conditional placeholder
* improved excerpt handling by balancing html tags when more tag is used
* added word limiting options to #_EVENTEXCERPT and #_LOCATIONEXCERPT,
* added formatting filters to excerpt (applicable when not using word limiting)
* improved/refined search form AJAX to include state/region/town lists if country is defined as well as omitting null values
* added month formatting option in settings page for calendars
* moved em_events_get_sql filter above/before count function executes sql
* added #_BOOKINGDATE #_BOOKINGTIME and #_BOOKINGDATETIME placeholders
* improved EM_Category object - now can be created with slug or name
* improved taxonomy search arguments, now capable of automatically searching any taxonomy registered with events or locations
* updated POT file and German language
* added EM_Walker_Category class and hierarchical category checkboxes in event admin MS Global subsites
* modified JS (minor) - checks EM.ui_css is set before loading jQuery UI CSS
* improved Google Maps - now capable of being responsive via placeholders, shortcode and settings page
* added excel 'hack' to support UTF-8 characters
= 5.4.1.1 =
* fixed sortable collumns not working on export bookings function
= 5.4.1 =
* fixed EM crash when legacy tax rate is 0 and free events are booked
* updated German and Russian
= 5.4 =
* fixed drag/drop in bookings admin not always recognizing the change
* improved location search and reset ui logic
* fixed precision of long/lat values in database
* fixed taxonomy filtering bug in admin area
* added possibility to override timthumb via wp-content/em-timthumb-config.php
* fixed some php warnings
* updated French, Russian, Czech translations and POT file
* changed templates/tables/events.php to use $EM_Event instead of $event
* fixed #_BOOKINGBUTTON JS jumps when clicked
* revamped pricing calculations to account for taxes applied at time of booking (see http://em.cm/v5-4)
* added a standardized discounts system pre/post tax
* fixed EM overridden pages showing despite password-protection
* fixed some settings typos
* fixed month scope filter skipping last day of month events in admin events list area
= 5.3.9 =
* fixed XSS vulnerability in search form field
* fixed php warnings in events-list.php
* 'mail sent' messages not shown if no mails actually sent without errors, changed wording of 'mail' to 'email'
* updated French and German languages
* added links to category page on #_EVENTCATEGORYIMAGES images
* reordered search form template variable definitions for future splitting up of fields into individual reusable templates
* changed htmlspecialchars to esc_attr, added esc_attr to various input fields
* improved sanitization of front-end form title submission to prevent entity conversion in db records
* fixed missing EM js variables on public edit/submit events page
= 5.3.8 =
* fixed timthumb issues due to new local fetching modification and bad file inclusion path
* fixed time/date separators in settings page not being used
* added yarpp support to post types
* fixed some tag and category warnings when using assigned tags/categories pages
* fixed various PHP warnings
* updated French
= 5.3.7 =
* fixed extra paragraphs being added to #_EVENTNOTES
* fixed location 'no events' message format not using header/footer formats
* updated Finnish, German and POT files
* added customizable event and location page templates
* improved em_options_select() now can create optgroup groups if an array value is supplied
* fixed clashes with JetPack Tiled Galleries
* fixed timthumb thumbnails issues with MultiSite and virtual links
* fixed multisite global problems when fetching and saving main blog events previously saved with NULL blog_id
* fixed bug with categories search attribute not working if any spaces exist such as "1, 2"
* improved offset calculations in ical for some servers
* improved ical generation to avoid memory limit problems with very large numbers of events
* fixed RSS feed pubdate format
* improved generation of RSS feed to avoid memory_limit errors on very large feeds
* changed em_rss_pubdate wp_option to em_last_modified which is now a timestamp
* improved em_get_wp_users() function to fix overload caused by http://core.trac.wordpress.org/ticket/23609
* changed default events aren't created anymore
* changed public events admin table template to allow viewing of draft events (duplicates) and modified view linking formats
* changed duplicates so they now become drafts by default not published
* improved settings page tab/section loading UX
* added event archives scope
* improved MultiSite Global so unnecessary tables aren't created for every blog
* fixed outdated group tip on event form (you can detach group events)
* added #_CONTACTURL
* fixed tags not being added to recurrences if no categories assigned too
* fixed datepicker problem on search pages when scope not defined and switching pages
* fixed wp_em_events post_content not being updated if description is removed
* added wp_title filter to widgets
* fixed incorrect number of events per day shown in full calendar according to settings
* fixed the_title usage to check the post id supplied in second parameter
* changed/fixed action where rules are rewritten on settings changes causing 404s for CPTs created in theme functions.php file
* fixed bug with W3TC repeating first no-user booking name for all others in admin table views
* fixed 'email exists' errors in no-user bookings mode
* added option for no-user registration with registered emails
* added #_CATEGORYNEXTEVENT, added formatting options for location/category next event placeholders
* improved event, location and category timthumb thumbnails so they accept 0 as a width/height to prevent cropping
* added ical scope option
* fixed category placeholders not being replaced in alphabetical order (so #_CATEGORYNEXTEVENT cannot overwrite #_CATEGORYNEXTEVENTS)
* added #_TAGNEXTEVENT and formatting options
* fixed problem with pagination not highlighting first page number when doing searches
* changed maps js to close other infowindows for locations map when marker is clicked
* added locations search attribute
* fixed autoembed and embed shortcode support for event/category/location placeholders for descriptions
* fixed duplicates triggering 'published' actions on duplications such as tweeting via WP to Twitter
* fixed author not being changed on quick edit
* fixed conflicts with various plugins which add custom registration validation (e.g. SI Captcha, Theme My Login, etc.)
* fixed bug where #_LATT fields not appearing in public location editor if event attributes aren't enabled
* added booking links to edit event booking stats meta box even if no bookings made
* added em_bookings_filtered and em_locations_autocomplete_selected jQuery events
* fixed links pointing to admin on public booking admin tables after pagination clicks or multiple ajax calls
* updated German translation
* added em_calendar_get_args filter
* improved EM_Category::has() - now also checks category name too
* removed redundant functions in EM_Category
* improved default ordering of events in categories page applied to EM_Category::get_default_search() rather than just category pages,
* improved category taxonomy when overriding with formats when using an assigned categories page (particularly breadcrumbs)
* added specific tweaks for Yoast WP SEO plugin for breadcrumbs when using an assigned categories page
* added a tags page and template
* created EM_Tags class - very similar to EM_Categories
* fixed lack of pagination on tag placeholders showing related events
* fixed private locations turned public not appearing in public listings
* fixed today/tomorrow scope not working properly in wp-admin
* fixed pagination variables overriding shortcodes with fixed page attribute
* improved - minor adjustment to location autocomplete ui tip text behaviour
* added em_map_loaded js trigger for location admin map
* updated German
= 5.3.6.1 =
* fixed some XSS vulnerabilites in the booking form/admin areas
= 5.3.6 =
* added is_free, is_free_now, not_free and not_free_now conditional placeholders
* modified EM_Event::is_free() so it can also check if event is free at that moment,
* added do_shortcode filter to dbem_notes so shortcode is parsed outside single event pages
* fixed category filtering when using negative/positive combinations
* fixed category filtering in MS Global mode
* fixed missing menus items for normal blog admins in MS without plugin caps
* updated italian and swedish
* added finish countries translations
* added sorting for countries lists (previously sorted by country code)
* updated POT file
* updated French, updated German (unfuzzied loads of strings, may need some corrections)
* booking meta now uses maybe_unserialize on instantiation
* separated booking validation from save function
* moved user registration logic during bookings into a reusable function
* cleaned up the email admin setting panels for submissions and booking templates
* booking email messages array now generated in separate function
* added em_get_location and em_get_event filters for event/location object retrieval functions
* added em_get_booking getter function with corresponding filter and changed all used of new EM_Booking()
* added em_bookings_admin_page action at start of booking admin pages
* added taxes functions to booking and object classes
* added get_admin_url function for booking object
* added get_price_taxes function to booking object
* added bookings filter condition to exclude bookings with event_id of 0 by default (for Pro Multi-Bookings)
* added data response as second argument to jQuery em_maps_locations_hook event
* fixed bookings form showing on password-protected events
* fixed MS Global blog switching issues when saving
* fixed $EM_Booking->get_tickets() returning all tickets rather than tickets in specific booking
* fixed hidden BP groups not showing to admins
* fixed some German translation file inconsistencies
* fixed blank datepickers if date format is left blank in settings
* fixed tags filter searching multiple tags returning no events
* fixed some MultiSite PHP warnings when adding/deleting sites
* fixed booking button not showing cancel if event is fully booked
* changed booking button so only one booking can be made
* fixed attributes not showing on event submission forms if categories are disabled (option name typo)
* added editable form, so no-user bookings user data can also be edited
* changed booking form JS enqueueing by moving it into EM_Bookings object as a function
* changed booking JS to use on() event delegation for more AJAX compatibility
* fixed some booking form CSS field styling inconsistencies
* fixed issues with locations on sub-blogs when in MultiSite Global mode with locations restricted to main blog
* fixed duplicate confirmations/warnings on MultiSite location admin pages
* changed (improved) EM_Object::can_manage method to avoid extra calls and potential warnings
* changed csv export of single event so the file name = the event name
= 5.3.5 =
* fixed bug in placeholder formatting
= 5.3.4 =
* fixed Multilingual settings not saving default language setting if other than english
* fixed typo in performance optimization settings
* fixed warning of undefined ID on archive pages when enqueuing scripts
* fixed special characters being converted to entities in non-html emails
* fixed typo in options for category/location event list placeholders
* corrected Slovak translation, thanks to Julius Pastierik
* added British translation, thanks to Jeff Cole
* added some code to booking form js to prevent JS conflicts with JetPack's reCaptcha
* added base64 encoding/decoding to em_notice cookies for improved compatibility
* fixed potential php warning in EM_Tickets class
* event spaces show as blank rather than 0 on input form (aesthetic change in line with the field help text)
* added alphabetical ordering to category and countries ddms in search form and admin event categories ddm
* fixed XSS vulnerabilities - http://em.cm/xss
* fixed em_is_category_page() and added check for specific categories (like is_tax() second parameter), added em_is_tag_page() with checks for specific tags
* added #_EVENTPRICERANGEALL and fixed #_EVENTPRICERANGE showing if booking closed but unavailable tickets set to true (docs need revising)
* improved speed of event shortcode by adding global event object
* added ordering of locations by name and other location table fields in event queries such as events_list shortcode
* added some missing classes to event form 'when' section
= 5.3.3 =
* changed taxonomy pages to use is_tax() to check whether page is a taxonomy page, rather than checking the $wp_query object
* fixed booked spaces being off if approvals are disabled and booking has status 0 from when approvals were enabled
* added #_CATEGORYSLUG
* fixed bad usage of wpdb::prepare in classes/em-object.php
* added em_actions_locations_search_cond for autocompleter
* added Bermuda and Jersey to countries list
* fixed title rewriting warning when $sep is blank
* fixed BP 'add event' link appearing to all users on event profile pages
* fixed loading of unused post meta overwriting post fields/properties
* added multilingual capability
* added WPML add-on warning
* simplified enqueue of styles and scripts, now uses wp_enqueue_scripts action
* added performance optimization options for CSS and JS files
* removed usage of PHP sessions in exchange for temporary cookies
* added possiblility to use wp thumbnails rather than timthumb (category images need resaving via uploader)
* added #_LOCATIONLONGITUDE and #_LOCATIONLATITUDE placeholders
* added em-pagination span wrapper and em-tablenav-pagination classnames to normal and table pagination sections
* fixed location searches not returning results admin-side in MS global tables with locations on main blog
* updated JS for location map to update when location name changed
* added pagination and limits to location and category event list placeholders.
* updated finnish language
* fixed minor php warning when deleting a user with no events in MultiSite
* fixed php warnings on category pages using formats, major change to how formats are overriden, now rewrites WP_Query completely
* added em_options_page_panel_admin_tools action to admin tools section of options page
* fixed #_BOOKINGPRICE and other booking price placeholders not using currency formatting option
* fixed permissions issue with groups plugin (thx itthinx)
* added Slovak translation, thanks to Branco
* added em_bookings_table_row_booking_price_ticket filter (needed for Pro ticket exports w/coupons)
* added default rows/cols attributes to booking form textarea field for valid html
* fixed conflict with caching plugins and booking forms due to cached wpnonces
* added #_CATEGORYDESCRIPTION to default EM filters of content placeholders
* updated timthumb.php to version 2.8.11
= 5.3.2.1 =
* added is_singular to $wp_query on format overriden category pages, fixes conflict with WooThemes Canvas theme
= 5.3.2 =
* fixed blog switching compatability in MS Global mode due to switch_blog improvements in 3.5 release
= 5.3.1 =
* Updated russian translation, thanks to Alexander Tsinkalov
* improved how EM hooks into the_content and similar template tag hooks to improve compatability with other plugins incorrectly using this outside the loop
* fixed rsvp cut-off time not being considered
* fixed missing $ in admin_capability variable of EM_Object::can_manage()
* added recurrences search attribute
* corrected some typos in category event form class, recurrence description
* prevented spaces in comma-delimited email lists failing email validations
* fixed bp event profile page urls breaking when event slugs contain slashes
* updated [events] and [location] to default to use globals if no ids passed on, so it can be used in location/event descriptions
* added resubmitted event confirmation messages
* Updated Spanish translation - thanks to Ponç Joan Llaneras
= 5.3 =
* corrected date_format/dbem_date_format typo on templates/templates/my-bookings.php
* fixed calendar links with extra search args if using non-permalinks
* fixed some non-translated strings
* updated pot file
* added em_booking_add_registration_result filter
* fixed add_user_to_blog on MS bookings not providing a default role
* fixed navbar issue for blogs with events page assigned to homepage
* updated Dutch translation, thanks to Arnout Eykelhoff
* partially-updated Russian translation, thanks to Evgeniy Efimenko
* fixed #_EVENTNOTES being converted before other placeholders, which potentially caused problems if using shortcodes with formats
* updated Chinese thanks to Leo Losoviz
* added #_ATTENDEESPENDINGLIST
* improved JS compatability with booking form (spinner and jumping up to errors/confirmation feedback)
* fixed reserved pending spaces not being approvable if event is full
* fixed categories and other plugin postmeta not being duplicated with event
* fixed admin emails not going out if setting of admin emails contains spaces
* fixed blog search filter not allowing comma seperated values e.g. 1,2,3
* improvements to listings, edit pages and admin linking of locations on MS Global setups, especially if locations are restricted only to main blog
* adjustment to title rewriting, fixing issues such as calendar day pages not having custom titles
* event end time js not failing validation if event dates span
* fixed locations not publishing on anonymous submission even if publish_locations is correctly enabled for assigned anon user
* added second em_booking_form_ticket_spaces action to templates/forms/bookingform/ticket-single.php fixes attendee field not showing for single/last ticket/space bookings
* reverted to previous use of global $wp_query in parse_query filters with additional fix to prevent clash with Pods framework
= 5.2.9 =
* added spaces to comma seperators of location on locations admin table
* improved user deletion hook, bookings now get deleted along with user
* replaced depreciated placeholders in default widget values
* added booking form anchor to action url
* updated POT file and Swedish
* added Japanese, kudos to Kenta Sakamoto
* fixed minimum ticket space value not allowing 0 spaces even if ticket not required
* added em_event_save_events_slug filter
* added $EM_Event to all do_action parameters on templates/placeholders/bookingform.php
* changed #_MAP to #_LOCATIONMAP on installation defaults
* wrapped bookings dashboard sections into divs with class names
* fixed formatting links/texts in settings page tips
* added em_options_booking_form_options action and save button on settings page > bookings > booking form options
* fixed use of global $wp_query when passed within parse_query action - thx Scott @ Pods framework plugin
* added wp_dropdown_pages instead of manual page select generation
* fixed useage of outdated user_firstname/user_lastname property for EM_Person::get_name()
* improved ticket minimum calculation (takes into account if ticket is only ticket in event, therefore required)
* fixed EM_Tickets and EM_Tickets_Bookings not storing ticket/ticket_bookings array key by ticket id
* locations list format header and footer now install ul by default, if blank no wrapped ul is used (which previously contained an 'a' outside an li)
* small fix to em_content_categories_args, now applied to EM_Categories::get() and EM_Categories::output() in templates/categories-list.php
* shortened gcal link some more to prevent some (rare) "404 url too long" errors
* added login redirection to same page in login link of my bookings page
= 5.2.8 =
* fixed js bug arsing from 5.2.7 js 'fix' for datepickers
* fixed categories not showing up on single category pages
* fixed php warning when quick-saving
= 5.2.7 =
* fixed min ticket space number calculation issues in booking forms
* fixed multiple admin emails for event submission by members with publish rights
* added em_bookings_ajax_complete/error jquery events/hooks
* updated/added Swedish, Chinese, and Finnish translations, kudos to Tommy Wahlund, Leonardo Losoviz and @Daedalon respectively
* fixed mailer charset problem in SMTP mails
* added dbem to some __ functions
* added ticket-price class to single ticket booking form html
* fixed datepicker breaking on themes inserting br tags into search/booking forms
* fixed html email setting not working in MultiSite
* added Guadaloupe to countries list
* added em_csv_header_output action (e.g. for Excel hack)
* changed/prevented registration email going out until after booking is completely saved
* added filter em_object_json_encode_pre
* fixed country searches on events page/search form
* added conditional placeholders is_private not_private is_recurrence not_recurrence
* fixed #_EVENTEXCERPT not having formatting filters applied
* changed the_content run at priority 9 for category pages
* fixed private location autocomplete/search issues
* fixed recurrences not being deleted when done from front-end
* fixed edit user link on booking admin area
* fixed edit location link showing to all
* fixed typo in map balloon hint on settings page
* removed default contact person setting (used in < v5.0, now uses author)
* added width/height property to thumbnail img html
* fixed deleted MS subsites not deleting events/locations from global tables
* fixed maps showing undefined fields on first load of edit event with location ddm enabled
* fixed non-registered attendees not being included in no-user mode for #_ATTENDEE and #_ATTENDEELIST
* fixed front-end location admin pagination
* reduced sql statements for county my/all locations on front-end locations admin page
* fixed select all ui problem (thx @Daedalon)
* fixed array_key_exists php warning in EM_Object::can_manage
* changed is_main_blog to is_main_site
* added grandchildren detection when generating permalink rules for events page
* added auto br to emails option in email settings
= 5.2.6 =
* changed validation order for bookings (no validation done in EM_Event::get_post())
* EM_Tickets_Bookings::$tickets_bookings now an associative array, keys are ticket id
* EM_Notices now accepts 2 level arrays for nested errors
* added em_bookings_table_export_options, em_bookings_admin_ticket_row actions
* added em_bookings_table_get_headers filter
* admins can now manually approve bookings regardless of whether events are fully booked and overbooking enabled
* fixed search page bugs
* removed some unecessary validations on get_post functions, assumed these are only run on validate() and save(), eventually it'll just be validate()
* fixed js issues when updating ticket options with checkboxes
* hooked into the_excerpt_rss filter to allow overriding event formats on normal rss feed
* fixed recurring event not correctly saving timestamps
* fixed minimum spaces problem on booking form, added 'required' tickets option to allow more possibilities
* fixed js incompatability
* fixed link on single booking admin page if user is a guest in no-user mode
* updated German, French, Hebrew, Dutch, added partial Chinese translation
* hid some unecessary localized JS strings depending on what features are enabled (bookings/recurrences)
* fixed negative non-existant category id searches showning no events instead of all events
* fixed pagination problem on templates/calendar-day.php
* added js triggers em_booking_error and em_booking_complete
* fixed event price placeholders not accounting for unavailable tickets
= 5.2.5 =
* fixed long google calendar link issue
* fixed and improved duplication function
* allowed cancel link for offline pending bookings status
* fixed MS bug with featured images in global mode on different main/sub sites
* fixed duplicate booking activity posts when event belongs to a group
* fixed template templates/events-list.php for grouped events list
* fixed dots in usernames breaking booking activity feed links
* added booking comment collumn to booking admin tables
* changed some localized edit %s strings
* fixed booking links pointing to admin/front-side oppositely on ajax calls
* fixed tag and category searches showing all events if categories/tags don't exist
= 5.2.4 =
* fixed single ticket template and name of spaces being hard coded
* added em_booking_form_ticket_spaces action
* closed date and time picker inits with functions
* fixed warnings on options page
* fixed potential 0 spaces being available on tickets with a min requirement
* fixed ticket warning
* fixed some permalink issues for homepage and child pages of events pages
* fixed rare fatal error due to undefined object in admin/em-bookings.php
= 5.2.3 =
* improvement to ical all-day time format
* fixed grouped events shortcode not using formats supplied
* removed 'remove from page lists' options for category/event/location pages, see http://em.cm/rplo
* added calendar day abbriviations (useful for some languages e.g. Catalan, Welsh)
* moved events page calendar options to 'pages' tab, event list/archives panel
* fixed attributes bug using default value even when custom value entered (arose in 5.2.2)
* added search button custom text setting
* removed duplicate confirm/error notices in bookings admin area (dashboard-side)
* fixed #_LOCATIONPOSTID showing location id instead
= 5.2.2 =
* added member-only tickets
* added em_bookings_added action
* fixed broken grouped events titles
* fixed some timezone nuances in the ical, simpler and hopefully more reliable dealing with dst
* fixed pesky recurrence bug not ignoring the new booking cut-off dates intended single events, as a result all recurring event cut-off times will be reset to null to prevent prematurely closed booking forms.
* simplified some tab and panel names in the settings page, moved location map balloon settings to maps section
* booking forms will now show under event content if override with formats is set to 'no'
* fixed some event/location attribute nuances with regards to defaults overriding each other, will document
* made attributes, categories and featured image sections in public event/location editors their own template parts
* removed links to person summary page if in no-user booking mode and user isn't registered
* fixed bad action url in booking form when under subdirectory installs (although not actually used by ajax)
* fixed MS queries defaulting to global searches, including transactions
* fixed MS network blog tables not being deleted by WP along with rest of blog
= 5.2.1 =
* quick fix for fatal error on front-side event submit forms when bp is disabled
= 5.2 =
* reversed order of settings link in plugins page
* updated French, Czech, Dutch and pot language files
* fixed category page display problems on some themes (e.g. Thesis) and for some plugins using the loop on the same page
* added rss pubdate to individual events
* removed cut-off time for now from recurring events, since it copies same date over to every recurrence
* fixed bug in bookings table ajax
* updated to PHPMailer 5.2.1, added attachment capabilities and the em_mailer or em_mailer_sent actions
* fixed magnified google maps logo size
* fixed admin emails not going out on event submission under some configurations
* improvements to permalinks for home page loading
* added first/last name collumn to bookings admin table
* added conditional placeholders for location image has_loc_image and no_loc_image
* fixed cancelled/rejected mixup in bookings admin table
* single booking button will show 'Sold Out' if full
* booking cancel link will not show to rejected, cancelled, pending online payment statuses
* fixed yearly recurrences bug
* added em_get_currency_formatted filter
* added event_category shortcode
* fixed search bug not showing long events outside start/end parameters
* fixed event form not showing submitted data on validation fail during second event submit
* added event re-submission and re-approval custom emails
* added has_category_x, no_category_x, has_tag_x, and no_tag
* my-bookings auto permalink won't happen if bookings disabled
* added israeli translation
* added choice of initial length for calendar day names
* template modification: passed on $EM_Event to em_booking_form_custom action, may prevent some bugs in certain situations
* fixed ical modified timestamp issue
* fixed scheduled events not being published
* fixed incorrect event links to cross blog events in MultiSite global mode
* added $post_ids to em_event_save_events filter
* updated booking button, made button text customizable and moved the js out of the template file
* updated forms/event/groups.php template to allow for site admins to see all bp groups
* updated ui-lightness.css jQuery UI CSS Framework file to v1.8.22
* fixed templates/templates/events-search.php to prevent showing unapproved locations in dropdowns
* fixed admin CSS and JS locations using WP_PLUGIN_URL instead of plugins_url()
* fixed global events and locations not showing up in MS subsites
* fixed dev-mod updating in MS network admin
* added a test email settings button/feature
* fixed grouping by date fomrat option in settings page not being used
* tidied up location autocompleter formatting
* fixed potential timepicker bug when themes add extra br tags between timepickers
* fixed maps not loading when updating events
* fixed ical description formatting issue escaping &
* fixed default location not showing on second event form update
* fixed booking table links going to admin area on public pages after ajax calls
* fixed ical time and time placeholder output issues
* fixed event form breaking when BP groups are deactivated
* fixed printable booking report showing non-approved bookings
* fixed widgets not allowing blank titles and disappearing widget headers
* removed weekly recurring events days checked by default
* removed some optional properties to the ical files, including X-WR-CALNAME
* fixed weekly recurrence bug skipping first event on some instances
* fixed rejected bookings counting as double bookings
* removed unapprove link showing up for rejected/cancelled events
* added bookings link to actions on the wp users admin page
= 5.1.8.5 =
* fixed bug with bookings being open/closed due to changes in 5.1.8.5
= 5.1.8.4 =
* fixed some issues in the EM blog updater and EM use of table constants
* improved BP member link generation in activity stream, uses bp_core_bet_user_domain now
* fixed cancellation link disappearing after booking cut-off date, even if event hasn't started
* fixed use of some get_price style filters and supplying pre-formatted currency numbers
* fixed pagination issues in shortcodes
* fixed booking table ajax issues
* fixed location auto-completer not working when maps are disabled
* fixed ical all-day event issues when offsets come into play
* fixed single day ical offset problems
= 5.1.8.3 =
* fixed bookings being closed if booking cut-off date/time not specificed in new events
= 5.1.8.2 =
* added booking cut-off times
* fixed events with bookings table ajax
* fixed bp group events list not showing location info
* fixed calendar day pages showing 'past' events if option is set not to
= 5.1.8.1 =
* important - Modified template files? See this http://em.cm/templates-5181
* fixed date ranges not working properly
* fixed pagination issues
= 5.1.8 =
* important - Modified template files? See this http://em.cm/datetime
* fixed jigoshop session_start conflict
* removed some group metabox php warnings
* fixed slashes added to location/event name in db table
* fixed/improved multisite capability management (see network admin settings)
* events with >1 ticket will show multi-ticket editor regardless of single ticket mode setting
* updated Brazilian language, added Catalan and fixed a few language datepicker oddities
* fixed RSS validation fails for some special characters
* fixed cancellations being possible after event boookings close
* fixed admin-side search-by-category
* fixed manage_others_bookings not allowing access to bookings without other caps
* fixed calendar widgets taking on day link search arguments from other parts of the page
* fixed admin email problems when in auto-approve mode and using alternate status numbers e.g. 5
* added force-approve booking flag in EM_Booking::set_status
* fixed ical locations and apostrophes and single ical file time offsets
* fixed gallery shortcode for recurring events
* fixed guest event submission auto-complete
* refactored booking form JS to allow multiple forms on one page
* fixed some booking js ui animations
* fixed booking table overlay issues
* added more js vars for translation purposes
* improved placeholder replacement logic
* added em_event_submission_login filter
* simplified timepicker and datepicker JS and html strucuture for re-use
* EM_Notices behaviour changed so errors are printed and not deleted, only at start/end of script
= 5.1.7 =
* added excludeable categories (use negative numbers instead)
* clarified some of the field tips of "other pages" in options
* fixed thumbnail issue in MS (again)
* added event dates and times as sortable booking collumns
* fixed multisite duplicate post id bug in global mode
* simplified meaning of EM_Bookings::get_booked_spaces, so it's just booked spaces, not pending. get_available_spaces() should be used for reserved seats instead.
* replaced old default date formats with #_EVENTDATES and #_EVENTTIMES
* fixed some datepicker problems in single ticket mode with start/end date tickets
* removed jQuery datepicker and autocomplete libraries, now using WP's internal scripts instead
* improved the reliability of returned json data in booking form
* fixed categories not editable in front-end,
* added email not sent flag to booking object
* fixed tags not working for slug searches
* fixed dst issues in ical calendars
* added name/slug search fall back for tags search
* added datepicker custom date formatting
* fixed non registered user problem for failed JS submissions
* fixed some rsvp conditional and gcal placeholders
* added jquery-ui-css id to jquery ui css loader to promote compatability with others
* you can now add a custom functions.php file within yourtheme/plugins/events-manager/
* improved title rewriting compatibility
* added hierarchies to category dropdowns
* fixed an object reference error in em-object.php send_mail()
* added jQuery em_booking_success event to document
* fixed tickets not showing start/end dates in admin after editing
* fully booked message now shown rather than closed message
* location description won't take event description in public submission forms
* re-added get_date_format for backwards compatability with overriding templates
* fixed pagination issue in my events page on front-end
* fixed potential security xss exploit in json call links
* fixed default country overriding all country search option on search pages
* fixed pagination issue on my events page on the front-end
= 5.1.6 =
* fixed multiple admin emails not going out
* updated timthumb to v2.8.10
* updated placeholder outputting to avoid overwriting longer variations of similarly named placeholders
* fixed #_BOOKINGTICKETNAME not working
* single location and event pages will still use location-single.php and event-single.php templates
* fixed thumbnail image links on multisite to work with timthumb, thanks BinaryMoon for the tut!
* Reduced sql calls for booking object instantiation. $EM_Booking->custom doesn't exist anymore, and notes must be loaded first with $EM_Booking->get_notes().
* EM_Category->has_events() depreciated, returns false always
* More wp_rewrite tweaks to improve compatability
* fixed 24 hour formatting setting being ignored in timepicker
* fixed bad datepickers in single ticket mode
* fixed locations not being auto-approved if submitted via front-end and event is auto-approved.
= 5.1.5 =
* rewritten booking email function, simpler, less error-prone, overriedable and yet same effect
* fixed tax not showing on booking table totals
* fixed booking objects get_price filters, removed em_booking_get_prices from em-ticket-booking.php in place of em_ticket_booking_get_price
* changed filter name em_tickets_bookings_get_prices to em_tickets_bookings_get_price (bad name according to convention)
* admin email can be sent to multiple emails (comma delimited in settings)
* added booking status message filter
* added custom no events message in events widget
* fixed ical not working in non-permalinks mode ( must have /?ical=1 at end of homt url )
* removed original CSV export link in place of booking table exporter, unless users made a custom template
* BuddyPress private group or normal private event info are now not shown in site activity.
* fixed some php warnings
* fixed certain languages breaking date formats
* added #_EVENTCATEGORIESIMAGES
* added yearly recurrences
* added a cut-off date for bookings, so bookings can take place past event start dates
* fixed some issues with dev mode checks
* fixed booking button and multiple bookings at once bug
* fixed ticket spaces export bug
* fixed rss pubdate format
* improved CSS for booking tables front-end
* edit event locations dropdown shown to users if they can read events (previously only if could edit)
* updated the POT file and Swedish translations
* added #_CONTACTMETA placeholder
* cleaned up the RSS filters so HTML now is allowed in feed
= 5.1.4.3 =
* fixed bp group hidden events not going private
* fixed countries list not working for certain langauges
= 5.1.4.1 =
* fixed wp rewrite issue when assigned events page slug = events slug
* fixed minimum ticket price placheholder problems
* added dev version auto-updater
* improved performance in events with booking widget listings
* improved performance in date range searches (e.g. calendar)
* reverted to using .delegate() instead of jQuery 1.7+ .on() listener for compatibility
* slightly improved mail options logic and layout (plus php mail can send html emails now)
* fixed buddypress conflict if groups component is disabled
* fixed event spaces not overriding displayed values in booking stats pages