forked from impress-org/givewp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1525 lines (1259 loc) · 154 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
=== GiveWP - Donation Plugin and Fundraising Platform ===
Contributors: givewp, dlocc, webdevmattcrom, ravinderk, mehul0810, kevinwhoffman, jason_the_adams, henryholtgeerts, kbjohnson90, alaca, benmeredithgmailcom, jonwaldstein, joshuadinh, glaubersilvawp, pauloiankoski
Donate link: https://go.givewp.com/home
Tags: donation, donate, recurring donations, fundraising, crowdfunding
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.2
Stable tag: 3.3.1
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Accept donations and begin fundraising with GiveWP, the highest rated WordPress donation plugin for online giving.
== Description ==
**[GiveWP](https://go.givewp.com/home "Visit the GiveWP website")** is the highest rated, most downloaded, and best supported donation plugin for WordPress. Whether you need a simple donate button or a powerful donation platform optimized for online giving, GiveWP is right for you.
Transform the way you accept online donations, starting for free. With GiveWP you can accept gifts for charity or for other purposes, through customizable donation forms. Our donation plugin also allows you to view donor data and fundraising reports, manage donors, and integrate with a wide variety of third-party gateways and services.
[youtube https://youtu.be/dFjYyWLyB-k]
=== ✨ GiveWP Features ===
GiveWP is free and full of many advanced features to suit your needs. Start by choosing one of our donation form templates to create your first fundraising campaign. Then, take advantage of full-featured fundraising reports and donor management tools to increase your overall fundraising revenue by learning what makes donors donate.
Free donor tools also help keep your donors happy. The donor dashboard helps your donor base easily manage their accounts and access their donation history. With our [premium add-ons](https://go.givewp.com/addons "See all our Premium Add-ons"), you can add additional donor tools, like annual receipts.
**[Powerful Donation Forms](https://go.givewp.com/features-forms "See how powerful our fundraising forms can be")**
GiveWP has taken inspiration from Gutenberg blocks to create an even better form-building experience. The Visual Donation Form Builder uses sections and blocks to provide a more intuitive way to build and configure your donation forms.
In this builder, you’ll see your design in real time. Watch as your form takes shape as you select custom colors, fields, elements, and more. For those with a flair for customization, you can add Custom CSS directly into the builder.
* Build custom donation forms in your WordPress admin
* Customize donation form templates without any code
* Add goals, multiple giving amounts, custom amounts, terms and conditions and more with just a couple clicks
Never used blocks before? No worries - [we’ve got you covered with our guide](https://go.givewp.com/visual-builder).
**[Actionable Fundraising Reporting](https://go.givewp.com/features-reports "See our gorgeous and helpful reports dashboards")**
* Get a detailed breakdown of your donation activity
* Control your fundraising data with exports and reports
* Filter reports by date, form, and payment method
* Measure performance across multiple campaigns
**[Complete Donor Management](https://go.givewp.com/features-donor-management "See how our donor management tools help you enhance donor loyalty")**
* View a complete history of your donor activity
* Generate tax-deductible receipts
* Allow donors to view their donation history, update their profile, manage their recurring donations, and download PDF receipts through their own donor dashboard
Find out more:
* **[Visit the GiveWP website](https://go.givewp.com/home "Visit the GiveWP website")**
* **[Read our Docs on How to Use the Visual Form Builder](https://go.givewp.com/visual-builder).**
* **[View GiveWP Premium Add-ons](https://go.givewp.com/addons "See all GiveWP Add-ons")**
* **[View GiveWP Free Add-ons](https://go.givewp.com/freeadds "See our free Add-ons")**
* **[Book a Live Demo with our Team](https://go.givewp.com/csdemo "Book a demo with our team")**
=== 🧑🏿🤝🧑🏿 Who Uses GiveWP? ===
With more than 100,000+ active installs of GiveWP, we hear more and more success stories from nonprofit organizations. Causes are using GiveWP to raise millions of dollars per year. Check out some of our GiveWP Stories and Case Studies for details about their success.
* [The City Mission used GiveWP](https://go.givewp.com/cmstory) for Giving Tuesday and a competition fundraiser with a neighboring organization, where they raised $45K in 16 hours.
* [A local neighborhood watch program](https://go.givewp.com/memstory) switched from using GoFundMe to GiveWP and raised $40,000 in five days for a memorial fundraiser.
* [Fans of Ivan the Gorilla have kept his memory alive](https://go.givewp.com/readivan) by fundraising for a conservancy program in his name.
* [A hospital raised money](https://go.givewp.com/twiststory) through a community-wide virtual dance party during the pandemic.
* [Quiltlove](https://go.givewp.com/quiltlove), which provides personalized quilts for different life events (like new babies, extended hospital stays, and more), uses GiveWP to create a sustainable business model.
* [Niels Vink, a Dutch wheelchair tennis player](https://go.givewp.com/niels-vink), uses GiveWP to raise money to train, travel, and participate in competitions. At the 2021 Tokyo Paralympics, Vink earned a gold medal in doubles and a bronze medal in singles.
In addition to nonprofit organizations, GiveWP is widely used for individual or creative purposes. We’ve seen tip jars for blogs or musicians, live streams, and more. Our [Donation Upsells for WooCommerce Add-on](https://go.givewp.com/wooread) is even used in some eCommerce stores to collect donations for a cause, or ask for tips in the cart or checkout.
We’ve even seen GiveWP used to collect gifts for birthdays and weddings!
=== 💝 Simple and Pain-Free Giving ===
We built GiveWP to be the best WordPress donation plugin from day one. Simply install and activate the plugin to get started.
The strength of GiveWP lies within its optimized donation forms. When creating a form, you can start with a template and customize the donation levels, including allowing donors to give a custom amount. The donation forms can then be displayed anywhere on your website using a block, shortcode, widget, or the single donation form page.
You can also integrate your forms with a wide variety of payment processors, including PayPal and Stripe within the free plugin. You can also purchase add-ons to use Authorize,net, Bitpay, Square, and more.
=== 🌱 First Time Users ===
[youtube https://www.youtube.com/watch?v=UNRa8Dc6Ayc&feature=youtu.be]
For new users, we suggest reviewing our [Getting Started Guide](https://go.givewp.com/rmgettingstarted "Visit the GiveWP Getting Started Guide") to get an understanding of how the plugin works. If you run into any trouble, we offer [free support](https://wordpress.org/support/plugin/give "Visit the GiveWP support page on WordPress.org") to help you with your issues, questions, and concerns.
If you are a GiveWP customer with an active license of any of our popular add-ons, we'd love to hear from you and support you via our [Priority Support channel](https://go.givewp.com/support).
=== 💳 Accept Credit Card Donations and More ===
GiveWP comes with several payment gateway options:
* **Stripe Donations** -- Accept donations through any payment method (like Apple Pay, Google Pay, or ACH) activated in your Stripe accounts. Upgrade to the [Premium Stripe](https://go.givewp.com/addon-stripe) add-on to remove the 2% fee for one-time donations processed through Stripe.
* **PayPal Donations** -- Allow worldwide donations with PayPal Donations. No additional fees applied.
* **Venmo Donations** -- Give donors the option to pay through Venmo with their account balance or connected bank account.
* **Offline Donations** -- Enable your donors to send checks or physical donations with an offline gateway with instructions.
* **Test Gateway** -- use the Test Gateway to see exactly how your donors will walk through the donation process.
* **And many more Gateways** - View additional payment gateways on our website. These include Authorize.net, Bitpay, Square, Razorpay, Paytm, and more.
=== ⚙️ Extend GiveWP with Powerful Add-ons ===
GiveWP's goal is to "Democratize Generosity." We want to make it easy for *everyone* to raise funds online.
In addition to our free donation plugin, we have [premium GiveWP add-ons](https://go.givewp.com/addons "View all of GiveWP's Premium Add-ons") available to extend the functionality of GiveWP. Ultimately, these tools allow you to raise more money and give you a better relationship with your donors.
Must-Have Add-ons for GiveWP:
* [WordPress Recurring Donations](https://go.givewp.com/addon-recurring)
* [Peer-to-Peer Fundraising](https://go.givewp.com/p2pread)
* [Text-to-Give](https://go.givewp.com/text-to-give)
* [Form Field Manager](https://go.givewp.com/form-field)
* [Fee Recovery](https://go.givewp.com/fee-recovery)
* [Tributes](https://go.givewp.com/tributes)
* [PDF Receipts](https://givewp.com/addons/pdf-receipts/)
* [Funds & Designations](https://go.givewp.com/read-funds-des)
[View all of GiveWP's Add-ons](https://go.givewp.com/addons "View all GiveWP add-ons") to discover all the ways you can further enhance and extend GiveWP.
=== 🛠️ Easy to Customize and Enhance ===
Are you a developer? GiveWP is built with best practices and easy to extend and customize. Here are some great developer-oriented tutorials and docs to help you customize GiveWP to your liking:
* [Create Dramatic Donation Email Receipts](https://go.givewp.com/blog-emails)
* [Populate Donor Info with One Click](https://go.givewp.com/blog-populate)
* [Using the GiveWP API to Create Charts with ChartJS](https://go.givewp.com/blog-api)
* [Theming with GiveWP](https://go.givewp.com/docs-theming)
* [How to Create Custom Form Fields in GiveWP](https://go.givewp.com/docs-custom-fields)
* [How to Build a Gateway Add-on for GiveWP](https://go.givewp.com/gatewaydoc)
* [How to Style Your GiveWP Forms](https://go.givewp.com/styledoc)
* [Site Redesigns Without Donation Data Loss](https://go.givewp.com/datalossdoc)
* [Handling Custom CSS in WordPress](https://go.givewp.com/cssdoc)
=== 💚 About the GiveWP Team ===
GiveWP is part of StellarWP, a Liquid Web Family Brand. Our donation plugin is backed by a growing team of WordPress developers, support engineers, customer success managers, and marketing professionals who’ve worked with WordPress and nonprofits since 2009. This means GiveWP is made with best practices in mind; extremely extensible and customizable, stable, and reliable. We’ll be here in years to come for you and your nonprofit organization.
=== 📧 Connect with GiveWP ===
Stay in touch with us for important plugin news and updates:
* **[GiveWP Website](https://go.givewp.com/home "Visit the GiveWP website")**
* **[GiveWP Newsletter](https://go.givewp.com/subscribe "Subscribe to GiveWP via MailChimp")**
* **[Facebook](https://go.givewp.com/fb "Visit the GiveWP on Facebook")**
* **[GiveWP Add-ons](https://go.givewp.com/addons "View all GiveWP Add-ons")**
* **[Write for GiveWP](https://go.givewp.com/rmwrite4us)**
=== 🐱💻 Contribute to GiveWP ===
This plugin is proudly open source (GPL license) and we’re always looking for more contributors. Whether you know another language, love to code, or just have an idea, we would love your help and input.
Here’s a few ways you can contribute to GiveWP:
* Star/fork/watch the [GiveWP GitHub repository](https://go.givewp.com/github) to learn more about what issues we're tackling and the project is developing. If you've never worked with Github before, learn about [pull requests here](https://help.github.com/articles/about-pull-requests/) and submit one for GiveWP, we'd love to give you our feedback.
* Translate GiveWP into your native language. The best place to do that is here on wordpress.org. Go to [https://translate.wordpress.org/](https://translate.wordpress.org/projects/wp-plugins/give), then search for your language, click the "Plugins" tab, then search for "GiveWP". When you've submitted at least 95% of GiveWP's strings, the language moderators will review and approve your translations and then they will be available to all WordPress users for your native language. If you are interested in translating any of our Premium Add-ons, [contact us](https://go.givewp.com/contact), we'd love to chat with you about that.
* Join the [GiveWP Community Facebook group](https://go.givewp.com/fb-group). We chat about all things related to WordPress, GiveWP, fundraising, and online donations in general.
== Upgrade Notice ==
== Installation ==
= Minimum Requirements =
* WordPress 6.0 or greater
* PHP version 7.2 or greater
* MySQL version 5.7 or greater
* MariaDB version 10 or later
* Some payment gateways require fsockopen support (for IPN access)
* cURL version 5.40 or higher
* An SSL certificate -- while this is not strictly required, it is highly recommend. If you are converting your site to use SSL/HTTPS now, [we have a detailed guide to help you here](https://go.givewp.com/ssl).
= Automatic installation =
Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't need to leave your web browser. To do an automatic install of GiveWP, log in to your WordPress dashboard, navigate to the Plugins menu and click "Add New".
In the search field type "GiveWP" and click Search Plugins. Once you have found the plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking "Install Now".
= Manual installation =
The manual installation method involves downloading our donation plugin and uploading it to your server via your favorite FTP application. The WordPress codex contains [instructions on how to do this here](https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
= Updating =
Automatic updates should work like a charm; as always though, ensure you backup your site just in case.
== Frequently Asked Questions ==
= Where can I learn more about how to use GiveWP? =
We have extensive documentation on installing and configuring GiveWP [on our website](http://bit.ly/WPORGDocs). We suggest starting with the [GiveWP 101 article](https://go.givewp.com/give-101).
= How can I get support for GiveWP? =
We work hard to the best support possible for GiveWP. The [WordPress.org Support Forum](https://wordpress.org/support/plugin/give) is used for free community based support. We continually monitor the forum and do our best to ensure everyone gets a response.
[Priority support](https://go.givewp.com/support) is given to users who have an active license for one of GiveWP's [Add-ons](https://go.givewp.com/addons) or [Pricing Plans](https://go.givewp.com/pricing). We provide email-based support to our Premium Add-on customers with an average 1st response time of 2 to 4 hours and average time to resolution of 24-48 hours depending on the severity of the issue.
= Do you have any demos? =
Yes! We have several live examples of GiveWP and the wide variety of form options you can use with GiveWP. Check out our [live demo](https://go.givewp.com/demosite), where you can see what your donors would see.
GiveWP Plus, Pro, and Agency Plan customers will also get a free 30-minute website audit with our Customer Success Team after they purchase. In this meeting, we’ll cover everything you need to know about GiveWP to fit your needs.
= Do you have Case Studies of Nonprofits using GiveWP? =
Yes! We have two different types of studies that highlight nonprofits in different ways.
"GiveWP Stories" are stories of how nonprofits or individuals implemented GiveWP with success. [You can read them all here](https://go.givewp.com/stories).
"Case Studies" are more detailed examples of how an agency implemented GiveWP for a specific purpose for an organization. [You can read those here](https://go.givewp.com/case-studies).
= How is GiveWP better than a simple PayPal donate button? =
PayPal donate buttons take your users off-site, which can cause you to lose some in the process. With GiveWP, your donors can stay on-site and you get the benefit of gathering donor data, viewing free fundraising reports, and creating unlimited donation forms. On the other hand, you can always use GiveWP as a simple customized PayPal donate button if you prefer.
= How is GiveWP better than a form plugin for accepting donations through WordPress? =
Form plugins are excellent solutions for general intake forms. That said, they most often lack substantial donation reporting features, and donor management options. They also lack a variety of presentation options like GiveWP has for embedding your forms in different places throughout your site. If you want a "Donate Now!" button in the header of your site that opens in a modal, you'll most often have to do quite a bit of customization to get that working just right with form plugins -- but not with GiveWP.
GiveWP works great alongside all the most popular form plugins. Use GiveWP for donations, and Caldera Forms, Ninja Forms, Gravity Forms or other for your general purpose intake forms. They'll work great alongside each other.
= How is GiveWP better than an eCommerce plugin for accepting donations on WordPress? =
We built GiveWP specifically to overcome many of the hurdles you have to go through in order to get an eCommerce plugin (like WooCommerce) to be streamlined for donations. You want to treat your donors right. No donor wants to add their donation to a cart and go through several page refreshes just to type in their information. You, as the site admin, don’t want to have to change the word “Products” to “Donations” everywhere, and go through all the hoops of removing taxes and shipping, either.
On top of that, customizing the plugin’s terminology is a daunting task. You never want your users to receive an “invoice” for the donation “product” they “purchased.” Rather, you’d like for them to receive a receipt for the donation they gave.
Use GiveWP for donations, and let your WooCommerce or WP eCommerce plugin or the like handle your products. They work alongside each other just fine. Your donors will be happy, your customers will be happy, and so will you.
Additionally, you can use our [Donation Upsells for WooCommerce](https://go.givewp.com/addon-upsells/) GiveWP add-on to allow your customers to do a donation upsell in the cart or checkout.
= How do I eliminated the 2% fee on Stripe donations? =
The 2% fee on Stripe donations only applies to donations taken via our free Stripe integration in GiveWP Core. If you purchase the premium Stripe add-on you will not have any additional fees at all. Additionally, even with the free Stripe plugin, the fees only apply to one-time donations, never to recurring donations.
[Read our release announcement](https://go.givewp.com/version2-5) for all the details, and if you have further questions feel free to reach out via [our contact page](https://go.givewp.com/contact).
== Screenshots ==
1. Creating powerful donation forms is easy with GiveWP. Simply install the plugin, create a new donation form, set the desired giving options, and publish!
2. Customizing your donation forms is easy and intuitive with customization options for any fundraising campaign.
3. Display you donation forms within a responsive grid on any page to make it easy for your visitors to choose a giving option.
4. Show of your donor's generosity with our customizable Donor Wall block and shortcode.
5. Manage your donors and receive key insights to maximize your fundraising efforts.
6. Extend GiveWP with a robust suite of powerful [Add-ons](https://go.givewp.com/addons "View all GiveWP Add-ons"). Accept recurring donations, credit cards, add custom form fields, and more!
7. GiveWP is thoroughly [documented](https://go.givewp.com/docs "Visit the GiveWP documentation") to help you get started quickly and learn basic to advanced features and functionalities.
8. GiveWP has a dedicated support team to help answer any questions you may have and help you through stumbling blocks.
9. Customize your forms with design mode.
10. Use almost any payment gateway integration with GiveWP through our add-ons or by creating your own add-on.
== Changelog ==
= 3.3.1: January 23rd, 2024 =
* Fix: Resolved an issue checking for the GiveWP Funds and Designations add-on information during form migrations
= 3.3.0: January 10th, 2024 =
* Happy new year!
* Fix: Resolved an issue where some migrated forms were being duplicated
* Fix: Resolved an issue with the donor export filter by donation form
* Fix: Added additional attribute escaping to the donor wall shortcode
* Enhancement: Improved current compatibility with PHP 8.2
* Enhancement: Improved the UI of the visual donation form builder to be more intuitive with dedicated Build, Design, and Settings screens
* New: The donor dashboard now has a way to update and reset passwords
* New: Added pre-requisite v3 compatibility updates for the Give Funds and Designations add-on
* New: Added v3 form migration compatibility for select GiveWP add-ons including: Mailchimp, Funds and Designations, and Per-Form Gateways
* New: Added a new programmatic way to interact with the v3 confirmation page using our fields api
= 3.2.2: Dec 20th, 2023 =
* Fix: Resolved an error on the donor details page when they have no donations
* Fix: Resolved an issue where the continue button setting was not being reflected on forms using legacy template
= 3.2.1: Dec 13th, 2023 =
* Fix: Resolved an issue that was duplicating the "Donate Now" button on legacy form template
* Fix: Resolved an issue that was preventing display options from being reflected on the form
* Fix: Removed an error notice that was showing up on admin menu pages
* Fix: Resolved an error in the donation form block when the admin page is refreshed
= 3.2.0: Dec 6th, 2023 =
* New: Embed form button added to the Visual Donation Form Builder
* New: Pre-publish confirmation panel added to the Visual Donation Form Builder
* Enhancement: Updated parts of the Form Builder text areas to Text Editors to provide more formatting options
* Enhancement: Improved compatibility with the donation block and Visual Builder forms
* Enhancement: All donors are connected with a user for improved security and caching compatibility
* Enhancement: Improve the Name, and Terms and Conditions blocks with global settings
* Fix: Resolved some strange behaviors when using the Amount Levels setting in the Form Builder
* Fix: Removed WP_Background_Process and WP_Async_Request to avoid conflicts with other plugins
* Fix: Donor honorific (Mr, Mrs, etc) is now properly saved as part of the donor record
* Fix: PayPal Donations displays a helpful error message when incorrect credit card information is entered
* Fix: Visual Donation Form Builder loading is improved by preventing the formBuilderSettings meta from becoming too large
* Fix: Resolved an issue where some donations list tables were failing to load due to missing donation mode meta
* Fix: Resolved an issue where the donation forms list tables were resulting in duplicate forms
* Fix: Resolved an issue where PayPal smart buttons were not being displayed on embedded forms using legacy template
* Fix: Resolved an issue with PayPal donations and fee recovery where the fee was not being added to the donation total
= 3.1.1: November 3rd, 2023 =
* Fix: Embedded forms created with the Visual Builder now redirect to the confirmation page after a completed donation.
* Fix: Donor title prefixes are now formatted as strings (like Mr or Ms) instead of numbers.
= 3.1.0: October 25th, 2023 =
* Feature: Design Mode changes in the Form Builder are now instant and awesome! Instant gratification!
* Feature: Donor prefixes can now easily be reordered in the Donor Name block
* Feature: The form goal is now changeable from the Design mode of the Form Builder
* Enhancement: The form goal amount now better displays the currency amount
* Enhancement: The first time a form (in the form builder) is saved, the title is used as the page slug
* Enhancement: Improved translations in the form builder and gateways
* Enhancement: Compatibility improvements in preparation of WordPress 6.4
* Enhancement: Improved donor flow that passes along their name, email, and address to PayPal Donations
* Fix: Minor wording improvement on the login block
* Fix: Added a give_user_info_fields_user_info filter to allow for customizing the user info fields
* Fix: Links on the donor list table now work properly on sub-directory WordPress instances
* Fix: Resolved an issue where errors failed to display on older forms upon donation submission
* Fix: Multi-form, form grid, and totals shortcodes no longer throw a warning
* Fix: Multi-form goal block no longer throws an error when filtering by form
* Fix: Multi-form and progress bar goals no longer throw an error for themes that return false for get_theme_support
* Fix: Resolved old GiveWP behavior that altered default WordPress behavior when retrieving GiveWP post type meta
= 3.0.4: October 30th, 2023 =
* Fix: Resolved issue with some Stripe gateways not recording incoming recurring donation renewals. To recover missing renewals from Stripe in GiveWP, please use the "Sync Subscription" button on the individual subscription details page. Click [here](https://docs.givewp.com/syncrecurring) to learn more about syncing subscriptions in GiveWP.
= 3.0.3: October 20th, 2023 =
* Fix: Using the multi-form shortcode with the ids attribute no longer causes a fatal error
* Fix: Forms no longer have fatal errors on Elementor websites when the Display Content option is enabled
= 3.0.2: October 19th, 2023 =
* Fix: Stripe per-form settings are included when migrating a form to the Visual Donation Form Builder
* Fix: Gateways are properly separated in the settings page and Global Settings for Fee Recovery shows all gateways when you select per gateway
= 3.0.1: October 17th, 2023 =
* Fix: Resolved a conflict with Matomo plugin that was causing a fatal error
= 3.0.0: October 16th, 2023 =
* New: Try out the all new Visual Donation Form Builder!
* New: All new form infrastructure for forms using the Form Builder!
* New: Stripe Payment Element gateway for Stripe with support for many types of payment methods
* New: Existing forms can be migrated and upgrade to use the Form Builder
= 2.33.5: October 10th, 2023 =
* Fix: Prevent failed donations in sites that use proxy services like Cloudflare and gateways that require the original IP address
= 2.33.4: October 4th, 2023 =
* Fix: Update old sendwp buttons and remove unused Stripe disconnect function.
= 2.33.3: September 29th, 2023 =
* Fix: Multi-site installations no longer produce an error on subsites.
= 2.33.2: September 18th, 2023 =
* Fix: Add validation for form status to prevent donations to donation forms with the status of "Trash"
= 2.33.1: August 31st, 2023 =
* Security: The donor default user role has been sanitized to prevent privilege escalation
= 2.33.0: August 28th, 2023 =
* New: Admins can now select standard or advanced connection type during setup
* New: Added a new SubscriptionSynced command class
* New: Added PayPal Standard to PayPal Donations migration information banners
* Security: Remove uses of payment intent secret and existing meta
= 2.32.0: August 11th, 2023 =
* Feature: Scroll Stripe modal into view for Legacy + Multi-step forms
* Feature: Added check for application/json in form headers accept
* Feature: Added a `$nodeNameCollision` property on `NameCollisionException` for flexibility in throwing exception messages
* Feature: Added a file validation rule for validating file uploads
* Feature: Added a `@wordpress/scripts` build process for building forms in GiveWP 3.0
* Feature: Added persistence scoping to Fields
* Feature: Added WordPressLibraries to manage WP_Background_Process more efficiently and address potential conflicts with other plugins
* Feature: Added the hasDescription concern to Fields API
* Enhancement: Use PayPal client to handle API requests to avoid issues with expired merchant tokens
* Fix: Increase specificity when hiding the Form Token Field label
= 2.31.0: July 21st, 2023 =
* Feature: New banner added to the plugin page for annual summer discounts
= 2.30.0: July 12th, 2023 =
* Feature: Attributes of the [give_donor_wall] shortcode can now be filtered.
* Feature: Added state label and list of states for the v3 form billing address block. Existing functionality is not modified.
* Fix: Empty excerpt fields for v3 forms no longer display as [] on the Form Grid.
* Refactor: Updated the gateway adapter for v3 forms.
* Refactor: Updated legacy donation form block title with a (v2) suffix.
* Refactor: The v2 Donation Form block now supports v3 forms.
= 2.29.2: June 29th, 2023 =
* Enhancement: PayPal Donations now has separate buttons to connect to PayPal Live and PayPal Sandbox.
* Fix: Form Field Manager conditional radio and checkbox fields that are not visible no longer prevent donation submission.
= 2.29.1: June 21st, 2023 =
* Feature: Add Recurring Donations add-on overlay to Reports widget
= 2.29.0: June 14th, 2023 =
* Feature: A refund checkbox can be enabled on the admin screen.
* Enhancement: PayPal Donations onboarding validates only the PayPal seller capabilities that block payment processing.
* Fix: Donor Created Date column is now included in the Donor csv export.
= 2.28.0: June 8th, 2023 =
* Enhancement: Improvements to checkboxes in the Field API in preparation for GiveWP 3.0
* Fix: Resolves an issue with Form Field Manager caused in 2.27.3. Please update both GiveWP and Form Field Manager.
= 2.27.3: June 8th, 2023 =
* Feature: Support Slack-bot-based zip packaging requests
* Feature: Add ShowInAdmin trait to the Field API
* Feature: Add color parameter to give_goal shortcode
* Feature: Implement necessary tweaks to accommodate the Webhooks Add-on
* Feature: Add a recommendation for manual donations
* Feature: Update visibility conditions in the Field API to use new framework and handle validations
* Enhancement: Enable Venmo by default for PayPal Donations if available for country
* Enhancement: Add generics to container functions so autocomplete works when passing a class
* Fix: Improve error handling for fee recovery product recommendation on Settings page
* Fix: Display errors for PayPal Smart Buttons
* Fix: MoneyPHP support for Bitcoin currencies
* Refactor: Move legacy donation forms into v2 domain
* Chore: Remove redundent composer install
= 2.27.2: May 24th, 2023 =
* Fix: No errors are thrown for missing JavaScript files in the Payment Gateway Settings page.
= 2.27.1: May 18th, 2023 =
* Fix: Tributes are displayed even when only the last name of the tribute is filled in the form.
* Fix: Subscriptions can be successfully canceled from the donor dashboard.
* Fix: PayPal handles the user locale so it does not throw an error.
* Fix: Stripe payments has user friendly error messages.
* New: Pro tip messages are added to the Settings, Form Editor, Donation, and Donor pages.
= 2.27.0: April 27th, 2023 =
* Feature: Added a nice new view to the list tables when there are no donations, donors, or subscriptions
* Enhancement: Donation comments are now stored as meta to improve performance
* Enhancement: Simplifications to the new Gateway API to make gateways easier to build
* Enhancement: Added a simple way for gateways, in the Gateway API, to pass extra data back to the server
* Enhancement: Improvements on our end that help make sure that GiveWP is compatbible with PHP 7.0-8.0
* Enhancement: List table bulk actions are now extensible, used by the new Bulk Export feature in the PDF Receipts add-on
* Fix: The give_subscription_inserted hook is now fired when a subscription is created in the new Gateway API
* Fix: Added a polyfill (backwards compatibility) for the MBString PHP extension for PHP 7.0-7.2
* Fix: The form grid now consistently uses the excerpt for the form description
* Fix: Prevented a crash when searching for a subscription by its identifier on the gateway
* Fix: Resolved an incompatibility with WooCommerce that threw an error on on the License page
* Fix: Resolved an incompatibility with Beaver Builder that prevented the Donor Wall shortcode from working
= 2.26.0: April 6th, 2023 =
* Enhancement: Minor updates for improved WordPress 6.2 compatibility
* Enhancement: A number of under the hood improvements in preparation for the upcoming Visual Donation Form Builder feature plugin release
* Enhancement: Improvements to recurring donations in the Gateway API
* Enhancement: Implemented our new GiveWP design system to improve designs across our website and prdocuts
* Fix: Conditionals fields based on the amount field work again
* Fix: Files with a text mime type now work when uploading files for import
* Fix: If an error occurs in the Donor Dashboard when canceling a subscription, that subscription is no longer marked as canceled
= 2.25.3: March 22nd, 2023 =
* Security: Protect against CSRF during donation import
= 2.25.2: March 8th, 2023 =
* Security: Protect against CSRF during give cache clear settings
* Security: Protect against CSV injection in donation export settings
* Security: Protect against XSS and CSRF in donation import settings
* Security: Protect against XSS in give_form_grid shortcode
* Security: Protect against CSRF and Arbitrary Content Deletion in admin list tables
* Security: Protect against SSRF in add-on changelog requests
= 2.25.1: March 1st, 2023 =
* Enhancement: Compatibility in the Donor Dashboard with the new Square recurring support
* Enhancement: Exported donations are ordered by ID by default
* Fix: Sites without the ctype PHP extension no longer run into problems
* Fix: Prevent a handful of PHP 8.1 deprecation notices
* Fix: Fixed a PHP 8.0 error in receipt templates
= 2.25.0: February 21st, 2023 =
* Feature: Donors now explicitly state whether they are donating as a company, useful for things like Gift Aid
* Enhancement: Improvements to the Gateway API in preparation for GiveWP 3.0
* Enhancement: Optimizations to how we interact with the GiveWP Gateway server
* Enhancement: New method for storing donation notes using the Donation model
* Fix: Improved how PayPal Donation tokens are handled to prevent the need to reconnect one's PayPal account
* Fix: Classic forms using Authorize.Net as the default gateway now work as expected
* Fix: Square credit card fields now work properly on safari
* Fix: Resolved escaping issue preventing modal from displaying on some sites
* Fix: The "Download Receipt" link in the PDF is more reliable after making donation updates
* Fix: Prevented a filter from running twice on the donation summary
* Fix: Styling looks better for modals in the Classic template
* Fix: Corrected some styling in the Multi-Step and Classic template receipts that affected the Tributes add-on
= 2.24.2: February 1st, 2023 =
* Enhancement: Reorganized the GiveWP admin menu items to a cleaner, more intuitive order.
* Fix: Servers without the PHP Intl extension broke the admin list tables. This is a fixed and a new Currency setting was introduced to [control automatic formatting](https://docs.givewp.com/currency-format).
= 2.24.1: January 19th, 2023 =
* Security: Further protection against SQL Injection attacks.
* Fix: Forms with missing level data no longer breaks the whole form list table.
= 2.24.0: January 18th, 2023 =
* Security: Fixed critical and a low level security vulnerabilities. See our [critical release notice](https://go.givewp.com/2-24) for more details.
* New: Sorting and custom columns are now supported for the Form, Donor, and Donation admin list tables
* New: Subscription admin list table has a new, modern look like the other list tables — requires GiveWP Recurring add-on
* Enhancement: New Validation framework in preparation for GiveWP 3.0
* Enhancement: Donor Dashboard is ready for the upcoming Authorize.Net recurring support
* Enhancement: Further small improvements to get ready for the upcoming GiveWP Next Gen Feature Plugin
* Fix: Donor errors correctly display when using the Multi-Step form template
* Fix: Donor comments now show up when the Stripe or PayPal Donations gateways are used
* Fix: Accessibility improvement for generating a new user API key
* Fix: The payment amount in the donation summary correctly updates when the donor enters a custom amount
= 2.23.2: November 17th, 2022 =
* Enhancement: Added support for gateways that need to mark a new subscription as processing
* Fix: Fixed a Stripe issue in conjunction with Stripe that would throw an error when processing a renewal
* Fix: Prevent some PHP notices when being used on PHP 8
= 2.23.1: October 31st, 2022 =
* Fix: Fee Recovered amount in the donation summary works better with currencies that use a comma as the thousands separator
* Fix: Form Grid donate button color defaults to black to avoid being invisible in some cases
* Fix: Made text translatable in the Form Grid that previously wasn't
* Fix: The give()->donations->getLatestDonation now correctly grabs the most recent
* Fix: Zip code and country are now in the correct order for donor exports
* Fix: The Donor and Donation models correctly handle missing meta
= 2.23.0: October 20th, 2022 =
* Enhancement: Under the hood improvements to how recurrence is handled in donations and subscriptions
* Enhancement: Added additional filters to email settings (for Peer-to-Peer)
* Fix: Wrapped up some issues to make sure GiveWP is ready for WordPress 6.1
* Fix: Scrolling a form on a mobile device will no longer select a amount level
* Fix: Errors now display properly (and are auto-scrolled to) in the Classic template
= 2.22.3: October 13th, 2022 =
* Fix: When a donor creates an account the email is assured to be sent the right account
= 2.22.2: September, 28th 2022 =
* Fix: The give_goal and give_form shortcodes once again display correctly with the goal progress
* Fix: Translating in Google Chrome no longer prevents disconnecting the PayPal account
= 2.22.1: September, 20th 2022 =
* Security: Updated a number of 3rd party packages we use to include security fixes
* Fix: Legacy template now displays the correct amount for the donor and donation goals
* Fix: Donor Dashboard block is now selectable within the Block Editor
* Fix: A fatal error is now prevented when other plugins or themes use the_title filter
* Fix: Fund and revenue totals now properly reflect the amount when a donation is edited
* Fix: The progress bar displays/hides correctly when the show_goal property for give_form_grid is used
= 2.22.0: August 18th, 2022 =
* Feature: SendWP integration to easily connect emails to their service
* Enhancement: Improvement to the GatewayAPI to allow gateways to pass custom data to the server
* Fix: Prevent the MAX_JOIN_SIZE error from breaking queries that affected some folks
* Fix: Goal percentage on the Multi-Step form has been fixed to accurately reflect amount raised
* Fix: When filling out the deactivation survey, deactivation will no longer be prevented if our server is down
* Fix: Added more escaping to secure against vulnerabilities
= 2.21.4: July 8th, 2022 =
* Fix: The CSRF patch for the stats exporter was breaking other exporters. The patch is still in place but the other exporters are working again.
= 2.21.3: July 7th, 2022 =
* Security: Protect against CSRF and DOS attacks against the donation stats exporter
* Security: Protect against XSS attacks for the currency endpoint
* Fix: Styling corrections for the donation, donor, and form admin lists
* Fix: Selecting a specific donation when previewing an email no longer throws an error
* Fix: Renewal reminder emails are once again being sent
* Fix: Prevent a 400 error from occurring in Stripe webhooks
* Fix: Anonymous donations are working properly again for subscriptions
= 2.21.2: June 29th, 2022 =
* Feature: Exporting donors now supports limiting by their donation date — useful for getting donors who gave in the last year
* Enhancement: the new Gateway API now supports recurring under the hood
* Enhancement: donors are now passed to the give_donors_column_query_data hook (thanks Genevieve!)
* Security: Updated some internal dependencies that had security fixes
* Security: Better protection against invalid dates when exporting donation statistics
* Security: Prevent overreach hack when using the exporters
* Fix: For some folks a really old migration got stuck, and now it's unstuck
* Fix: Summary Heading for the classic Form field displays as it should
* Fix: The "Display Header" setting for Classic Form shows/hides the corresponding settings
* Fix: Made the default Form Grid colors a bit nicer
* Fix: Some of our greens weren't the right GiveWP green. All greens have been made right
* Fix: Cleaned up some PHP warnings in the Donor Wall caused by other add-ons
* Fix: Put the donation date back in on the Donor Wall
* Fix: Donation links weren't working on sub-directory WordPress installs on the Donation List table, now they do
* Fix: Required fields on the Multi-Step form now have an asterisk to help communicate to the donor
* Fix: Resolved a styling conflict introduce by the updated Form Grid on the Goal shortcode and Legacy template
* Fix: Improved some grammar and wording in our PayPal instructions
* Fix: Updated the PayPal logo to their latest and greatest
* Fix: Improved translations on the Donor Wall
* Fix: Updated the currency symbol for LKR (thanks pxydigital!)
* Fix: Donations made with 0-decimals now display properly on the Donor Wall
* Fix: Form goal settings are better reflected on the Form Grid
= 2.21.1: June 21st, 2022 =
* Fix: Resolved a "sort buffer" error on MySQL 5.7 and older
* Fix: Added and corrected some missing translations
= 2.21.0: June 16th, 2022 =
* New: Fresh new look for the Donor Wall block and shortcode!
* New: Form Grid looks has a great new look and more visual options!
* Enhancement: The new Gateway API now uses he new Models
* Enhancement: All failed queries are now logged with extra data to troubleshoot
* Enhancement: Some minor visual improvements on the Logs admin page
* Security: Remove an unused donor wall endpoint that made donor wall data too easy to access
* Security: Donors can no longer immediately access the Donor Dashboard without authentication
* Security: Further tightening of XSS protection per WordPress security guidelines
* Security: Tighten up file exposure to GiveWP Managers in the Exporter
* Fix: Prevent a notice and database error on fresh installs
* Fix: Cleared up some notices that logging was causing
* Fix: Admin notices no longer scrunch all weird-like up at the top of the page
* Fix: Further compatibility fixes for PHP 8.1
* Fix: Text aligns better for offline donations in the form
* Fix: Stripe gracefully ignores events that come in from another platform
* Fix: Brought back accidentally removed income goal stat filters. Thanks sc0ttkclark!
* Fix: Make sure that all donation errors are caught and gracefully handled to inform the donor
* Fix: Renewals now display the correct payment type in the admin donations list
* Fix: Checkboxes (also created via Form Field Manager) no longer require being checked when conditionally hidden
= 2.20.2: June 8th, 2022 =
* Security: Donors are no longer able to view the Donor Dashboard for the email they donated in without logging in
* Security: Added additional URL escaping around the codebase to protect against XSS attacks
* Fix: Subscriptions can now be changed again by donors using the legacy subscriptions shortcode
= 2.20.1: May 19th, 2022 =
* Fix: Corrected an issue where admin notices were displaying strangely
* Fix: Removed the "Switch to New View" button that would show up in strange admin places when switched to the legacy donor or donation lists
= 2.20.0: May 11th, 2022 =
* New: Refreshed the donor and donation list screens in the admin
* New: Significant improvements to the donor wall and form grid blocks
* Enhancement: Optimized deleting a donation and all of its meta
* Enhancement: Many under-the-hood improvements Gateway API
* Enhancement: Updated Romanian currency symbol to RON
* Enhancement: Logging system has built-in checks to redact sensitive information
* Fix: Resolved a 3D Secure issue with PayPal Donations
* Fix: Tags now work properly in the Offline Donations content
* Fix: Improved error handling if an error occurs with PayPal Donations
* Fix: Viewing a receipt in the legacy donation history page now works
* Fix: Prevent a "donation_decimals" notice when adding and updating forms
* Fix: Percentage goals display properly on the form list
* Fix: The correct donation form title is shown on the Stripe checkout page
* Fix: Donor Wall can no longer be accessed outside of the website
* Fix: Equal operator for conditional fields works again (also affects Form Field Manager)
* Fix: Improved Multi-Step content to provide a default and avoid confusion
* Fix: Clicking the main "Donations" menu item goes to the forms list instead of making a new form
* Fix: Corrected PayPal Donations design when used in Classic template
= 2.19.8: April 6th, 2022 =
* Fix: Corrected an issue with our javascript translations
= 2.19.7: April 4th, 2022 =
* Fix: Resolved a regression in 2.19.6 that broke the Stripe Checkout gateway — please update immediately
= 2.19.6: March 31st, 2022 =
* Change: Click in the background when viewing a form in the Form Grid now closes the form
* Fix: Significant improvements to making GiveWP translatable, especially the Donor Dashboard and other JavaScript
* Fix: Forms were not able to be deleted if Recurring wasn't installed, but now they can be!
* Fix: Sensitive information was being stored in the logs in some cases. The information will no longer be stored and logged information was removed.
* Fix: Some PayPal donations were stuck in "processing" status, but now they are properly marked "complete"
* Fix: Transaction ID wasn't being stored for Stripe donations using 3D Secure. Now it's stored and the missing ID's were recovered.
* Fix: The Form Grid now displays the excerpt properly on the Multi-Step form
* Fix: The Donor Wall and Form Grid blocks now look as they should in the block-editor
= 2.19.5: March 11th, 2022 =
* Fix: Resolved issue with PayPal failing to validate for authenticated users
= 2.19.4: March 10th, 2022 =
* Fix: Resolved issue with PayPal failing to validate route after donating
* Fix: Resolved issue with PayPal logo not loading
* Fix: Resolved issue with PayPal donation statuses being set to processing
= 2.19.3: March 4th, 2022 =
* Fix: PayPal Standard donations above 1000 dollars are now working again
* Fix: PayPal IPN URL is now working again
* Fix: Stripe subscriptions with no end were being canceled upon the next renewal when using GiveWP Recurring 1.15.0. This resolves that issue. Please update!
= 2.19.2: March 2nd, 2022 =
* Fix: Resolved issue with connecting to Stripe with API Keys
= 2.19.1: February 25th, 2022 =
* Fix: Added backwards compatibility for Stripe statement descriptors that do not yet meet the new requirements.
= 2.19.0: February 24th, 2022 =
* New: New reactive form table interface. The new forms table responds to your clicks instantly.
* New: Stripe statement descriptors can now be set on a per account basis.
* New: Free add-on offer for folks using the free version of GiveWP without premium add-ons.
* New: More detailed logs are now stored during the donation process. A powerful tool to help you troubleshoot any issues your donors might have with donating.
* New: A refactored Payment Gateway API. The makes integrating custom gateways with GiveWP easier than ever before.
* Change: Added subscription logic to allow gateways to support recurring in a more consistent manner. Make sure to update to the latest version of Recurring Donations as well.
* Change: Updated Stripe and PayPal gateways to use the new Payment Gateway API.
* Fix: Prevent fatal error on PHP 8 when a form's goal is empty
* Fix: Ensured translation domains were consistent
* Fix: Resolved console error for missing admin CSS files
* Fix: Tributes using "button" display now show up correctly on Multi-Step and Classic templates
* Fix: The "Payment Amount" section consistently reflect the amount when the donor changes to a custom amount
= 2.18.1: February 2nd, 2022 =
* Fix: On Classic template the payment fields didn't show up when there was only one active gateway, and now they do!
= 2.18.0: January 19th, 2022 =
* New: Shiny new Classic Form Template! Check it out!
* New: New Gateway API under the hood for integrating with payment gateways. Developer docs to come!
* Change: Only warnings and errors are logged unless WP_DEBUG_LOG is enabled
* Change: Increased the default donation goal to $10,000, because who couldn't use $10k?
* Fix: Currency symbol now displays correctly when using Currency Switcher
* Fix: Donation Summary now works properly with admin-defined recurrence
* Fix: Avoid PayPal IPN errors when using test mode
= 2.17.3: January 17th, 2022 =
* Security: Minor XSS vulnerabilities, which require admin access to exploit, have been resolved
= 2.17.2: December 28th, 2021 =
* Fix: Only validate email settings that are not empty
= 2.17.1: November 23rd, 2021 =
* Fix: Took care of an annoying babel-polyfill 404 in the JavaScript console
= 2.17.0: November 18th, 2021 =
* New: Shiny new add-ons page in the admin for exploring our latest add-ons and plans!
* New: Donation Summary section for Multi-Step form! Enable it for existing forms in the Form Template Options for each form!
= 2.16.2: November 11th, 2021 =
* New: Donations made via PayPal Donations are now marked as donation in PayPal; also added a setting if you need to change it back
* Fix: Take care of some notices when editing a form and in onboarding — friendly reminder NOT to display PHP warnings on production!
* Fix: Got rid of another notice when using checkboxes in the Fields API
= 2.16.1: November 2nd, 2021 =
* Fix: Resolved Multi-Step Form PHP 7.2 and lower compatibility issue
= 2.16.0: October 24th, 2021 =
* New: You can now disable google font for Multi-Step form within the form options
* New: Conditional fields are now possible in the Field API (useful in new Form Field Manager update!)
* Fix: Give icons in Gutenberg block admin UI now display correctly in Firefox
* Fix: Resolved issue where a minimum donation error was not showing up properly
= 2.15.0: October 11th, 2021 =
* New: There is a new option for making the Donor Last Name field required
* Changed: Sending a preview email now gets send to the email of the user triggering the preview
* Changed: Improved Donor Dashboard messages with improved clarity for donors
* Changed: Donor Dashboard only displays user/password fields if registration is enabled
* Changed: PayPal IPN Verification is now enabled by default for better security
* Fix: Simplified PayPal IPN Verification to avoid failure when there wasn't any
* Fix: Further improvements for PHP 8 compatibility
* Fix: Donors can now properly set custom amounts in their Donor Dashboard
* Fix: Corrected Lifetime and Average donation amount formatting in Donor Dashboard
* Fix: Restored PHP 5.6 compatibility when running GiveWP WP CLI commands
* Fix: Offline gateway custom label now shows up properly in donation form
* Fix: Offline donation instructions don't show up if specific form disables gateway
* Fix: Various fixes to the internal Field API
= 2.14.0: September 21st, 2021 =
* New: A lot of improvements to the Fields API in preparation for Peer-to-Peer!
* Fix: Corrected a notice when using offline donations
* Fix: Improved decimal formatting in the Multi-Step amount buttons
* Fix: Social sharing works properly again after making a donation
* Fix: Payment ID in donation email preview correctly reflects the sequenced ID
* Fix: Connecting to Stripe on PHP 8 no longer throws an error... it just connects
= 2.13.4: September 3rd, 2021 =
* Fix: Corrected a migration introduced in the last release that had a chance of removing donation level data
= 2.13.3: September 1st, 2021 =
* Fix: Resolved rare issue with Revenue not storing properly on donation form created during onboarding
* Fix: Donor selecting "Custom" donation amount now focuses on the amount field
= 2.13.2: August 26th, 2021 =
* Fix: Resolved issue where donation forms failed to submit when Stripe was disabled
= 2.13.1: August 20th, 2021 =
* Fix: Resolved issue where donations with a custom amount changed after a payment error
* Fix: Customizer is no longer broken
= 2.13.0: August 19th, 2021 =
* New: Fresh new UI for managing Stripe accounts
= 2.12.3: August 12th, 2021 =
* Fix: Resolved issues some donors were having updating subscription cards or amount from Donor Dashboard
* Fix: Primary color picker for multi-step form remains visible if Step 1 is disabled
* Fix: Replace Legacy Form placeholder with nice, instructive image
* Fix: Improve styling for admin-defined recurring donations on multi-step form
* Fix: Improve styling for Authorize.net eCheck on multi-step form
* Fix: Payment errors no longer revert custom donation amounts
= 2.12.2: July 30th, 2021 =
* New: Improvements to the Onboarding Wizard
* New: Minor improvements to the Fields API
* Fix: An admin deleting a donor's donation no longer reveal other donor's donations to them in the Donor Dashboard
= 2.12.1: July 22st, 2021 =
* Fix: Resolved an issue with admin-defined recurring options showing up as a bunch of HTML
= 2.12.0: July 21st, 2021 =
* New: Compatible with the upcoming [GiveWP - Text-to-Give](https://go.givewp.com/t2g) release!
* Change: Various style improvements for accessibility within the admin
* Fix: Improved compatibility with PHP 8, resolving various warnings and deprecation notices
* Fix: Rare issue of disabling custom donation amounts causing a missing field in donation deatils is resolved
* Fix: Got rid of "Unsupported declare strict_types" warning
= 2.11.3: July 6th, 2021 =
* Fix: Important fix which makes sure that givewp.com downtime cannot affect the uptime of customer sites
= 2.11.2: June 8th, 2021 =
* Fix: Our new system for logging exceptions now handles critical errors better
* Fix: Uninstalling GiveWP no longer throws an exception
= 2.11.1: May 24th, 2021 =
* New: You can now enable billing details for PayPal Donations in Settings > Payment Gateways > PayPal
* Fix: Donor Dashboard is *really* translatable this time. Honestly.
= 2.11.0: May 19th, 2021 =
* New: Multi-Step form template has a new setting to enable showing decimals in amounts
* New: Donor Dashboard is now fully translatable
* Changed: Indian state of Odisha (formerly Orissa) is now updated to reflect legal name change
* Changed: Onboarding includes KR (Repulic of Korea) currency option
* Changed: Removed legacy option to custom load Stripe SDK as it no longer did anything
* Fix: Editing a donor's address no longer removes spacing between words
* Fix: All email templates can now be disabled
* Fix: Applying Fee Recovery now correctly handles cent rounding in Stripe
* Fix: Importing donations now works on all main browsers
= 2.10.4: April 29th, 2021 =
* Security: Resolved Authorized XSS vulnerability - note, you had to be logged in as admin to exploit it
* Changed: Removed PHAR files from vendor directory to meet wp.org standards
* Changed: Switched to using WP HTTP remote functions to meet wp.org standards
* Fixed: Improved escaping in a few places to improve security
* Fixed: Corrected is_give_form() post type so it once again works
= 2.10.3: April 21st, 2021 =
* Fixed: Authentication now works more reliably for the Donor Dashboard on different hosts
* Fixed: Nonces were added to the Donor Dashboard for additional authentication and security
* Fixed: Donors without WP accounts are now able to upload avatar images
* Fixed: Logging out from Donor Dashboard works reliably
* Fixed: Renewals were falsely marked as test donations; it was superficial, but is now correct
= 2.10.2: April 14th, 2021 =
* Changed: Stripe fee does not apply to Brazil due to Stripe limitations
* Fixed: Migration for creating the logs table is now compatible with MySQL 5.5 and up
* Fixed: When an authentication error occurs on the Donor Dashboard the user can no longer see others' donations
* Fixed: Made sure that under no circumstances can logging cause an exception... to avoid irony
* Fixed: Activating GiveWP will now generate a Donor Dashboard page ONLY if one does not already exist
= 2.10.1: March 30th, 2021 =
* Fixed: Fatal error triggered by the Donor Dashboard on PHP 5.6
* Fixed: Donations to Revenue table migration where migration got stuck on error
* Fixed: Broken email tag link in description
* Fixed: Cleared up PHP notices on system info page
* Fixed: GiveWP Database management tool is now backwards compatible to MySQL 5.5
* Fixed: Cleaned up extra .git directories that got included in vendors
* Fixed: Donor search no longer shows undefined index notice
* Fixed: Fatal error thrown on page/post edit screens when migration table creation failed
* Fixed: Donor Dashboard now works properly on hosts with aggressive page caching
* Fixed: Donor Dashboard is only generated by admins in the admin-side, not other users by accident
= 2.10.0: March 22nd, 2021 =
* New: Donor Profile block with a whole new experience for donors to view and manage their donations
* New: Rebuilt log system from the ground up for better log viewing and database management
* New: Migration tool for viewing all GiveWP migrations and troubleshooting them
* Fixed: Paypal Donations now sends Form title to PayPal for use in receipts
* Fixed: PayPal Donations now works properly with forms using the "Button" Display Option.
* Fixed: Form logins now work properly with the PayPal Donations gateway
= 2.9.7: February 9th, 2021 =
* Fixed: Using CLI commands no longer throws a fatal error due to a missing dev package
* Fixed: When guest registration is disabled the checkbox to create an account is hidden
* Fixed: Multi Form Goal component no longer throws an error when used in Divi
* Fixed: Corrected some styles in the Setup Page for gateway links
= 2.9.6: January 13th, 2021 =
* New: Additional logging and improved messaging for PayPal Donations onboarding
* New: Added ability to adjust gravatar size for the Donor Wall block
* Fixed: Personal information field icons are preserved when switching payment gateways
* Fixed: Fee Recovery checkbox no longer has weird visual glitches on hover
* Fixed: Corrected missing borders for PayPal Donation credit card fields in Firefox
* Fixed: The form title is now reflected in PayPal for donations made through PayPal Donation
* Fixed: Resolved an error where some servers had a trouble with the autoloader using a relative path
* Fixed: Made sure that caching does not cause donations to incorrectly show up as pending in receipt
* Fixed: Create an Account checkbox only shows up when Guest Checkout is enabled
* Fixed: Form fields now preserve their values when the payment gateway changes
* Fixed: Took care of a few cross-browser compatibility issues with the multi-step form
* Fixed: Stopped taps from registering as double-clicks on checkboxes in donation forms
* Fixed: Multi-Form Goals added via shortcode now stack image and text when needed
* Fixed: Foreign keys are no longer used on Give tables and are now removed
* Fixed: Give Aid description popup now works properly on Multi-Step forms
= 2.9.5: December 3rd, 2020 =
* New: Added Jamaica to list of countries for onboarding
* Fixed: Currency Switcher options display correctly on Windows machines
* Fixed: Corrected style issues in Multi-Step forms on iOS devices
* Fixed: Restored compatibility with WP versions prior to 5.1.1
= 2.9.4: November 20th, 2020 =
* Fixed: Revenue database migration for donations with an amount of 0 now work
* Fixed: Restored compatibility with versions of WP prior to 5.5 when deleting donations
* Fixed: Stripe single-input credit card fields work once again
* Fixed: Donor's updating the card of Stripe subscriptions work again
= 2.9.3: November 17th, 2020 =
* Fixed: Stripe Credit Card donations now work when it is not the default gateway
* Fixed: Stripe Checkout Modal are working again as well
* Fixed: A MigrationRunner warning no longer displays on fresh installs and sites upgrading from 2.8.0
= 2.9.2: November 9th, 2020 =
* New: Added a method for manually triggering migrations to re-attempt failed migrations
* Fixed: Resolved an issue when creating donations for currencies with different decimal ranges
* Fixed: Free add-ons no longer cause license errors
* Fixed: Resolved issue that prevented some donors from updating their subscription card or amount
* Fixed: Stripe Modal now renders without any issues on different screen sizes
* Fixed: Recover donation form to be ready for a retry after Stripe error
* Fixed: Multi-step form now reflects form color when embedded on a page
* Fixed: MultiForm Goal shortcode now supports comma separated lists
* Fixed: Resolved issue with revenue table migration failing on MyISAM tables
= 2.9.1: October 28th, 2020 =
* Fixed: Restore PayPal Standard functionality that was affected by a name change in GiveWP 2.9.0 (#5414)
* Fixed: Restore compatibility with WordPress 4.9
= 2.9.0: October 27th, 2020 =
* Added: New [PayPal Donations](https://givewp.com/lps/paypal-donations) gateway allows your donors to give using Debit or Credit Cards directly on your website with no additional fees
* Added: New Multi-form Goal block combines progress from multiple donation forms towards a common goal
* Added: Company Name can now be displayed on Donor Wall (#5374)
* Added: Multi-step form styles are now compatible with Currency Switcher (#5220)
* Changed: New database table handles revenue independently from donations for improved performance (#5257)
* Fixed: Imported donations do not affect donation levels anymore (#5410)
* Fixed: Reports for "All Time" are now inclusive of the first day (#5400)
* Fixed: Tabbing through credit card fields now works in the expected order (#5380)
* Fixed: Legacy form loading spinner no longer stutters (#5397)
* Fixed: Field description text is now accessible and aligned (#5396)
= 2.8.1: October 8th, 2020 =
* Fixed: Donations now process for non-US countries using billing details [#5355](https://github.com/impress-org/givewp/pull/5355)
= 2.8.0: August 31st, 2020 =
* Added: Onboarding Wizard guides new users through first-time configuration. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Added: Setup Page clarifies required steps that must be completed prior to accepting live donations. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Added: Multi-step forms now support RTL styles. [#5196](https://github.com/impress-org/givewp/pull/5196)
* Changed: Stripe Checkout modal is now rendered using Stripe Elements so that users can continue to use the modal display style even after it is deprecated by Stripe. [#4964](https://github.com/impress-org/givewp/pull/4964)
* Changed: Default minimum donation amount is increased from $1.00 to $5.00 to help prevent card testing spam. [#5120](https://github.com/impress-org/givewp/pull/5120)
* Changed: Optional fields in the Multi-Step form template are denoted to appear distinct from required fields. [#5157](https://github.com/impress-org/givewp/pull/5157)
* Removed: Old Welcome Page has been removed in favor of the new Onboarding Wizard & Setup Page. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Removed: Admin notice animation has been removed. [#5182](https://github.com/impress-org/givewp/pull/5182)
* Fixed: Deprecated jQuery warnings no longer appear when jQuery Migrate Helper plugin is active. [#5184](https://github.com/impress-org/givewp/pull/5184)
* Fixed: The `[give_receipt]` shortcode is more compatible alongside other shortcodes, which is especially relevant for page builders. [#5044](https://github.com/impress-org/givewp/pull/5044)
* Fixed: Resolved style and JS issues in WordPress 5.5+ with GiveWP's WP-admin metabox expand/collapse and repeater elements. [#5126](https://github.com/impress-org/givewp/pull/5126)
* Fixed: A `register_rest_route` notice no longer displays when creating a new page in the block editor. [#5115](https://github.com/impress-org/givewp/pull/5115)
* Fixed: Multi-step form anonymous donation checkbox is now checkable after changing the payment gateway. [#5191](https://github.com/impress-org/givewp/pull/5191)
* Fixed: Fee Recovery checkbox placement in Multi-Step forms now respects the Fee Recovery input location setting. [#5205](https://github.com/impress-org/givewp/pull/5205)
* Fixed: Form Field Manager controls are now set up on init of the Multi-Step form to ensure they work with only a single gateway enabled. [#5216](https://github.com/impress-org/givewp/pull/5216)
= 2.7.5: August 11th, 2020 =
* New: Form Templates now support all permalink configurations (or lack there of), including the default value of "plain". [#4952](https://github.com/impress-org/givewp/issues/4952)
* New: The Donations search bar now allows you to search by like keywords for rather than exact match which makes it a lot easier to find proper results. [#4994](https://github.com/impress-org/givewp/issues/4994)
* Fix: Revamped the logic for requiring Postal / Zip codes for countries that do not have postal codes. [#5006](https://github.com/impress-org/givewp/issues/5006)
* Fix: Resolved an issue when using the Multi-Step donation form with the first step disabled would cause the donor to auto-scroll incorrectly on page load. [#5004](https://github.com/impress-org/givewp/issues/5004)
* Fix: Resolved a database table creation issue for new installs due to bug within our new bootstrapping process. [#5017](https://github.com/impress-org/givewp/issues/5017)
* Fix: Ensure that the "Title Prefixes" maintain the order of values when saved. [#4992](https://github.com/impress-org/givewp/issues/4992)
* Fix: The "Donation Form" Block can now properly be re-selected when it's using the new Multi-Step donation form template and the admin loses focus on the block. [#5017](https://github.com/impress-org/givewp/issues/5017)
= 2.7.4: August 4th, 2020 =
* Fix: The uninstall process in v2.7.3 previously resulted in a fatal error due to a change made in the plugin's bootstrapping process. [#4981](https://github.com/impress-org/givewp/issues/4981)
= 2.7.3: July 29th, 2020 =
* Fix: The Donation Reports were not correctly calculating renewals processed via the Recurring Donations add-on leading to incorrect figures. [#4883](https://github.com/impress-org/givewp/issues/4883)
* Fix: The new Multi-Step Form Template was not correctly marking donations as anonymous if the donor elected to give anonymously. [#4959](https://github.com/impress-org/givewp/issues/4959)
* Fix: Reports have been improved to account for the use of a comma as the currency decimal separator. Previously, when using a ',' as the decimal separator for a currency, it produced inconsistent errors in terms of decimal placement for totals displayed on the Reports page. Furthermore, using a ',' for the decimal separator resulted in consistent misplacement of the decimal in the Average Donations totals. [#4926](https://github.com/impress-org/givewp/issues/4926)
* Fix: The Chosen select dropdown field now can properly have separate values and labels. [#4943](https://github.com/impress-org/givewp/issues/4943)
* Fix: Fixed a typo in the default Thank You page content for the new Multi-step Form Template. [#4909](https://github.com/impress-org/givewp/issues/4909)
* Fix: The `give_get_meta` filter had a duplicate parameter passed and now properly passes all parameters. [#4464](https://github.com/impress-org/givewp/issues/4464)
= 2.7.2: July 6th, 2020 =
* Fix: The 2.7.0 upgrade routine could cause WP-Admin to be incorrectly redirected to the update success screen for certain hosting environments after completion. [#4900](https://github.com/impress-org/givewp/issues/4900)
* Fix: The Donor Wall shortcode now allows you to properly only display certain donors by their donor IDs. [#4864](https://github.com/impress-org/givewp/issues/4864)
* Fix: Improved the Multi-Step Form Template styles when only one gateway is active. Previously the "Donate Now" button wouldn't be properly centered aligned and checkboxes could be a smaller width than the container. [#4882](https://github.com/impress-org/givewp/issues/4882)
* Fix: Provided support for the "Anonymous Donations" checkbox within the new Multi-step Form Template. [#4888](https://github.com/impress-org/givewp/issues/4888)
* Fix: The "Terms and Conditions" checkbox can now be properly scrolled on mobile devices. [#4899](https://github.com/impress-org/givewp/issues/4899)
* Fix: When Google Pay was the default gateway a notice would incorrectly display in the new donation form template. [#4879](https://github.com/impress-org/givewp/issues/4879)
= 2.7.1: June 30th, 2020 =
* Fix: Resolved an issue with the 2.7.0 releasing causing the Form Grid shortcode to not render due to a PHP fatal error. [#4877](https://github.com/impress-org/givewp/issues/4877)
* Fix: Updated a JavaScript version to the latest to prevent browser caching from causing the Reports widgets to not function until a hard browser refresh. [#4876](https://github.com/impress-org/givewp/pull/4876)
= 2.7.0: June 29th, 2020 =
* New: We're excited to announce a new way to create your donation forms called "Form Templates". The first template is allows you to create a highly customizable multi-step donation form where you control all the text, colors, and images in place. Be sure to update to the latest version of your add-ons for full compatibility. [Read more about Form Templates](https://go.givewp.com/wpgivewp27)
* New: Multiple Stripe Account is here! Now you can connect to multiple Stripe accounts and set them per donation form. That means organizations, like charities with chapters or schools with clubs that need to raise money online, can create different forms to accept donations through separate Stripe accounts. [Read more about Stripe Multi-Accounts](http://docs.givewp.com/stripe-free)
* New: Our Gutenberg blocks' UI was improved so they are have a better user experience.
* Tweak: Previous to this release we were packaging two TCPDF packages for backwards compatibility reason. We removed one of the packages and now are relying on the composer package. This means that you'll need to be running the PDF Receipts version add-on at 2.3.4 or higher for compatibility. [#4656](https://github.com/impress-org/givewp/pull/4656)
* Fix: If you install GiveWP and didn't configure anything there would be a JavaScript error on the frontend if Stripe is not connected but enabled, which it is by default for new installs. [#4709](https://github.com/impress-org/givewp/pull/4709)
* Fix: Improved how reports are rounding percentages so that the trend comparisons are more accurate. [#4766](https://github.com/impress-org/givewp/issues/4766)
* Fix: Monaco doesn't have states so don't display or require a state field when that country is selected. [#4773](https://github.com/impress-org/givewp/pull/4773)
* Fix: Properly internationalized a tooltip in Stripe so translations properly display. [#4677](https://github.com/impress-org/givewp/pull/4677)
* Fix: The "Add-ons" like on the plugin activation welcome screen was broken. [#4843](https://github.com/impress-org/givewp/pull/4843)
* Fix: Resolved a caching conflict with WP Rocket that was preventing donation forms from being cached properly. [#4546](https://github.com/impress-org/givewp/pull/4546)
* Fix: Prevented a fatal error that could occur on the Donor profile screen in WP-Admin when the Stripe add-on is active but no Stripe payment gateways are enabled. [#4787](https://github.com/impress-org/givewp/pull/4787)
= 2.6.3: May 19th, 2020 =
* New: Added a new payment gateway for Stripe called BECS Direct Debit payments for Australia. This includes support for one time and subscription payments. Note: Subscription payments are only supported via the Recurring Donations add-on. [#4590](https://github.com/impress-org/givewp/issues/4590)
* Fix: Improved Stripe's error handling so that the error output is more descriptive of the actual problem and donations are not marked as complete if the card is denied by Stripe. [#4689](https://github.com/impress-org/givewp/issues/4689)
* Fix: When viewing legacy reports and filtering data you would incorrectly be redirected to the new reports screen instead of seeing filtered report data. [#4644](https://github.com/impress-org/givewp/issues/4644)
* Fix: The alignment of the money fields were off a few pixels on the donation form settings screen. [#4638](https://github.com/impress-org/givewp/issues/4638)
* Fix: Modified pro license logic so that old license keys saved to the database don't cause incorrect notices to display. [#4669](https://github.com/impress-org/givewp/issues/4669)
* Fix: Updated the country select dropdown to remove missing and incorrect countries. [#4745](https://github.com/impress-org/givewp/issues/4745)
* Fix: Dates for the donor wall now output the properly translated date. [#4721](https://github.com/impress-org/givewp/issues/4721)
* Fix: Several field descriptions in the plugin settings had typos and / or required clarity for better understanding. [#4649](https://github.com/impress-org/givewp/issues/4649), [#2808](https://github.com/impress-org/givewp/issues/2808)
* Tweak: Replaced the default placeholder image that was using placehold.it image for a local image for improved support. [#4743](https://github.com/impress-org/givewp/issues/4743)
= 2.6.2: April 1st, 2020 =