forked from wpeventmanager/wp-event-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
executable file
·1828 lines (1566 loc) · 107 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
=== WP Event Manager – Events Calendar, Registrations, Sell Tickets with WooCommerce ===
Contributors: wpeventmanager,ashokdudhat,krinay
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=55FRYATTFLA5N
Tags: calendar, event, events, organizer, tickets
Requires at least: 5.4.1
Tested up to: 6.3.1
Stable tag: 3.1.40
Requires PHP: 5.6
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Lightweight, scalable and full-featured event listings & management plugin for managing events & tickets from the Frontend and Backend.
== Description ==
Suffering with a complicated and feature-bloated event management plugin is not a situation you need to be in. You’ll want an intuitive, snappy way to create events fast. What’s more, you’ll need a quick way to set events up regardless of whether they are in-person, virtual, or everything in between. **[WP Event Manager](https://wp-eventmanager.com) is a lightweight and scalable plugin that helps you implement a full-featured event management system within WordPress** for both live and virtual events.
[youtube https://www.youtube.com/watch?v=CPK0P7ToRgM]
WP Event Manager works out of the box with practically every WordPress theme, so you won’t need to develop any custom solutions or make extra purchases. It also offers a number of ways to customize the look of your events listings, and you can even supercharge your event management using [premium add-ons](https://wp-eventmanager.com).
Both [attendees and site owners](https://wp-eventmanager.com/expert-reviews/) love to use WP Event Manager, and our team is ready to stand by your side to help you run any and every event you hold:
>“…users rave about the developer support for the free version of the plugin…”
><strong>– Brian Jackson, woorkup</strong>
It’s the number one way to set up and list events on your WordPress website.
== 👉🏻 WP Event Manager: Everything You Need to Manage Your Events for Free ==
If you want to set up events in a hurry, WP Event Manager has all the core features and functionalities you need to create a robust event management system in just a few minutes:
* Add, remove, and organize your event listings using the familiar WordPress interface – you won’t need to leave the dashboard.
* Assign event locations to each of your events, and group them by those locations.
* Create custom event fields, to help you personalize your events and make them unique.
* Event organizers can log in and access full event management features, such as viewing, editing, deleting, and canceling events.
* Get live previews of every event you create, so you’ll know how your attendees will see your event listing.
* Display each event listing by simply using shortcodes within your content. There are different shortcodes to help you present your events in many different ways.
== 👉🏻 Give Users the Power to Find Events Through Search ==
Once you add events to your site, you’ll want users to find them. WP Event Manager includes lots of ways to direct your users towards your events, fast:
* You can search and filter events on the front-end using shortcodes. Each listing is ‘AJAX-powered’ for a super slick presentation.
* Guests and registered users can submit and manage event listings using a front-end form.
* You’re able to easily attach an email address and/or website URL to each event listing, so users have more ways to find your event, and search engines get the opportunity to index it.
* A user can also employ built-in RSS functionality to subscribe to similar events, meaning they’ll never miss your next one.
* There is full-featured taxonomy management included in WP Event Manager, and users can also filter events based on their current location.
There’s more to discover about WP Event Manager, and [our website](https://wp-eventmanager.com/product/wp-event-manager/) and [documentation](https://wp-eventmanager.com/help-center/) have everything you need to know about the complete experience.
== 👉🏻 WP Event Manager Provides a Class-Leading User Experience ==
WP Event Manager is a user-focused event management solution, and provides a class-leading experience for every user:
* The plugin offers typical cross-browser support for Google Chrome, Firefox, Apple Safari, and Opera.
* The interface is smooth to scroll through, thanks for AJAX-powered design elements. What’s more, it looks fantastic on all screen sizes.
* There are widgets available for recent events, upcoming events, and featured events. This means you can display your events almost anywhere on your site. With our premium [Calendar add-on](https://wp-eventmanager.com/product/wp-event-manager-calendar/), you can display calendar events in multiple places on your website, in a number of different ways.
* Every user gets [comprehensive documentation](https://wp-eventmanager.com/help-center/) and video tutorials on how to get the best out of WP Event Manager.
* There are [lots of different ways](https://wp-eventmanager.com/support-policy/) to get support if you need it. Free WP Event Manager users can submit a request to our dedicated WordPress.org forum. There’s also a [support forum](https://support.wp-eventmanager.com/portal/en/signin) to provide a community that’s ready to help you [solve any issues](https://wp-eventmanager.com/support-policy/) you have with WP Event Manager.
Site owners [love WP Event Manager](https://wp-eventmanager.com/expert-reviews/), and so do users. This is why it’s the leading event management plugin on the market:
> “…This is a valuable plugin that many WordPress users can benefit from.…”
> <strong>David Coleman – WP Mayor</strong>
You’ll find plenty of five-star reviews and recommendations across our site, and here on WordPress.org too!
== 👉🏻 A Developer-Focused Event Management Plugin for Serious WordPress Businesses ==
Developers will also love to work with WP Event Manager. It’s a clean, well-coded solution under the hood that comes with a number of helpful inclusions:
* Search engine optimization built into the code as standard.
* A translation-ready codebase to help globalize event copy.
* Caching support, to keep things running fast and friction-free.
* Plenty of endpoints and template files to provide deep customization to the core WP Event Manager code.
* A debug mode to ensure your WP Event Manager installation runs smooth at all times.
You can also contribute to WP Event Manager – the [WP Event Manager GitHub Repository](https://github.com/wpeventmanager/wp-event-manager) is always looking for Added contributors to help with the project. Regardless of whether you are a stie owner, end user, or developer, WP Event Manager is the go-to event management plugin for WordPress.
== 👉🏻 WP Event Manager Offers Translations Into a Number of Different Languages ==
The WP Event Manager plugin offers over 40 inbuilt translations, making sure your events setup is easy and immediately available in your own language:
✔️ [Arabic](https://translate.wordpress.org/locale/ar/default/wp-plugins/wp-event-manager) - (ar)
✔️ [Arabic (Algerian)](https://translate.wordpress.org/locale/arq/default/wp-plugins/wp-event-manager) - (arq)
✔️ [Arabic (Moroccan)](https://translate.wordpress.org/locale/ary/default/wp-plugins/wp-event-manager) - (ary)
✔️ [Bengali](https://translate.wordpress.org/locale/bn/default/wp-plugins/wp-event-manager) - (bn_BD)
✔️ [Bulgarian](https://translate.wordpress.org/locale/bg/default/wp-plugins/wp-event-manager) - (bg_BG)
✔️ [Chinese (China)](https://translate.wordpress.org/locale/zh-cn/default/wp-plugins/wp-event-manager) - (zh_CN)
✔️ [Dutch](https://translate.wordpress.org/locale/nl/default/wp-plugins/wp-event-manager) - (nl_NL)
✔️ [English (Australia)](https://translate.wordpress.org/locale/en-au/default/wp-plugins/wp-event-manager) - (en_AU)
✔️ [English (UK)](https://translate.wordpress.org/locale/en-gb/default/wp-plugins/wp-event-manager) - (en_GB)
✔️ [English (Canada)](https://translate.wordpress.org/locale/en-ca/default/wp-plugins/wp-event-manager) - (en_CA)
✔️ [English (Added Zealand)](https://translate.wordpress.org/locale/en-nz/default/wp-plugins/wp-event-manager) - (en_NZ)
✔️ [English (South Africa)](https://translate.wordpress.org/locale/en-za/default/wp-plugins/wp-event-manager) - (en_ZA)
✔️ [French](https://translate.wordpress.org/locale/fr/default/wp-plugins/wp-event-manager) - (fr_FR)
✔️ [French (Belgium)](https://translate.wordpress.org/locale/fr-be/default/wp-plugins/wp-event-manager) - (fr_BE)
✔️ [German](https://translate.wordpress.org/locale/de/default/wp-plugins/wp-event-manager) - (de_DE)
✔️ [German (Switzerland)](https://translate.wordpress.org/locale/de-ch/default/wp-plugins/wp-event-manager) - (de_CH)
✔️ [Greek](https://translate.wordpress.org/locale/el/default/wp-plugins/wp-event-manager) - (el)
✔️ [Hebrew](https://translate.wordpress.org/locale/he/default/wp-plugins/wp-event-manager) - (he_IL)
✔️ [Hindi](https://translate.wordpress.org/locale/hi/default/wp-plugins/wp-event-manager) - (hi_IN)
✔️ [Icelandic](https://translate.wordpress.org/locale/is/default/wp-plugins/wp-event-manager) - (is_IS)
✔️ [Indonesian](https://translate.wordpress.org/locale/id/default/wp-plugins/wp-event-manager) - (id_ID)
✔️ [Italian](https://translate.wordpress.org/locale/it/default/wp-plugins/wp-event-manager) - (it_IT)
✔️ [Japanese](https://translate.wordpress.org/locale/ja/default/wp-plugins/wp-event-manager) - (ja)
✔️ [Latvian](https://translate.wordpress.org/locale/lv/default/wp-plugins/wp-event-manager) - (lv)
✔️ [Lithuanian](https://translate.wordpress.org/locale/lt/default/wp-plugins/wp-event-manager) - (lt_LT)
✔️ [Nepali](https://translate.wordpress.org/locale/ne/default/wp-plugins/wp-event-manager) - (ne_NP)
✔️ [Polish](https://translate.wordpress.org/locale/pl/default/wp-plugins/wp-event-manager) - (pl_PL)
✔️ [Portuguese (Brazil)](https://translate.wordpress.org/locale/pt-br/default/wp-plugins/wp-event-manager) - (pt_BR)
✔️ [Portuguese (Portugal)](https://translate.wordpress.org/locale/pt/default/wp-plugins/wp-event-manager) - (pt_PT)
✔️ [Romanian](https://translate.wordpress.org/locale/ro/default/wp-plugins/wp-event-manager) - (ro_RO)
✔️ [Russian](https://translate.wordpress.org/locale/ru/default/wp-plugins/wp-event-manager) - (ru_RU)
✔️ [Serbian](https://translate.wordpress.org/locale/sr/default/wp-plugins/wp-event-manager) - (sr_RS)
✔️ [Sinhala](https://translate.wordpress.org/locale/si/default/wp-plugins/wp-event-manager) - (si_LK)
✔️ [Slovak](https://translate.wordpress.org/locale/sk/default/wp-plugins/wp-event-manager) - (sk_SK)
✔️ [Spanish (Spain)](https://translate.wordpress.org/locale/es/default/wp-plugins/wp-event-manager) - (es_ES)
✔️ [Spanish (Mexico)](https://translate.wordpress.org/locale/es-mx/default/wp-plugins/wp-event-manager) - (es_MX)
✔️ [Spanish (Colombia)](https://translate.wordpress.org/locale/es-co/default/wp-plugins/wp-event-manager) - (es_CO)
✔️ [Spanish (Chile)](https://translate.wordpress.org/locale/es-cl/default/wp-plugins/wp-event-manager) - (es_CL)
✔️ [Swedish](https://translate.wordpress.org/locale/sv/default/wp-plugins/wp-event-manager) - (sv_SE)
✔️ [Turkish](https://translate.wordpress.org/locale/tr/default/wp-plugins/wp-event-manager) - (tr_TR)
✔️ [Ukrainian](https://translate.wordpress.org/locale/uk/default/wp-plugins/wp-event-manager) - (uk)
✔️ [Vietnamese](https://translate.wordpress.org/locale/vi/default/wp-plugins/wp-event-manager) - (vi)
WP Event Manager also supports Right-To-Left (RTL) languages as standard, so you can use the plugin for international events, regardless of your target primary language.
More languages are earmarked for addition in the future too. We’d love more contributors to our translation efforts, and you can assist through the [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/wp-event-manager) website!
== 👉🏻 Get More From Your Event Management Using Premium Add-Ons ==
The free version of WP Event Manager is full-featured and ready to use. However, if you want more functionality without learning to code (or hiring a developer), the plugin lets you purchase and install a [number of add-ons](https://wp-eventmanager.com/plugins/) to enhance your experience.
👥 **[Registrations](http://www.wp-eventmanager.com/plugins/wp-event-manager-registrations/)**
Attendees can register for events using a form, and organizers can view and manage registrations from WordPress.
🎟 **[Sell Tickets](http://www.wp-eventmanager.com/plugins/wp-event-manager-sell-tickets/)**
Gives you the ability to integrate the ability to sell tickets for your events with WooCommerce – the most popular e-commerce platform for WordPress. You can create multiple event tickets for purchase (or that you can redeem) during submission.
🗓 **[Calendar](https://wp-eventmanager.com/plugins/wp-event-manager-calendar/)**
This lets you display an event calendar that lists upcoming events on your website. We think calendar events are the most convenient way to display your listings!
🗺 **[Google Maps](https://wp-eventmanager.com/plugins/wp-event-manager-google-maps/)**
This add-on lets you integrate the popular map functionality on your site. You can find events based on location, and the add-on also enables proximity search on your site.
📆 **[Recurring Events](https://wp-eventmanager.com/product/wp-event-manager-recurring-events/)**
If you need to create a batch of events to generate on a regular basis, this add-on will be perfect.
📝 **[Attendee Information](https://wp-eventmanager.com/product/wp-event-manager-attendee-information/)**
Coordination is a big part of event management, and this add-on lets you collect information about the attendees at the point of registration.
✉ **[Emails](http://www.wp-eventmanager.com/plugins/wp-event-manager-emails/)**
Getting notifications about your events will help you manage them better. This add-on will send you notifications in three situations: when you submit an event, when you approve an event, and when an event is over.
🎨 **[Colors](https://wp-eventmanager.com/product/wp-event-manager-colors/)**
While there is a lot of customization within WP Event Manager, the Colors add-on gives you more options. With this add-on you’re able to change the colors for the event type and categories, to help direct visitors to the right event listing.
WP Event Manager can also be your [virtual event platform](https://wp-eventmanager.com/virtual-event-platform/) too. Our [Expo Networking](https://wp-eventmanager.com/product/expo-networking/) add-on turns your WordPress website into a live streaming platform that includes a number of necessary features:
* A 360-degree experience, including one-to-one meeting rooms, virtual booths, and much more.
* A great-looking ‘reception area’, designed to greet attendees and direct them to the right room or booth.
* You can include polls, Question-and-Answer sessions, and other ‘fact-finding’ engagement features.
* Speaking of which, you can also implement other engagement functionalities including speed networking, breakout rooms, and more.
Combined with our [Speaker and Schedule](https://wp-eventmanager.com/product/speaker-and-schedule/), and [Registrations](https://wp-eventmanager.com/product/wp-event-manager-registrations/) add-ons, you’ll have a complete live streaming platform ready to go, from within your WordPress dashboard.
== 👉🏻 Choose Bundles to Grab Related WP Event Manager Add-Ons for Your Site ==
We package a number of add-ons in three different bundles, to save you money and offer you related functionality at a steal:
👤 **[Personal Bundle](https://wp-eventmanager.com/product/personal-bundle-package/)**
You’ll find every add-on we produce in one complete package.
📡 **[Virtual Bundle](https://wp-eventmanager.com/product/virtual-bundle-package/)**
This provides a collection of add-ons to help you run online events and expos, so you can set up a virtual event platform of your own.
💻 **[Developer Bundle](https://wp-eventmanager.com/product/developer-bundle-package/)**
This bundle also provides all of our add-ons, but lets you use them on five different domains.
Whatever your budget, WP Event Manager has a solution to help you implement top-notch event management for your site. Regardless, the free version of the plugin is free forever, and its core functionality will always be free.
== 👉🏻 Documentation and Support ==
There are [lots of ways](https://wp-eventmanager.com/help-center/) to find out the information you need to use WP Event Manager in an optimal way:
* For answers to basic questions on WP Event Manager, WordPress, and our ecosystem, you’ll want to look at the [Frequently Asked Questions (FAQs) page](https://wp-eventmanager.com/faqs/) on our site.
* For general information, our [knowledge base](https://wp-eventmanager.com/knowledge-base/) is the best place to head to.
* If you’re a visual learner, the [WP Event Manager YouTube channel](https://www.youtube.com/channel/UCnfYxg-fegS_n9MaPNU61bg) offers lots of guides to both basic and advanced use cases.
* Social media users will want to join the [Facebook community](https://www.facebook.com/groups/wpeventmanager/) for WP Event Manager.
* Developers should head [over to Slack](https://wpeventmanager.slack.com/) or [GitHub](https://github.com/wpeventmanager/wp-event-manager) to ask any questions, and find out more about how WP Event Manager is customizable to fulfil different project requirements.
As with every WordPress plugin, you can ask for general support from the free version of WP Event Manager on the dedicated [WordPress.org support forum](https://wordpress.org/support/plugin/wp-event-manager/). Premium support customers have a [specific point on our site](https://support.wp-eventmanager.com/) to direct tickets.
== Frequently Asked Questions ==
= What does the free version of WP Event Manager give me? =
You can manage your event listings in full, such as adding, removing, and organizing them using the WordPress dashboard. You can also create custom event fields. You’re able to assign locations to an event, and group collections using those locations.
For all other functionality, you’ll want to make use of any of our premium add-ons for WP Event Manager.
= How do I set up WP Event Manager? =
Our [installation guide](https://wp-eventmanager.com/knowledge-base/install-wp-event-manager/) will help you get WP Event Manager onto your WordPress system. [Adding your first event](https://wp-eventmanager.com/knowledge-base/adding-your-first-event/) is straightforward, and for most cases, you’ll simply need to insert a shortcode into your content.
= Can I use WP Event Manager without front-end submissions? =
Of course! You can use WP Event Manager without submitting anything from the front end by omitting the [submit_event_form] shortcode. You’ll still get the full experience of listing events.
= How can I customize the event submission form? =
We have [full documentation](https://wp-eventmanager.com/knowledge-base/the-event-submission-form/) on the event submission form shortcode within our knowledge base. However, to customize the form itself, you can follow the same process we recommend for [editing fields](https://wp-eventmanager.com/knowledge-base/event-fields/).
= Is there a way to add more functionalities to WP Event Manager? =
Yes – WP Event Manager is a full-featured event management plugin, but you can also add even more to the feature set.
A wide variety of [add-ons are available](https://wp-eventmanager.com/plugins/) to help you add live streaming, a calendar, more customizability, and Google Maps functionality (among others). You can even sell tickets, manage attendees, and much more.
You can buy each add-on within a bundle, or for an individual price, which means you’re able to tailor WP Event Manager to your own requirements
= How can I add a calendar to my WP Event Manager setup? =
Adding a calendar to your site is a great way to showcase events in a familiar and intuitive layout. WP Events Manager provides the [Calendar add-on](https://wp-eventmanager.com/product/wp-event-manager-calendar/). You can show a calendar with listing, individual calendar events, in a variety of different presentations.
For example, you can show upcoming calendar events, single-date calendar events, and more. You’re also able to display the calendar in a number of locations using shortcodes and widgets.
= Is there a way to stream live events using WP Event Manager? =
Yes! WP Event Manager is a full-scale [virtual event platform](https://wp-eventmanager.com/virtual-event-platform/) that lets you carry out live streaming. We package a number of related add-ons together in [our Virtual Bundle](https://wp-eventmanager.com/product/virtual-bundle-package/). This lets you access the features in our Expo Networking and Speaker and Schedule add-ons. What’s more, you can sell tickets, collect attendee data, manage those attendees, provide virtual name tags, and even add users to either Zoho or HubSpot CRMs.
= Can I sell tickets to events using WP Event Manager? =
You can sell tickets using the [WP Event Manager Sell Tickets add-on](https://wp-eventmanager.com/product/wp-event-manager-sell-tickets/). This combines with the WooCommerce plugin to let you set up multi-level pricing tiers, and track the ticket sales you make.
You could sell tickets live too, as the interface lets you add Added paid tickets to WP Event Manager. In fact, there are a number of ticket options you can use to refine the experience for both you and your attendees.
= Can I pass on my ideas and thoughts about WP Event Manager to you? =
We love to hear from every user of WP Event Manager! You’re welcome to contact us using the [form on our website](https://wp-eventmanager.com/contact/), although we also have a lot of social media channels to browse through:
* [Facebook](https://www.facebook.com/wpeventmanager/)
* [Twitter](https://twitter.com/wp_eventmanager)
* [Instagram](https://www.instagram.com/wpeventmanager/)
* [YouTube](https://www.youtube.com/channel/UCnfYxg-fegS_n9MaPNU61bg)
Feel free to drop us a message to pass on your thoughts about how you use WP Event Manager.
= Where can I find out more about how to use WP Event Manager? =
Our Help Center is the best place to find out more about WP Event Manager. Within, you’ll find a dedicated FAQ section, a full knowledge base, support for any add-on purchases, and much more.
== Screenshots ==
1. The submit Event Form.
2. Submit Event Preview.
3. A Single Event Listing.
4. Event Search Filters
5. Event Listing - Line Layout
6. Event Listing - Box Layout
7. Frontend - Event Dashboard.
8. Backend - Event Dashboard.
9. Add Added Event From Backend - Admin Panel.
10. Add Event Type From Backend - Admin Panel.
11. Add Event Category From Backend - Admin Panel.
12. Event Listing Settings From Backend - Admin Panel.
13. Event Submission Settings From Backend - Admin Panel.
14. Event Page Settings From Backend - Admin Panel.
== Changelog ==
= [3.1.40] 05-12-2023 =
Fixed: A Layout option is added to the Elementor "Event Listing" widget.
Fixed: The 404 error message that is displayed in the organizer and venue form is removed.
Fixed: Security issue with version 3.1.39 is resolved now.
Fixed: The event_summary shortcode is now working properly.
Fixed: The order by name attribute is now working properly.
Fixed: The issue related to the registration button on the single event field is now resolved.
Fixed: Issue related to the event type display on the post-an-event page is resolved.
Fixed: The problem of duplicate event appearance in attendee information is now resolved.
Fixed: The problem of adding an organizer is now resolved.
Fixed: The organizer and venue ID is now displayed properly.
Fixed: New Shortcode attribute is added.
Fixed: New Shortcode attribute is added for event listing.
Fixed: Code snippet to set custom expire event date time
Fixed: Media library section images will no longer be available after deleting the data.
Fixed: No data is available in the media library as well in the database after deleting the plugin.
Fixed: Venue and organizer data are no longer available after deleting the plugin.
Fixed: New screenshots and content are added to the event submission settings section.
Fixed: Documentation is added for translating your site language without Loco Translate.
Fixed: The issue related to the appearance of the venue in the front end is now fixed.
Fixed: The problem of the old comments in the single event listing is now resolved.
Fixed: code is added for sorting events on the organizer detail page.
Fixed: RSS feed functionality document is added to the event listing section.
Fixed: Event Listing shortcode attributes are added to the documentation.
= [3.1.39] 24-10-2023 =
Fixed : The availability issue of the field editor option is resolved.
Fixed : Adding a new ticket from the frontend to an event issue has been resolved.
Fixed : The grammatical error in the text of the general settings tab has been resolved.
Fixed : Issue related to the availability of events in the RSS feed has been resolved.
Fixed : Events will take time to load.
Fixed : Warning error message is fixed on the admin side.
Fixed : Hook would be used to validate additional fields.
Fixed : Event Banner missing on single event page.
Fixed : Events won’t load if using Hebrew characters in event type or category.
Added : Add country code for the event organizer.
Added : Add country code for the offline event.
= [3.1.38] 20-08-2023 =
Fixed : Apostrophes issue with custom field names is fixed.
Fixed : Wpeditor field is now showing default placeholder.
Fixed : Registration email , URL field with updated value can now be displayed on the backend side.
Fixed : Warning message related issue is fixed.
Fixed : The warning message that was displayed in the Add, Edit and update options of the organizer and venue is now removed.
Fixed : While creating a new event from the frontend, event type and category are displayed as numbers.
Fixed : Translation issue is fixed.
Fixed : Fatal error message issue is fixed.
Fixed : Security issue is fixed.
= [3.1.37.1] 14-08-2023 =
Fixed: Plugin is tested with the latest WordPress version and removed compatibility issues with it.
Fixed: The issue related to my registration email/URL is fixed in WP Event Manager.
= [3.1.37] 07-08-2023 =
Fixed: Events of other languages can now be shown using the Polylang plugin
Fixed: On the event details page, clicking on the event type and event category was showing an error message which is now resolved.
Fixed: The problem related to customizing the permalink is resolved.
Fixed: The issue related to the display of an event multi-day start day is solved
Fixed: ReCAPTCHA can now be removed from the Event Organizer page as per requirement.
Fixed: The undefined URL error on the registration button on the event detail page is fixed.
Fixed: Filters can now be added to change the image alt-text for the event banner.
Fixed: Event shortcode display issue is resolved.
Fixed: The Filter and Reset button in the Guest group dashboard can now be seen in the horizontal line.
Fixed: Event Category shortcode attributes are now working properly.
Fixed: Creating a new event from the front, the event expiry date can be added.
Fixed: The appearance of the deleted event field in the field editor is fixed.
Fixed: Space issue between the date and time separator is resolved.
Fixed: Users are now able to select values from dropdown.
Fixed: Shortcode upcoming events and past events, layout attribute is not working.
Fixed: Display issue of added fields in the venue details page is resolved.
Fixed: Provided options for a full day event to avoid the repetition of the start date and end date.
Fixed: The newly added event fields in the event form can be deleted as per requirements.
Fixed: Organizers can make their events private or public using the Field editor.
Fixed: Shortcode related issue on the view page.
Fixed: Pagination is now working properly with the past event listing module.
Fixed: Issue related to adding organizers and venues at the backend is resolved.
Fixed: Problem related to the Dates displayed in the list view is resolved.
Fixed: Backend venue and organizer related issue is resolved.
Fixed: String Translation issue is fixed.
Added: Added shortcode for upcoming events.
Added: A new feature added in the event layout type shortcode.
Added: A new shortcode attribute is added to change the title of event listing.
Added: Advanced search filters are added to the event listing page.
Added: A new feature was added in the event layout type shortcode.
Added: Reset button is added to the event dashboard.
= [3.1.36] 30-06-2023 =
Fixed : Revert back when filtering using search_datetimes.
Fixed : Recenet events widget section - Past events removed from it
Fixed : At backend setting - If ticket type deactivate then visible on event details page.
Fixed : Event status is display active after manually set event exipred date.
Fixed : Validate number field for decimal value.
Fixed : Paragraph formating not working on single event detail page for venue/organizer.
Fixed : Calendar design issue with core plugin.
Added : Email field type added in the field editor.
Added : Added setting for email header in the general tab.
= [3.1.35] 23-06-2023 =
Fixed : Repetition of event titles in the post_meta table is now resolved.
Fixed: The undefined error messages are successfully removed.
Fixed : The problem with the Past event display in the widget is fixed.
Fixed : Event expiry date related issue is fixed.
Fixed : The issue of improper email in the registration database is resolved.
Fixed : The field editor page on the admin side remains blank when the organizer option is disabled in the general setting.
Fixed : The content of Ticket selection filter settings is updated.
Fixed : The language translation issue in the core plugin is resolved.
Fixed : The mobile view of the event category and event type is improved
Fixed : The design for long event titles in the event dashboard is improved.
Fixed : Issue related to the loading time of the event overview site is resolved.
Fixed : Choose an event and Choose a category options are added to the dropdown menu of event types and event categories.
Fixed : Issue related to the processing time is shortened when using selected datetime filter option.
Fixed : Problem with the event display of past event shortcodes is resolved.
Fixed : Added shortcode to display the list of expired events.
Added : Widgets are now available in the list format.
Added : Shortcodes of each addon can now be displayed in a list form.
= [3.1.34] 18-05-2023 =
Fixed - PHP Fatal error message issue of the event manager plugin is fixed.
Fixed - Event thumbnail is missing on the event listing page of the event manager plugin.
Fixed - 404 error is displayed when the event profile language is different from the event site language.
Fixed - Event Ticket price is displayed on the event details page even after changing the event ticket type from paid to free.
Fixed - Price and ticket icons should be displayed in a horizontal line.
Fixed - Event title is missing in the post meta.
Fixed - An error message is displayed on the event organizer page.
Fixed - The Event details page file is not receiving the translated text.
Fixed - A warning message is displayed on the edit event page of the event manager plugin.
Fixed - Event Date and time shortcode related issue.
Fixed - Translation issue with German characters in the event manager plugin.
Fixed - The text description is improved on the event Setup page.
Fixed - A wrong message is displayed on the event listing page.
Fixed - The Mobile view message is not displayed for an event organizer.
Fixed - The event Organizer and venue dashboard page text messages are changed.
Fixed - The Mobile view message is not displayed for an event venue.
Fixed - The past shortcode per page attribute is not working.
Fixed - The event Organizer add form page name field placeholder text should be improved.
Fixed - Event Organizer and venue page validation message issue is fixed.
Fixed - The event Field editor is displaying extra fields once we add them.
Fixed - The first letter of the Setting option title should be capitalized in the event manager plugin.
Fixed - Past shortcode issue with different attributes.
Fixed - Fatal error is displayed on the event organizer page.
Fixed - Single Organizer’s Details shortcode is not working.
Fixed - Events are displayed as online events even after adding location to the Recent events widget..
Fixed - The shortcode for online events is not working.
Fixed - Some parts are not translated into the German language on the event listing page.
Fixed - Input text box placeholder is not showing properly.
Fixed - Location text is displayed on the event detail page.
Fixed - The Backend organizer section displays an error message.
Fixed - Addons menu in the WP Event Manager plugin image is not displayed properly.
Fixed - Event ticket numbering issue while creating Added tickets for an event.
Fixed - A Message is added multiple times on the organizer and venue post on the event page.
Fixed - Added a tooltip for user notifications in the ticket section.
Fixed - Event Widget displays a warning error message.
Added - When there is no featured event proper message should be displayed on the page.
= [3.1.33] 07-11-2022 =
Fixed - Events language translation issues.
Fixed - Featured event search issue on the event listing page.
Fixed - Single event venue and organizer issue with elementor.
Fixed - Event listing speed issue.
Removed - Remove date time details from the single event page when the event start & end date is not added.
Fixed - Priority values issue in the event field editor on the admin side.
Fixed - Issue with event listing shortcode attributes.
Removed - Removed unwanted files from the event manager.
Fixed - Issue of spelling mistakes and security fixes.
Fixed - Issue with radio selected value display in small later on the post-event form.
Fixed - Organizers & venues not listing on submit event form when editing events from the frontend dashboard.
Fixed - Event listing and calendar Issue of elementor compatibility.
Fixed - Load more button was hide during page loading on the event listing page.
Fixed - Event listing filter issue on the event dashboard.
Fixed - Event listing page DateTime filter issue.
Fixed - Video playing issue on the single event page.
Fixed - Location does not consider the special characters on the event listing filter search.
Fixed - Setting the issue of expired events on the event listing page.
Fixed - Approve Events and Expire Events bulk actions were not working on the admin side.
Removed - Event location removed from the database after updating the event as online.
= [3.1.32] 12-09-2022 =
Fixed - Event Manager Security issues.
Fixed - Event manager Add-on page special symbol is display.
Fixed - Event details page end date issue.
Fixed - Event organizer ditelse visibility issue.
Fixed - Waring errors Fixed while adding event organizers and vanue.
Fixed - Compatibility with Elementor like users can add Single Event vanue.
Fixed - Compatibility with Elementor like users can add Single Event organizer list.
Fixed - Create Event Details Page issue with Elemento.
Fixed - WordPress Org : WP Event Manager JS File issue
Fixed - Upcoming events widgets and sell ticket Order issue.
Fixed - Featured/Recent Events Widget - Expired events are display in the Featured Events list.
Fixed - Add file button Event submission form.
Fixed - Location issue in Event detail page.
Fixed - Event Organizer short code issue.
Fixed - Event Dashboard loading issue.
Fixed - Event Listing shortcode issue.
Fixed - Warning message in WP Event Manager.
Fixed - ASC/DESC filter is not working
Fixed - Google structured data issue in WP Event Manager.
Fixed - Event time wise sorting issue.
Fixed - Event banner update issue in WP Event Manager.
= [3.1.31] 22-08-2022 =
Fixed - Multi select field display related issue.
Fixed - issue related to Elementor custom field ticket link
Fixed - Translation issue in the month of event date range.
Fixed - Issue related to WP Event Manager version text.
Fixed - Issue related to email id field in event Registration form.
Fixed - Location issue on event details page when selected online event.
Fixed - Issue related to a warning message on the event venue/ organizer section.
Fixed - Post an event page dropdown related issue.
Fixed - Issue related to making changes in the event submission form.
Fixed - Backend setting issue in Expo Networking addon for virtual events..
Fixed - Title related issue on event organizer page.
Fixed - Missing description text on event pages.
Fixed - Issue in the event Venue logo option at the backend.
Fixed - Issue related to deprecated error message in Elementor.
Fixed - Issue in adding a Added event venue on Post an event page.
Fixed - Login issues in the WP Event Manager application using username and password.
Fixed - Issue related to editing events from the backend.
Fixed - Event visibility issues.
Fixed - Issue related to the end date of an event in the event calendar.
Fixed - Event venue/organizer duplication issue.
Fixed - Issue with sell tickets display.
Fixed - Ticket description issue.
Fixed - Issue related to the venue/ organizer logo file on post an event page.
Fixed - Issue related to the Elementor deprecated error message.
Fixed - Past event shortcode related issue.
Fixed - Event duplication issue.
Fixed - Paragraph issue on event organizer/venue single details page.
Fixed - Issue related to the duplicate event view.
= [3.1.30] 04-07-2022 =
Fixed - The given event location was unable to work as a hyperlink / Event Location issue.
Fixed - Event venue description format issue.
Fixed - Problem in HTML code for event display.
Fixed - Selected datetime shortcode and event location issue.
Fixed - Event organizer details section issue / issue in the event organizer details section.
Fixed - Dev view issue.
Fixed - Event Detail page issue.
Fixed - Event Field editor issue.
Fixed - Issue with the term multi select in Event Type and Event Category in block editor.
Fixed - Event dashboard setting issue.
Fixed - Some JS and css tweaks for Event calendar.
Fixed - Elementor shows html code with Event Manager.
Tweak - Event listing compatibility with event calendar.
= [3.1.29] 22-06-2022 =
Fixed - Issues related to event security, event details and event shortcode.
Fixed - Event Field Editor Issue.
Fixed - [event id="123"] event shortcode issue.
Fixed - WP Event Manager reinstallation issue.
Fixed - Event Listing Page issue in event calendar.
Fixed - Some js and css tweaks for the event calendar.
Fixed - Past Event Listing pagination issue.
Fixed - Single event details page issue.
Fixed - Event Date issue at the backend.
Fixed - Spacing issue in the event listing page.
Fixed - Event Venue issue.
Fixed - Code issue in the event listing page.
Fixed - Events page issue at the backend.
Fixed - Issue in event filtering through date and time in Event Manager.
= [3.1.28] 14-06-2022 =
Fixed - issues related to event shortcode, event security, elementor and datepicker compatibility.
Fixed - Scrolling issue on the events setting page
Fixed - Event dates and datepicker issue
Fixed - Event venue form field issue in the field editor
Fixed - Pagination attribute issue in the upcoming events listing
Fixed - Compatibility issue between WP Event Manager and Elementor
Fixed - Event organizer field issue in the frontend and backend
Fixed - Events shortcode issue
Fixed - WordPress org security issue for events site.
Fixed - Duplicate event venue and event organizer functionality issue
Fixed - Event plugin datepicker with bootstrap
Fixed - Event editing issue at the front end.
Fixed - Elementor event template issue
Fixed - issue in past events listing with Elementor
Tweak - SEO and Language translation compatibility issue
Fixed - Duplicate event organizer issue on event dashboard
Fixed - Event status issue
Added - Remove event location option added
Fixed - Event Set up page issue
Fixed - Event display issue in the upcoming events listing
Fixed – Bootstrap dependency on date-timepicker removed for Event calendar.
Fixed - Some js and css tweaks for the event calendar.
= [3.1.27] 02-05-2022 =
Fixed - paragraph issue in the event organizers section
Fixed - event registration date issue
Fixed - org security issue
Fixed - event field issue in the event details page
Fixed - Event organizer and venue field issue
Fixed - issue in start and end date translation of datepicker
Fixed - Issue in event submission
Fixed - URL type issue
Fixed - Event type and Event category issue in event calendar
Fixed - Expo compatibility issue
Fixed - Event registration dashboard issue
Fixed - Event listing theme issue in calendar.
Fixed - WP Event Manager Hindi Language issue on event dashboard
Fixed - Submit event form issue
Fixed - Pagination issue for upcoming events on event calendar
Fixed - AM and PM translation issue in event calendar
Fixed - Issue related to event search
Fixed - Issue in changing author for event venue and organizer
Fixed - Paragraph issue in event organizer section
Fixed - URL field type issue in event editor
Fixed - Event location issue due to Google Added policy
Fixed - Issue related to the display of event organizer in single event template
Fixed - Event expiry date issue with event settings
Fixed - Issues related to event organizer form field
Fixed - Custom field issue
Fixed - Featured event display issue with elementor
Fixed - issue in the add group field option in event field editor
Fixed - Expired event and canceled event tag issue
Fixed - Event calendar issue for non logged in user
Fixed - Google Map issue
Fixed - Issue in the registration email/ URL in the field editor
Fixed - Event venue location and Zip code issue Customization doc #449
Added - Upgrade database
Tweak - Language related issue
Fixed - Widget related issue
Fixed - Issue related to the login link in event organizer form
Fixed - Event Summary page related issue
Fixed - Issue related to the event organizer form submit message
Fixed - Zoom dashboard and Zoom meeting form issue for logged in user
Fixed - Issue related to the single event page banner
Fixed - Issue related to the event organizer section in the event submission form
Fixed - Event start date and event end date related issue
Added - Divi Theme Timepicker on add/edit event disabled
Fixed - Issue related to setting up events widget
= [3.1.26] 21-04-2022 =
Fixed - Issue related to the visibility of Submit organizer form page and events dashboard
Fixed - Issue related to the display of event organizer description
Added - The events page now selects “today” as selected-date- range instead of the static date
Added - Event organizer single page and organizers list shortcode added
Fixed - Issue related to the Event organizer data in single event page
Fixed - Issue related to filtering passed events
Fixed - WPML configuration file issue
Fixed - Issue related to the event feed endpoint
Fixed - Issue related to the WPEM column setting and filter in event listing page
Fixed - Issue related to event filtering through date
Fixed - Loading chosen dropdown at backend side for editing event listing page
Fixed - Issue related to the display of total number of event listings
Fixed - Issue related to the event organizers role in the backend setting
Fixed - Issue in the sign in functionality in the event details page
Fixed - Issue related the event submission form
Fixed - Issue related to the event listing for users
Fixed - Issue related to the shop and cart pages of WooCommerce
Fixed - Design issue in event summary shortcode
Fixed - Issue related to the importing events
Fixed - Issue related to the post an event page
Fixed - Compatibility issue between single event map and Elementor
Fixed - Design issue in the event listing page
Fixed - Issue related to the event title and event description
Fixed - Issue related to the apostrophes in the event field editor
Fixed - Issue in the event shortcodes "selected_event_types " and "selected_category"
Fixed - Elementor issue with featured event widget
Fixed - Past event listing issue
Fixed - Issue related to the post per page on events dashboard
Fixed - Single event shortcode issue with Elementor
Fixed - Issue in the Single Event Map with Elementor
Fixed - Issue related to the notice on event detail page
Fixed - Issue related to the sell tickets option on event submission form
Fixed - Issue in the event category and event tags in the event detail page
Fixed - Issue related to the “load more events” display
Fixed - Issue related to the event ticket-price-option
Fixed - Issue in the Featured Event Background Color
Fixed - Issue in the Ticket Price field
Fixed - Issue related to notices on the event preview page
Fixed - Issue related to signing into the Post an event page
Fixed - Post an Event page issue
Fixed - All events plugin activation issue
Fixed - Issue with the upcoming events widget
Fixed - Issue with the online event option values in Field editor
Fiz - Datepicker issue in custom date field
Fixed - Issue related to the event expiry date in Datepicker
Fixed - Issue related to the event little option
Removed - Removed upload event banner file option at backend side.
Fixed - Issue in the online event radio field
Fixed - Issue related to the event banner slider button
Added - (*) mark on all Required Fields added
Fixed - Required field issue on Backend
Fixed - File upload type for Logo Field issue in the Backend dashboard
Fixed - Common width issue on event location
Fixed - Issue related to the validation for email field on Post an Event Page
Fixed - Issue related to the Filter to replace Edit Event Submission Message
= [3.1.25] 04-03-2022 =
Fixed - Event shortcode related issue
Fixed - Event organizers listing related issues
Fixed - Event type and event category related issue on edit event page
Fixed - Issue related to the code display at the backend setting
Fixed - Issue related to the display of event type
Fixed - Shortcode related issue with Elementor
Fixed - Event code [events per_page="10" show_filters="false"] related issue
Fixed - Event display related issue
Fixed - Online events display related issue with the shortcode [events show_filters="false"]
Fixed - [past_events] shortcode related issue.
Fixed - Issue related to speaker and schedule page shortcode for events.
= [3.1.24] 21-02-2022 =
Fixed - Event image duplicate issue.
Fixed - Event category selection box issue.
Fixed - Event order shortcode and date-related issues.
Fixed - Event custom field issues with field editor.
Fixed - Event Translations issues.
Fixed - Event location related issues with radius filter.
Fixed - Some js and CSS tweaks for the Event calendar.
Fixed - Video related issue in the preview
Fixed - Post event page related issue
Fixed - Issue related to adding the event venue and event organizer in the post an event page
Fixed - Changing date related issue while editing events at the backend
Fixed - Appearance of a warning message while filling up event organizers details while posting an event
Fixed - Translation issue with the Date picker
Fixed - Event Shortcode issues
Fixed - Issue related to arranging events based on dates
Fixed - Issue related to the event Filter option in Event listing
Fixed - Issue related to the custom information collected in the event field editor for organizers
Fixed - Issue related to Elementor’s single event field element
Fixed - Event organizer issue with Elementor
Fixed - Issue related to the event Field Editor
Fixed - Issue related to the pagination option connected to the event page
Fixed - Issue related to the enum value in the field "eventAttendanceMode"
Fixed - Issue related to font style in the event page
Fixed - Issue related to the Elementor page
Fixed - Issue related to Event venue logo on Event venue dashboard
Fixed - Issue related to the Loco Translate in Hindi Language in Event Dashboard
Fixed - Issue related to the "Choose a Category" and "Choose an Event Type" on the event listing page
Fixed - Issue related to the event translation strings
Fixed - Issue related to the event start date and event end date in the events page.
Fixed - Event display issue on mentioned dates.
Fixed - Shortcode related issues in upcoming events display.
Fixed - Issue related to the delete button in Elementor in Events Dashboard.
Fixed - Issue related to deleting event venue/ organizer in the events dashboard.
Fixed - Issue related to the mobile responsiveness of the event date range.
Fixed - Issue related to the display of paid and free events.
Fixed - Issue related to the event shortcode pagination.
Fixed - Issue related to searching events by date range in events calendar.
Fixed - Issue related to multisite event date format.
Fixed - Issue related to the select date range functionality in the Added event listing theme.
Fixed - Issue related to SEO and CSS on the event listing page.
Fixed - Issues related to the event listing theme on events listing page.
Fixed - Event expiry date issue.
Fixed - Issue related to the event file type in field editor.
Fixed - Issue related to the single event shortcode in past events.
Fixed - Issue related to the taxonomy change for events.
Fixed - Issue related to the event organizer and event venue form.
Fixed - Shortcode compatibility with Avada Builder.
Fixed - Loco Translate related issue.
Fixed - Issue related to duplicate event venue and organizer.
Fixed - language issue in the featured event in Loco translate.
Fixed - Language translation issue with Loco Translate.
Fixed - Language related issue in event venue name with Loco Translate.
Fixed - Issue related to the show filter option on the event listing page in Elementor.
Fixed - Issue related to the event venue form.
Fixed - Issue related to the event registration button for specific events.
Fixed - Event Venue dashboard notification issue.
Fixed - Translation issue with elementor addon
Fixed - WP.org security related issue.
Fixed - Issue with the radius filter for events.
Fixed - Issue related to the event venue and organizer from on post an event page.
Fixed - Event translation related issue.
Fixed - Issue related to the event start date display format.
Fixed - Event Venue and Organizer page related issue.
Fixed - Issue related to the event Filter bar in the Event dashboard.
Fixed - Issue related to the event venue and event organizer details in the event dashboard.
Fixed - Issue related to the selected date in event listing with Elementor.
Fixed - Typing issues in the templates and event listing content.
Fixed - issue related to single event detail page.
Fixed - Issue related to the submit organizer form.
Fixed - Issue related to the orderby parameter in event shortcode.
Fixed - Issue related to arranging events based on event start date.
Fixed - Issue related to the event venue form.
Fixed - Issue related to the display of canceled events on the event listing page.
Fixed - Event Order display in Elementor.
Fixed - Issue related to event category and type.
Fixed - Issue related to submit organizer and submit venue form for events.
Fixed - Issue related to the event venue/organizer text description.
Fixed - Issue in adding event organizer on Post an event page.
Fixed - Issue related to the event category permalink.
= [3.1.23] 10-12-2021 =
Fixed - Issue related to the display of the event form field in post an event and edit age.
Fixed - Improved security and escaping output for events.
Fixed - Issue related to the event venue/organizer option in the event dashboard.
Fixed - Issue related to the dismiss option in the event dashboard.
Fixed - Issue related to event banners at the backend.
Fixed - Issue related to the page creation after reinstallation of the plugin.
Fixed - Issue related to the event venue/organizer form fields.
Fixed - Spelling mistake in the event manager setting pages.
Fixed - Punctuation issue in the event organizer dashboard.
Fixed - Event display related issue.
Fixed - Event time related issue in Event Manager.
Fixed - Event translation related issue.
= [3.1.22] 10-09-2021 =
Fixed - Issue related to the event date format
Fixed - Issue related to WordPress 5.7.0 version update for events site.
Fixed - Issue related to the donation ticket details in the event registration section.
Fixed - Issue related to the last name field in the event frontend form.
Fixed - Issue related to the event detail page in Elementor.
Fixed - Issue related to Event Manager Expo and virtual compatibility.
= [3.1.21] 27-05-2021 =
Fixed - Issue related to the notice text on event organizer submit form page for events.
Fixed - Issue related to bool(true) on the event submit page.
= [3.1.20] 06-04-2021 =
Fixed - Issue related to the display of pagination option in the upcoming event listing in Elementor.
Fixed - Issue related to the password field in the event field editor.
Fixed - Value display related issue on the event page.
Fixed - Password field type related issue in the field editor.
Fixed - Issue related to the past events in the event listing.
Fixed - Event dashboard related issue.
Fixed - Punctuation related issue in the event calendar.
Fixed - Issue related to the Select type in event field editor.
Fixed - Issue related to the string PAID translation on the single event listing page.
Fixed - Issue related to the field editor type in the event organizer field.
Fixed - Event duplication issue at the event dashboard.
Fixed - Issue related to the event registration form widget.
Fixed - Elementor custom post type template compatibility issue.
Added - Event Custom field issue.
Fixed - Issue related to the event Registration deadline date.
Fixed - Issue related to the Addon deactivation.
Fixed - Issue related to the event submission setting.
Fixed - Issue related to the custom field type for events.
Fixed - Notice issue in the event details page. g
Fixed - Issue related to the shortcode selected_datetime for upcoming events.
Fixed - Issue related to overriding filter via template file.
Fixed - Issue related to duplicate events.
Fixed - Issue related to corrupt images.
Fixed - Issue related to the creation of a single event template with a custom field.
Fixed - Issue related to the WooCommerce deactivation.
Fixed - Issue related to the Custom field type for events.
Fixed - Event listing issue with WordPress 5.6.
Fixed - Issue related to filtering events by event category.
Fixed - Date picker issue for events.
Fixed - Issue related to the field editor reset.
Fixed - Issue related to the Elementor event listing and event calendar element improvements.
Fixed - Elementor Event Listing and calendar elements improvements.
= [3.1.19] 23-01-2021 =
Fixed - Issue related to the default event banner placeholder image.
Fixed - Issue related to the event registration page design.
Added - URL field type added in the field editor.
Fixed - Issue related to the single event venue in Elementor.
Fixed - Issue related to the edit single event summary section.
Fixed - Issue related to the event_types attribute.
Fixed - Issue related to the past event widget.
Fixed - Issue related to adding event venue and organizer from the post an event shortcode.
Fixed - Theme issue in the event dashboard menu.
Fixed - Issue related to the text of additional details.
Fixed - Issue related to the WP_ Event _Manager_ Category_Walker.
Fixed - Wording issue on events setting page.
Fixed - Issue related to the Elementor event listing and event calendar elements improvements.
Fixed - Custom field improvements on single event page.
= [3.1.18] 23-12-2020 =
Fixed - Content on custom field in search form on event dashboard added.
Added - option to filter events on the basis of time is added on the event dashboard.
Fixed - Issue related to the display of the comment form at each event.
Fixed - Event dashboard shortcode issue.
Fixed - issue related to allowing past date while editing events.
Fixed - Attribute issue.
Fixed - Issue related to entering past events on an events website.
Fixed - Issue related to the translation of event organizer and venue strings.
Fixed - Design related issue in the event addon setup page.
Fixed - Issue related to the debug log.
Fixed - Issue related to the Test JQuery.
Fixed - Notice issue in the single event listing.
Fixed - Issue related to the function file.
Fixed - Content related issue on the event dashboard.
Fixed - Label related issue at the event admin side
Fixed - Issue related to the end date filter option in the backend.
Fixed - Issue related to the settings page at the admin panel.
Fixed - Text related issue in the event Registration form.
Fixed - Issue related to the event category multi select setting.
Fixed - Issue related to some notices and warning messages in the events section.
Fixed - Require notice text for Event Time zone in Event Manager.
Fixed - Issue related to the event ticket options notice on the post an event page.
Fixed - Notice text issue for displaying no events.
Fixed - Issue related to the location of the event related files and event organizer template files.
Fixed - Issue related to the location of the event venue template files.
Fixed - Issue related to the event filtering system at the admin side.
Added - UI of the event dashboard is changed.
Fixed - Issue related to the time zone while changing each event setting.
Added - Added event dashboard design added.
Fixed - Event date format issue.
Fixed - Issue related to the WP Editor.
Fixed - Issue related to event organizer management.
Fixed - Pagination issue on the event organizer page.
Fixed - Issue related to the event venue section in single event listing.
Fixed - Issue related to the event organizers name in the organizer box.
Fixed - Issue related to filtering events on the basis of event dates.
Fixed - Issue related to the visibility of the custom field in the event submission form.
Fixed - Issue related to the heading of the event settings.
Fixed - Punctuation issue in the event notice text.
Fixed - Field editor issue.
Fixed - Issue with the custom fields in the WP field editor.
Fixed - HTML tag issue in event venue and organizer description.
Fixed - Issue related to the appearance of Google API key.
Fixed - Issue related to the event field heading.
Fixed - Event search filter issue.
Fixed - Issue related to adding the URLs of event organizers to the event organizer section at the admin side.
Fixed - Issue related to the event organizer filter.
Fixed - Issue related to the event venue order in the Event Calendar.
Fixed - Language related issue in event venue notice.
Fixed - Issue related to the event venue notice in the event venue list.
Fixed - Issue related to the event organizer notice.
Fixed - Issue related to the event organizer notice in the event venue list.
Fixed - Punctuation related issue in the event calendar.
Fixed - Issue related to the post an event page notice.
Fixed - Date issue on the post an event page.
Fixed - Issue related to the event venue and event organizer list.
Fixed - Issue related to the date and time format.
Fixed - Shortcode related issue in events.
Fixed - Issue related to the event Registration/ URL button.
Fixed - Hardcoded strings improved in Event Manager and event calendar.
Fixed - Improved event calendar capability.
= [3.1.17] 22-12-2020 =
Added - Override archive template documentation added.
Fixed - Issue related to Event status.
Fixed - Issue related to Event dashboard design.
Fixed - Description box issue.
Added - Event filter section in Elementor added
Fixed - Translation related issue.
Fixed - Issue related to code update.
Added - Event filtering with date and time after plugin update.
Fixed - Issue related to the field editor in Elementor.
Fixed - Issue related to the WP Event Manager set up page.
Fixed - Issue related to the show hide registration button in Single event listing.
Added - Design issue in the Added event dashboard.
Fixed - Issue related to the organizer list.
Fixed - Issue related to the Multi-select Event Types and Category setting.
Added - Design issue in the WP Event Manager plugin.
Fixed - Issue related to the WP Event Manager Plugin information box alignment.
Fixed - Issue related to the event field editor.
Fixed - Issue related to the cache helper.
Fixed - Issue related to the automatic event page set up.
Fixed - Issue related to the warning in the WP Event Manager plugin.
Fixed - Issue related to the Cache result for Google Maps addon.
Added - Start week in Date picker improved.
Fixed - Issue related to the event ticket price option.
Fixed - Issue related to the Multiple event Type and Category in single event listing.
Fixed - Validation issue during event submission.
Fixed - Issue related to uploading a PDF file in the additional section of an event page.
Fixed - Issue related to event deleting notification.
Fixed - Issue related to the Events Selected Datetime with order by and order filter.
Fixed - Shortcode related issue with event time.
Fixed - Design related issue on the event admin side.
Fixed - Issue related to the active class in the event registration button.
Fixed - Core button issue in WP Event Manager Contact Organizer.
Fixed - Issue related to the Field editor design in Event Manager.
Fixed - Issue related to images in the past event listing.