-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathchangelog.txt
More file actions
1506 lines (1178 loc) · 69 KB
/
changelog.txt
File metadata and controls
1506 lines (1178 loc) · 69 KB
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
= v4.3.6 (22 May, 2026) =
* Fix – Restore edit button for custom post type published posts after 4.2.9
= v4.3.5 (11 May, 2026) =
* Chore – Exclude .DS_Store files from builds and SVN deploy
= v4.3.4 (11 May, 2026) =
Chore – Exclude CLAUDE.md and .claude directory from wp.org SVN deploy
= v4.3.3 (30 April, 2026) =
Enhance – Bind cancel nonce to user and enforce ownership
Fix – Resolve post expiration not working
= v4.3.2 (24 April, 2026) =
New – Add guest and paid guest post templates and assets
New – Add user directory page creation to installer and tools
Enhance – Add 'General' category for registration forms
Fix – Sanitize file IDs with absint and remove debug logs
Fix – Resolve unauthorized subscription pack assignment
Fix – Enable fallback pay-per-post when force_pack is set
= v4.3.1 (8 April, 2026) =
* New – Add Elementor Account page widget
* New – Add Elementor Subscription widget
* New – Add Elementor Post Form Builder widget
* New – Introduce card grid UI for payment gateway selection
* Enhance – Bind cancel nonce to user and enforce ownership
* Enhance – Clean up What's New page assets and remove unused code
* Fix – Improve wording of plugin update notice
* Fix – Resolve CSS/JS warning in setup wizard
= v4.3.0 (11 March, 2026) =
* New – Add User Directory Module
= v4.2.10 (26 February, 2026) =
* New – Add Logout link to navigation menu for Classic and FSE themes
* New – Support custom image icons in Form Builder
* New – Add Kazakhstani Tenge (KZT) and expand currency list to ISO 4217 standard
* New – Add Cloudflare Turnstile validation
* Enhance – Improve Login form stability and validation fixes
= v4.2.9 (24 February, 2026) =
* New – Integration-specific AI form builder support
* New – Add Shortcodes Reference page under Tools menu
* Enhance – Improve Bank payment system
* Enhance – Add security validation for JSON file uploads
* Enhance – Strengthen authorization checks for draft post editing
* Fix – Correct AI form builder button text
= v4.2.8 (28 January, 2026) =
* New – Account page Re-Design
* New – AI settings improvements with temperature control, API key masking, and connection testing
* Enhance – Remove currency symbol from AI form builder pricing fields
* Enhance – Form builder UI and usability tweaks
* Enhance – Conditional options for field icon settings
* Enhance – Improve string translation and escaping in modal templates
= v4.2.7 (27 January, 2026) =
* New – Account page Re-Design
* New – AI settings improvements with temperature control, API key masking, and connection testing
* Enhance – Remove currency symbol from AI form builder pricing fields
* Enhance – Form builder UI and usability tweaks
* Enhance – Conditional options for field icon settings
* Enhance – Improve string translation and escaping in modal templates
= v4.2.6 (14 January, 2026) =
* New – Add AI-powered field options generator for dropdown, radio, and checkbox fields
* Fix – Correctly detect ACF taxonomies
* Fix – Subscription page title is broken
* Fix – Hidden CSS class removes fields from builder
* Fix – Color picker PRO badge icon and hover overlay in settings
* Fix – Resolve subscription post number rollback toggle not saving
* Fix – Event Venue & Organizer Handling Issues in Frontend Event Submission
= v4.2.5 (01 January, 2026) =
* Enhancement – Warning message for empty field options
* Enhancement – Login and Registration help text
* Fix – Add authorization checks for attachment deletion in form submission
* Fix – Update security by WordPress plugin check
* Fix – Radio and checkbox options going out for long list in form builder
* Fix – Add italic, underline, and bold styling to Settings link in field validators
= v4.2.4 (10 December, 2025) =
* New - n8n integration for post form
* Fix - Duplicate event on update for event calendar integration
= v4.2.3 (20 November, 2025) =
* Enhancement – Add dynamic AI model fetching and improved error handling
* Enhancement – System prompt update for better output for AI form builder
* Enhancement – Change pricing field logo
* Enhancement – Styling, CSS > replaced all old pro icon with new icon
= v4.2.2 (04 November, 2025) =
* Fix - Show/Hide field based on subscription plan
* Fix - Frontend subscription page CSS fixes
= v4.2.1 (30 October, 2025) =
* New - AI Powered Post Form Creation
= v4.1.15 (22 October, 2025) =
* Fix - Unwanted text appearing in 'View' and 'Preview' links
= v4.1.14 (21 October, 2025) =
* New - Dynamic Field Icons for improved visual customization
* Enhancement – Renamed "Published" tab to "Saved" on Form List pages for better clarity
* Enhancement – Added Upgrade and Discount links on the plugin page for easier access
* Enhancement – Pricing Fields PRO preview section added to the Form Builder
= v4.1.13 (07 October, 2025) =
* Enhancement - Security and Capabilities check
= v4.1.12 (24 September, 2025) =
* New - Video Content Submission post form template
= v4.1.11 (10 September, 2025) =
* Fix - CSS scope conflict
= v4.1.10 (01 September, 2025) =
* New - Allow webp image format in file upload fields
* Enhancement - Cleanup post form settings by removing form template option
* Fix - Prevent same name file conflicts upload
= v4.1.9 (12 August, 2025) =
* Fix - The Events Calendar integration
= v4.1.8 (04 August, 2025) =
* New - Template filtering search in post form
* Fix - Invoice and email not sent for payment gateways
* Fix - Product tag suggestion for WooCommerce
* Fix - Guest Post Email Verification Issue
* Fix - Namespaced global JS to prevent conflicts with other plugins
* Fix - Ensure Google Map fields display on frontend posts
* Fix - Required field validation for 'Pay as you post' to prevent empty submission
* Fix - Conditionally show 'Require email verification' only when 'Require Name and Email address' is checked
* Fix - A typo From Expired Message → Form Expired Message
* Fix - Post forms list table CSS
= v4.1.7 (15 July, 2025) =
* New - Add Sort Order for subscription
* Enhancement - Update country list and improve state handling
* Fix - Conflict with email log plugin
* Fix - Disable "Update Post Notification" pro features preview
* Fix - CSS on long form lists
= v4.1.6 (30 June, 2025) =
* Enhancement - Form title, description toggle added for post form
* Enhancement - Separate translation context for date range "To"
* Fix - PayPal redirection issues
* Fix - Allowed memory size error on the Post Forms List Page
* Fix - Improved registration page redirects to prevent interference with XML sitemap and XML file requests
* Fix - Dynamic url for {login} and {register} in un-authorized message
= v4.1.5 (2 June, 2025) =
* Enhancement - Added support for unlimited subscriptions.
* Enhancement - Added trial period & next billing dates in subscription.
* Enhancement - Added “Show More” button for subscriptions with many post types.
* Enhancement - Support for PayPal REST API for payments.
* Enhancement - Real-time PayPal Webhook support for payment events.
* Enhancement - Added REST API credentials & test mode to Payment settings.
* Fix - Forms list not loading issue fixed.
* Fix - Fixed issues with null gateways causing errors.
* Fix - Improved handling of duplicate PayPal transactions.
* Fix - Fixed several subscription-related bugs.
* Fix - Fixed tag auto-suggestions not appearing in post forms.
= v4.1.4 (12 May, 2025) =
* Enhance - Post form list page UI and UX
* Fix - Coupon functionality
* Fix - Post submission when name email not required
* Fix - Styling on multiple pages
= v4.1.3 (23 April, 2025) =
* Fix - Draft button does not appear
* Fix - Post submission when name email not required
* Fix - Subscription number not showing
* Fix - Image upload button condition
* Fix - Email body not respecting spaces
* Fix - Show recurring and trial info on subscription
* Fix - Minor css and styling
= v4.1.2 (16 April, 2025) =
* Fix - Help page of profile editing has duplicated text
* Fix - Warning message not showing when guest post submitted with duplicate email, username
= v4.1.1 (27 March, 2025) =
* Fix - Resolved validation issue with error (!) after form submission.
* Fix - Improve template selection UX to uncheck a selected post form template.
= v4.1.0 (20 March, 2025) =
* Enhance - Redesigned Post Form Builder UI/UX
* Enhance - Reorganized Forms Settings for better structure
* Enhance - Added a search bar for quick field filtering
* Enhance - Added new field & feature request submission area
* Enhance - Improved field grouping & customization
= v4.0.15 (19 March, 2025) =
* Fix - Security vulnerabilities: escaped variables & sanitized inputs
* Fix - Reverted SweetAlert2 to v11.4.8 for compliance
* Fix - Removed unnecessary files
= v4.0.14 (23 Nov, 2024) =
* Fix - Error in login page
* Fix - Support situations in which (WPUF) translations are loaded too early
= v4.0.13 (14 Nov, 2024) =
* Enhance - Cloudflare Turnstile field on form builder
* Enhance - Cloudflare Turnstile on login form
* Fix - Events calendar post form integration
* Fix - Post form submission with same email
* Fix - Post description image broken for block theme
= v4.0.12 (14 Oct, 2024) =
* Enhance - Decimal value for subscription pack
* Fix - Required asterisk on password label
* Fix - Field overlapping in address field
* Fix - Read-only does not work for 'Teeny Rich textarea'
* Fix - Integrations not loading properly for Dokan, ACF, WC Vendors
= v4.0.11 (12 Sep, 2024) =
* Enhance - Subscription design revamp
* Enhance - Consistent format in email templates
* Enhance - Move newsletter subscription to weMail
* Fix - Translation for password strength
* Fix - Different languages breaking design
* Fix - State field is not changing
= v4.0.10 (08 Aug, 2024) =
* Fix - Error on WC post template
* Fix - Move login validation to pro
= v4.0.9 (17 Jul, 2024) =
* Fix - Remove PHP AllowDynamicProperties warning on plugin pages
* Fix - Remove print_emoji_styles is deprecated message from setup page
= v4.0.8 (03 Jul, 2024) =
* Fix - Optimized the script loading process by removing a Promise polyfill
* Fix - Added validation on the transaction page
= v4.0.7 (11 Jun, 2024) =
* Enhance - Remove what's new page
* Fix - Pending user can log in
* Fix - Error when multiple password fields in form
* Fix - Error when using CPT on post form
* Fix - File upload problem using page builders
* Fix - Conflict with WC Stripe Gateway plugin
* Fix - Edit link on mail not working
* Fix - Form import is not working
= v4.0.6 (13 Feb, 2024) =
* Enhance - Update deprecated uses for PHP versions and latest WordPress
* Enhance - Eye icon inside password field
* Fix - Error after PayPal payment
* Fix - Reset password not working
* Fix - Subscription posting restriction not working
= v4.0.5 (31 Jan, 2024) =
* Enhance - Integrate headway and canny
= v4.0.4 (25 Jan, 2024) =
* Enhance - Add visibility to the Columns field
* Fix - Login with reCAPTCHA gives error
* Fix - AJAX image upload
* Fix - Error on multi select form custom taxonomy
* Fix - Frontend registration form is not showing
* Fix - Handle email for guest post
* Fix - Default form template not selecting
* Fix - Error in setup wizard
= v4.0.3 (05 Jan, 2024) =
* Enhance - Restructure plugin codes
* Fix - Error when editing the featured post
* Fix - add/edit post forms if the site language is set to Simplified Chinese
* Fix - Errors with Post Form Conditional Logic
= v4.0.2 (03 Jan, 2024) =
* Enhance - Restructure plugin codes
* Fix - Error when editing the featured post
* Fix - add/edit post forms if the site language is set to Simplified Chinese
* Fix - Errors with Post Form Conditional Logic
= v4.0.1 (03 Jan, 2024) =
* Enhance - Restructure plugin codes
* Fix - Error when editing the featured post
* Fix - add/edit post forms if the site language is set to Simplified Chinese
* Fix - Errors with Post Form Conditional Logic
= v4.0.0 (02 Jan, 2024) =
* Enhance - Restructure plugin codes
* Fix - Error when editing the featured post
* Fix - add/edit post forms if the site language is set to Simplified Chinese
* Fix - Errors with Post Form Conditional Logic
= v3.6.9 (11 Sep, 2023) =
* Enhance - add capabilities check on AJAX actions
= v3.6.8 (31 Aug, 2023) =
* Fix - Delete upload file even after clicking cancel button
* Fix - Taxonomy data not showing for checkbox
* Fix - Some validation for AJAX actions
= v3.6.7 (09 Aug, 2023) =
* Fix - conflicts with Advanced Custom Fields Pro Plugin
* Fix - conflicts with the Classic Editor Plugin
* Fix - multiple HTML field inside column field
= v3.6.6 (27 Jul, 2023) =
* Enhancement - Restrict shortcode in post form
* Enhancement - Add custom note on plugin update page
= v3.6.5 (25 May, 2023) =
* Enhancement - Revamp registration page design
* Fix - Expiration time not showing for admin
* Fix - Error when editing user profile
= v3.6.4 (4 Apr, 2023) =
* Fix - Post submission for dokan vendors
* Fix - Paypal transaction not showing
* Fix - Predefined category field not working
* Fix - Field visibility not working
= v3.6.3 (13 Feb, 2023) =
* Fix - Error if Dokan not installed
* Fix - Style conflict with LearnPress
= v3.6.2 (8 Feb, 2023) =
* Fix - Post submission for the Dokan Vendors
= v3.6.1 (2 Jan, 2023) =
* Enhancement - Add responsiveness to the upgrade-to-pro popup widget
* Enhancement - Update Appsero SDK to the latest version
* Enhancement - warning before updating a subscription package
* Fix - Subscription shouldn't be editable from user's profile
* Fix - Text field append '0' when character exceeds content restriction limit
* Fix - Fields within column doesn't behave as expected in forms
* Fix - Change sweetalert2 to v11.4.19 to remove anti-war message
= v3.6.0 (23 Nov, 2022) =
* Enhancement - Admin dashboard news and update meta-box added
* Enhancement - Upgrade prompts design
* Fix - Email style handled
* Fix - text-area type selection(Normal, Rich text-area, Teeny Rich text-area) bug in field options
* Fix - Frontend form validation
* Fix - Default value not saving for radio, dropdown, checkbox
* Update - sweetalert2 version
v3.5.29 (15 Sep, 2022) =
* Enhancement - Short-code encryption updated for registration page
= v3.5.28 (17 Jun, 2022) =
* Tweak - Updated compatibility with the latest version of WordPress 6.0
* Tweak - Improved some backend implementations
= v3.5.27 (15 Mar, 2022) =
* Enhancement - Email template enhanced for after activation
* Enhancement - Read only option for custom field
* Enhancement - Editor toolbar exclude option enhanced
* Enhancement - Preview option enhanced for user profile
* Enhancement - Meta key enhanced for user email notification
* Enhancement - Global option for disable post edit on account
* Enhancement - Filter for conditional logic for fields added
* Fix - PHP 8 compatibility handled
* Fix - Address / Billing address inconsistency handled
* Fix - Content restriction several issue fixed
* Fix - Tax calculation properly handled for all areas
* Fix - Validation added for invalid email and URL formats
* Fix - Special character password handled for login
* Fix - Reset password handled for sidebar widget
* Fix - Required google map issues handled
* Fix - Translation related issue handled for admin menu
* Fix - Label & query enhanced for transaction table
* Fix - Template override for child theme fixed
* Fix - Custom field modal handled for registration form
* Fix - Redundant CSS issues handled
* Fix - Address field inconsistency fixed
* Fix - Plugin page spin loading issue handled
* Fix - Warning on exit for draft post fixed
* Fix - Unlimited expire on admin user profile handled
* Fix - No value checkbox issue handled
* Fix - Tag search security Vulnerability handled
* Fix - Multi dropdown field error handled
= v3.5.25 (18 Nov, 2021) =
* Enhancement - Promotion notice enhanced through api
= v3.5.25 (18 Nov, 2021) =
* Fix - Security Vulnerability fixed
= v3.5.22 (28 Oct, 2021) =
* Enhancement - Settings page search implemented
* Enhancement - Featured item for subscriber
* Enhancement - Warning added for unsaved form data on frontend
* Enhancement - Editor added for registration form email template
* Fix - Fallback pay per post not working with when draft enabled
* Fix - User Dashboard responsive issues fixed
* Fix - Showing wrong license expire message handled
* Fix - Remove expire cron handled for once daily
* Fix - Billing address validation handled
* Update - Promotion notice restricted for WPUF menu
= v3.5.21 (21 Oct, 2021) =
* Fix - reCaptcha issue with other plugin handled
* Fix - Multiple post type for wpuf dashboard not working fixed
* Fix - Billing address ajax request issue handled
* Update - Halloween promotion notice added
= v3.5.20 (16 Sep, 2021) =
* Enhancement - Content restriction for minimum, maximum value enhanced
* Enhancement - New option for redirection after pay per post payment in form setting
* Enhancement - Controller added for various email notification
* Enhancement - Placeholder added for unauth message option
* Update - Subscription Post expiration option change to input field
* Fix - Content restriction message translatable
* Fix - ACF integration inconsistency handled
* Fix - Enable payment checkbox handled for child option
* Fix - Broken asset link handled for custom field popup
* Fix - Rollback inconsistency for CPT handled
* Fix - Login form loaded after resetting password
* Fix - Billing address inconsistency handled
* Fix - Form duplication on creation handled
* Fix - Field Dragging inconsistency fixed
= v3.5.18 (06 Jul, 2021) =
* Enhancement - Google Map field enhanced along with acf google map
* Enhancement - Filter added for dashboard account menu
* Fix - Fallback Pay Per Post inconsistency handled
* Fix - Google map search field not showing
* Fix - Form preview page inconsistency with builder
* Fix - Category not showing as hierarchy
* Fix - TOC field rendering issue with registration form
* Fix - Custom plupload filter inconsistency with file upload handled
* Fix - Guest Pay Per Post inconsistency handled
* Fix - Responsive and font issue handled
= v3.5.17 (08 Jun, 2021) =
* Enhancement - Preview page added for post form and registration form
* Enhancement - Post types menu on account page added
* Enhancement - Dashboard shortcode attributes enhanced
* Enhancement - Account page post type list new design
* Fix - Payment page restricted from direct unauthenticated access
* Fix - Timepicker conflict with dokan handled
* Fix - Trial inconsistency with paypal fixed
* Fix - Subscription does not cancel with paypal due to profile missing id
* Fix - Subscription email notification inconsistency fixed
* Fix - Various issues on payment page for non-logged in user handled
* Fix - Column inner field cloning inconsistency fixed
* Fix - Popup z-index changed due to other plugin z-index
= v3.5.16 (08 May, 2021) =
* Update - Added Mauritian Rupee for currency
* Update - Added eid promotional offer notice
* Fix - Multiple google map validation for same form
* Fix - Various issues on verification, autologin payments & address field
* Fix - Docs update for file & attachments feature which is pro only
= v3.5.15 (15 March, 2021) =
* Notice - Limited time promotion for weDevs birthday
* Fix - Overflow footer on form builder page
* Fix - WordPress 5.7 compatibility
= v3.5.14 (08 March, 2021) =
* Fix - Meta key will not change if label update
* Fix - Login redirect empty previous url
* Fix - Email doesnt set as username
* Fix - Post redirection to payment doesn't work
* Fix - Address field not working when used with conditional logic
* Fix - Non recurring subscription did not work
* Fix - Ajax type category child of not working
= v3.5.13 (05 February, 2021) =
* Fix - Menu position has chenged due to dokan has same menu position
* Fix - Drag and drop not working properly for new field
= v3.5.11 (12 January, 2021) =
* Fix - QR and math captcha added to pro feature list
* Fix - Tooltip for category navigate
* Fix - Understandable guest payment notice
* Fix - Paypal non recurring pack id does not set
= v3.5.10 (18 December, 2020) =
* Update - Added holiday promotional offer notice
= v3.5.9 (11 December, 2020) =
* Fix - Once trial subscription is used, it couldn't reset
* Fix - Subscription cancel doesn't work
* Fix - The tax rate was not calculated with the total amount
* Fix - The width of the column field was breaking
* Enhancement - Paypal recurring payment
= v3.5.8 (21 November, 2020) =
* Fix - Updated codebase to fix timezone mismatch
= v3.5.7 (21 November, 2020) =
* Enhancement - Custom html content field's width
* Enhancement - All states of New Zealand are added
= v3.5.6 (13 November, 2020) =
* Fix - Can't edit post
* Fix - Show warning if newly created post form doesn't set role base enable
* Fix - Show warning in dashboard billing address tab
= v3.5.5 (12 November, 2020) =
* Fix - Dashboard page broken and couldn't render [wpuf_account], [wpuf_sub_pack], [wpuf_dashboard] shortcodes
= v3.5.4 (11 November, 2020) =
* Fix - Get appropriate user id when role based conditions are present
* Fix - Show Invalid subscription message if wrong pack id passed
* Fix - URL field new window not working
* Fix - Option label not working when & use
* Fix - Ajax type category not showing on edit
* Fix - Multiple file image can't select
* Fix - Subscription pack PayPal Checkout gets "Error: Access Denied"
* Fix - Conflict image field with acf image field
* Enhancement - Missing Auckland State for New Zealand country.
* Enhancement - Added support for WooCommerce product category value replacemen
= v3.5.3 (21 October, 2020) =
* Fix - Default post form is not showing on the frontend account
* Fix - Missing featured image field when previewing a post form
* Fix - Post query loop for post forms
* Fix - Post edit could not be edited after unlocking post edit
* Fix - Taxes couldn't count properly when selecting different tax region
* Fix - Google map field validation doesn't work
* Fix - Redirect payment page after post updating
* Fix - Custom field value and link send as plain text when sending an email for post notification
= v3.5.2 (22 September, 2020) =
* Fix - Changelog for wordpress.org
= v3.5.0 (22 September, 2020) =
* New - Add character restriction feature
* Tweak - Make sure post author edit link works only in frontend
* Fix - Inconsistency in lost password reset email message
* Fix - Saving custom taxonomy terms when input type is text
* Fix - Taxonomy field JS error in builder
* Fix - Showing WPUF edit link for WP default roles
* Fix - Upload button unresponsive issue in iOS
= v3.4.0 (24 August, 2020) =
* New - Add post edit link for post authors in single or archive pages
* Enhancement - Enhance post delete message
* Tweak - Refactor control buttons visibility in form builder
* Fix - Add missing colons after field label
* Fix - Post edit map capability condition
* Fix - Role based permission for accessing a post form
* Fix - Section-break field alignment
* Fix - Pay per post doesn't work if subscription pack is activated
* Fix - Mime type for uploading JSON files
* Fix - File upload with same file name
* Fix - Post preview missing fields
* Fix - Illigal variable declartion
* Fix - Featured image updating issue
* Fix - Conflict with Phlox theme
* Fix - Textarea custom field data sanitization
* Fix - exclude_type warning in wpuf_category_checklist
* Fix - Category field not showing all child categories for selection type child of
* Fix - Conflict between image and file upload custom fields
* Fix - Login url when login page is not set
= v3.3.1 (16 June, 2020) =
* Tweak - Use common names for Ivory Coast, North Korea and Sourth Korea instead of their official names
* Fix - Condition to use default avatar
* Fix - Make Email and URL fields clickable
* Fix - Redirect after user login
* Fix - Sanitize textarea field data
* Fix - Missing colon to email, URL, text and textarea labels when renders their data
* Fix - Prevent showing empty labels for fields that have render_field_data method
= v3.3.0 (11 June, 2020) =
* Enhancement - Add Namibian Dollar in currency list
* Enhancement - Add sync values option for option data fields
* Tweak - Allow uploading image that having filesize meets php ini settings
* Tweak - Limit the selection of one image at a time
* Tweak - Use file name and size to generate hash to prevent duplicant image upload
* Tweak - Sanitize text and textarea field data
* Tweak - Show label instead of values for radio, checkbox, dropdown and multiselect data
* Fix - Saving custom taxonomies for type text input
* Fix - Admin settings link for recaptcha helper text
* Fix - Undefined name property for Custom HTML fields
* Fix - Delete attachment process
* Fix - Missing billing address in invoice PDF
* Fix - Showing country field value in frontend post content
* Fix - Avatar size display not complying with admin settings size
* Fix - Display default avatars on admin settings discussion page
* Fix - Redirect to subscription page at registration
* Fix - Error notice regarding registration page redirect
* Fix - Escaping html in registration errors
* Fix - Default login redirect link
* Fix - Implementing default WP login page override option
* Fix - Transparent background of autosuggestion dropdown
= v3.2.0 (14 April, 2020) =
* **Improvement:** Import forms system
* **Improvement:** Password reset system
* **Improvement:** Updated url validation regex to support modern tlds
* **Fix** Export WPUF forms individually from admin tools page
* **Fix** Subscription cycle label translation issue
* **Fix** ACF integration for checkbox fields
* **Fix** Illegal string offset warning while updating settings
* **Fix** Conditional logic for Section Break field
* **Fix** Subscriptions cannot be deleted from backend
* **Fix** A regression regarding saving checkbox data
* **Fix** Default value of multi-select fields is not showing
= v3.1.18 (13 March, 2020) =
* **Improvement:** Hide post edit option when subscription is expired
* **Improvement:** Check files to prevent duplicity in media upload
* **Improvement:** Added Jordanian Dinar to currency list
* **Improvement:** Update post edit button display logic
* **Improvement:** Update some notice messages
* **Improvement:** Made some query and asset loading improvements
* **Improvement:** Refactor address fields in Account section & Payment page
* **Improvement:** Enqueue color picker only in some WPUF pages
* **Improvement:** Update Paypal payment gateway
* **Improvement:** Inconsistency with the Shop Name & Shop URL in WPUF Vendor registration form
* **Fix:** Prevent taxonomy and category fields from being duplicated
* **Fix:** Selected form export issue
* **Fix:** Category column issue in dashboard
* **Fix:** Taxonomy checkbox checked not showing
* **Fix:** Fatal error after updating privacy policy page
* **Fix:** Fixed some instances of wrong escaping
* **Fix:** Submit issue with image and reCaptcha
* **Fix:** Expired subscription pack throwing error on dashboard
* **Fix:** Photo insert option in content editor and feature image field is not working on windows server
* **Fix:** HTML Tags are not rendering the HTML format for the Radio or Checkbox Field
* **Fix:** Country List field issue in frontend
* **Fix:** Multi-column Repeater field data saving issue
* **Fix:** Multistep form conflict with Elementor
* **Fix:** Compatibility issue with ACF date time field
* **Fix:** Meta field issue with multiple images
* **Fix:** Category type as "Text Input" is not saving.
* **Fix:** Some warnings in user directory
* **Fix:** File upload can fail in some cases
* **Fix:** Media title, caption & description not saving
* **Fix:** Address Field not rendering properly in email notification
* **Fix:** Checkbox data not saving from WPUF Custom Fields metabox
* **Fix:** Workaround for The Events Calendar venue and organizer fields in metabox
= v3.1.17 (31 January, 2020) =
* **Fix:** some regressions after phpcs fixes
= v3.1.16 (17 January, 2020) =
* **Fix:** Photo insert option in content editor
* **Fix:** Subscription page is not showing the content/package description as formatted content
* **Fix:** Predefined form is not saving on the WPUF form page's backend area
* **Fix:** WPUF Custom HTML field is not saving the data
* **Improve:** Improve Code Quality
= v3.1.15 (14 January, 2020) =
* **Fix:** update url validation
* **Tweak:** Added privacy policy info in setup wizard for admin
= v3.1.14 (13 December, 2019) =
* **Fix:** Fixed a warning while in block editor
* **Fix:** Add better URL validation
* **New:** Added two filters on transaction
* **Fix:** Notification Checkbox not working
* **Fix:** Fixed some Column field issues
= v3.1.13 (18 November, 2019) =
* **New:** Added Arabic translations.
* **Fix:** Free subscription info was not showing in dashboard.
* **Fix:** Fixed subscriptions can't be assigned from user profile due to a regression.
* **Fix:** Fixed some column field issues. closes #734
* **Fix:** Guest post hook was not working properly. Closes #704
* **Fix:** Fixed missing default value for post content rich text editor. Closes #730
= v3.1.12 (17 October, 2019) =
* **Fix:** Nonce not verify on login
= v3.1.11 (02 October, 2019) =
* **Feature:** Option to set which tab shows as active on the account page.
* **Fix:** Unlock option was unavailable after the post being locked.
* **Fix:** Gutenberg block of WPUF didn't work on bedrock installation.
* **Fix:** Sending admin payment received email twice.
* **Enhancement:** Add shortcode support to display post information in the Post Expiration Message.
* **Enhancement:** Add Appsero option checkbox on the setup wizard.
= v3.1.10 (06 September, 2019) =
* **Fix:** Posts were not assigned to the selected default post owner.
* **Fix:** Google reCaptcha was not working, users could submit the form without reCaptcha validation.
= v3.1.9 (22 July, 2019) =
* **Fix:** call_user_func_array() error while editing or add a new post from admin panel.
* **Fix:** Address fields on payment page were not checking which fields are optional.
* **Fix:** WooCommerce gallery images were not being shown on the frontend.
* **Fix:** Show & hide coupon message based on response.
* **Fix:** Login page was including registration page link even when user registration was turned off.
* **Fix:** Notification emails were not respecting the spaces.
= v3.1.8 (26 June, 2019) =
* **Fix:** Multistep form was scrolling to the top of the browser instead of moving to the top of the form when clicking on `Next` or `Previous` button.
* **Fix:** Uploaded images were not showing in the ACF gallery field.
* **Fix:** Billing address was not saved from the frontend payment page.
* **Fix:** Added translation functions to the missing strings.
* **Fix:** Dependency styles error of Gutenblock-editor.css.
= v3.1.7 (31 May, 2019) =
* **Fix:** check for 'button_label' existence before using it.
* **Fix:** after accepting bank payment, post status was not changing.
* **Fix:** custom taxonomy empty value was not saving when editing a post & field type is a checkbox.
* **Fix:** fix PHP warning.
* **Improvement:** added `Select Country` text for billing address country field.
= v3.1.6 (23 May, 2019) =
* **Fix:** URL field empty value was not saving.
* **Fix:** Custom taxonomy field empty data were not updating.
* **Fix:** Added translation function for missing strings.
* **Improvement:** Added active class to account page menu items.
* **Improvement:** Responsive frontend pages.
= v3.1.5 (02 May, 2019) =
* **Fix:** Conflict weDevs insight library with WP Project Manager plugin.
= v3.1.4 (02 May, 2019) =
* **Fix:** Category field data were not being saved when conditional logic is applied to custom taxonomy fields based on category field.
* **Fix:** While editing the checkbox values from the backend user profile page, the values were not being saved.
* **Fix:** While editing profile, using the default profile form, the password strength indicator didn't respond.
* **Fix:** Insights data were not being sent.
= v3.1.3 (15 April, 2019) =
* **Fix:** Required option of checkbox field was not validating on the frontend.
* **Fix:** Select mulitple options in checkbox field doesn't save the data.
* **Fix:** Fallback pay per post was not respecting the payment procedure & fallback cost was not correct on the payment page.
= v3.1.2 (01 April, 2019) =
* **Feature:** Added column field: Now, creating multi-column in a single row is super easy with WPUF Column field. Just drag the column field in the builder area, configure columns number, column space and add any fields you want inside that Column field.
* **Fix:** Unable to render the events on the front-end: On the frontend dashboard, the submitted events were not showing, you will get it fixed in this version.
* **Fix:** Page order getting 0(zero) after editing from the frontend: Page order was not saving while editing a post using WPUF form, it has been fixed.
* **Fix:** Text Input field for Taxonomies not working: When taxonomy field type is set to `Text Input` then a fatal error was showing on the frontend, no error with taxonomy field in the latest version
* **Fix:** In radio and checkbox field use conditional logic that value does not save in database: The selected value of radio and checkbox field were not showing while editing posts from the backend or frontend, you can see the selected value in this version.
* **Fix:** The args parameter not working with get_avatar filter: The args parameter did not exist with get_avatar filter, which now exists.
* **Fix:** The item in ajax taxonomy field is not selected: When the taxonomy field type is set to Ajax, the submitted terms were not showing in the backend and frontend which have been fixed.
= v3.1.1 (28 February, 2019) =
* **Fix:** Help text in the Category field were not displaying on the frontend.
* **Fix:** Category was not editable when editing the post from the frontend.
* **Fix:** Display the admin bar when user role exist.
* **Fix:** When the admin edits a post from the backend, it was creating duplicate post.
* **Fix:** After enabling post expiration in post form do not save post_expiration meta.
* **Fix:** Checkboxes were not linking/syncing with ACF field.
* **Fix:** Publish time input option in the Date/Time field, was not working.
= v3.1.0 (31 January, 2019) =
* **Fix:** The Default registration form `[wpuf-registration]` was unable to send the new user registration email.
* **Fix:** With the latest version of WordPress the Gutenberg block of WP User Frontend were not working. Fixed in this version.
* **Fix:** While using Gutenberg editor, the pages were not being updated with WPUF shortcode consisting`[wpuf dashboard]`
* **Fix:** From the User Frontend Settings, you had the capability to set if the Administrator, Editor, Vendor etc can see the admin bar. Now, the super admin want one specific user ( who has the user role from the above ) can't see the admin bar and disabled it from the Toolbar form that specific user profile. And this configuration ( Toolbar ) from the specific user profile were unable to impact on the frontend.
* **Fix:** WP User Frontend was unable to install with PHP 5.4 or lower version.
* **Fix:** When a user uploaded single image for product gallery using WPUF WooCommerce product form, that image was not showing on the frontend.
= v3.0.2 (1 January, 2019) =
* **Feature:** Added post lock feature based on posts and user
* **Fix:** 'show directions' link doesn't show with the google map on submitted post
* **Fix:** Subscription pack price not formatting according to the settings
* **Fix:** Post date is not updating when enable time input option for date field
= v3.0.1 (5 December, 2018) =
* **Fix:** Image is duplicating
= v3.0.0 (4 December, 2018) =
* **New:** Integrated WC Marketplace plugin: vendor can submit post from their frontend dashboard
* **New:** Integrated WC Vendors plugin: vendor can submit post from their frontend dashboard
* **Fix:** Post is getting duplicate while updating
= v2.9.4 (20 November, 2018) =
* **Fix:** WooCommerce Gallery images not getting saved
= v2.9.3 (02 November, 2018) =
* **Fix:** NoCaptcha reCaptcha compatibility issue
* **Fix:** Empty URL field label showing with the post on frontend
* **New:** Add option to hide field label
* **New:** Use theme style for all input fields
* **New:** Added SweetAlert pop up box for image delete & subscription cancel confirmaton
* **Improved:** Showing user display name instead of username on the frontend dashboard
= v2.9.2 (20 September, 2018) =
* **Fix:** Delete & drag icon showing inappropriately
* **Fix:** Custom fields data not showing on the frontend when different conditional logic apply based on same field with different options
= v2.9.1 (18 August, 2018) =
* **New:** Added custom classes to make two or three columns form
* **Fix:** If add a field with the 'field visibility' to the admin only, it was fine to the admin. But, the field and the fields below were not showing to the non-admin users. It has been fixed in this version.
* **Fix:** Duplicated field was not saving on the post form
= v2.9.0 (16 August, 2018) =
* **New:** The Events Calendar Integration Form
* **New:** Post Submission Facility From Account Page
* **Improved:** Login/Lost Password Link Under Registration Form
* **Improved:** Added settings to show/hide payment column on frontend dashboard table
* **Fix:** Draft post gets published after editing without even asking for payment
* **Fix:** Added Placeholder for Empty Featured Image
= v2.8.10 (17 July, 2018) =
* **New:** Added drag and drop image ordering on image upload field
* **New:** Added preview option in forms
* **New:** Added form limit message before form submission
* **New:** Added option to show reCAPTCHA field in login forms
* **Improved:** Replace alert with Sweet-alert in frontend
* **Improved:** Internationalized subscription pack cycle period labels
* **Fix:** "Select Image" button disappears while uploading multiple images.
* **Fix:** Showing username while login with wrong password and email
* **Fix:** Default post category not saving
* **Fix:** Pages was not being created from setup wizard
* **Fix:** Separator spacing for multi select and checkbox render view
* **Fix:** Form id specific posts are not displaying on the dashboard
= v2.8.9 (6 June, 2018) =
* **New:** Added functionality to export and erase WP User Frontend Data.
* **New:** Added billing address customizer.
* **New:** Changed plugin text-domain to 'wp-user-frontend' from 'wpuf'.
* **Improved:** Some responsive adjustments are made in payment page.
* **Improved:** Some scripts and styles were loading in all pages, it is fixed now.
* **Improved:** Fixed warning on dashboard for custom post types with no label.
* **Fix:** Images were not showing after upload in safari, it is fixed now.
* **Fix:** Posts cannot be updated after changing post images, it is fixed now.
* **Fix:** Fixed getting fatal error when submitting post with image in some cases.
* **Fix:** Fixed billing amount not showing when assign pack from backend.
* **Fix:** Fixed some translations issues.
= v2.8.8 (16 May, 2018) =
* **New:** Allow override form input style using theme styling.
* **Improved:** Nocaptcha recaptcha wasn't working when allow_url_fopen is disabled is fixed.
* **Improved:** Free pack users were not showing in subscribers list, now they will.
* **Improved:** If login override is disabled redirect to default wordpress register page.
* **Improved:** Updated image upload field style.
* **Improved:** Updated logged in user display style.
* **Improved:** Added label in featured image field.
* **Improved:** Changed content of subscription expiration mail.
* **Fix:** Taxonomy fields checkboxes were disappearing from builder in some cases, now they won't.
* **Fix:** Fallback cost calculation was inaccurate, it is fixed now.
* **Fix:** Subscription expiry date showing wrong time for unlimited packs, it is fixed now.
* **Fix:** User subscription deletion gets reverted if updated, it is fixed now.
* **Fix:** Fixed some issues in Advanced Custom Fields(Free) compatibility
* **Fix:** Fixed some translations issues.
= v2.8.7 (09 April, 2018) =
* **New:** Added WP User Frontend Guten Block
* **New:** Added Advanced Custom Fields(Free) compatibility
* **New:** Added Avatar size settings
* **Improved:** Changed postcode input field to string in billing address
* **Improved:** Added PHP backward compatibility for login redirect
* **Fix:** Taxonomy Terms not showing for custom post types in form settings
* **Fix:** Taxonomy Terms not showing for custom post types in front-end dashboard
* **Fix:** Fixed some issues in billing address
= v2.8.6 (22 March, 2018) =
* **Improved:** Added backward compatibility for WooCommerce product template
* **Fix:** Some fields were rendered as Array
* **Fix:** Added WoooCommerce address sync with WP User Frontend billing address
* **Fix:** Fixed issues in Reset Password Mail
* **Fix:** Fixed invalid key in email
* **Fix:** Subscription trial message was not showing properly
* **Fix:** Address Field was not updating
* **Fix:** Subscription Email toggle in settings was not working properly
* **Fix:** Sometimes username was not showing in transaction list
* **Fix:** Post count not showing on the frontend dashboard
* **Fix:** Date/Time was not following backend format in frontend
* **Fix:** Login redirect issues with blank page
= v2.8.5 (12 March, 2018) =
* **New:** Enhanced Login Redirect settings to redirect to previous page
* **Fix:** Form fields help text styles now showing properly
* **Fix:** Reset Links not showing on HTML email in some cases
* **Improved:** Show Form schedule notice before form submission
* **Improved:** Added version meta for Forms
* **Improved:** various other code improvements
= v2.8.4 (04 March, 2018) =
* **New:** Dashboard post listing now supports multiple post type within shortcode
* **New:** Added settings in URL field to view link on new window or same window
* **New:** Added settings to change button text for Image upload field
* **New:** Added Login Redirect settings to redirect users to a page after login
* **Fix:** MultiStep Form styles not working properly
* **Fix:** Account Activation link not working for new users
* **Fix:** Separated Serbia and Montenegro in country list
* **Fix:** Required field condition for google map not working
* **Fix:** Post submission infinity loop issue fixed
* **Fix:** TinyMCE styling not working on frontend layouts fixed
* **Improved:** Updated turkish translation
= v2.8.3 (15 February, 2018) =
* **New:** Admin form builder is now fully responsive.
* **New:** Added color schemes for creating attractive form layouts.
* **Fix:** Confirmation password field size is not updated
* **Fix:** Email notification contains unnecessary texts
* **Fix:** Assign pack costs not showing on admin fixed
* **Fix:** Restrict Free subscription pack to be enabled multiple times
* **Fix:** While updating post, image changes are updated after saving the post
* **Improved:** Show purchase link on notice of post purchase
* **Improved:** Hide edit link on front-end post listing if editing is disabled
= v2.8.2 (23 January, 2017) =
* **Improved:** Added upgrade function for default category: Upgrader added to upgrade previously set default post category.
* **New:** Subscription pack cannot be canceled: Fixed recurring subscription pack cannot be canceled from my account page in subscription details section.
* **Fix:** page installer admin notice logic issue: Fixed page installer admin notice logic problem due to new payment settings default value not set.
= v2.8.1 (14 January, 2017) =
* **New:** Setup Wizard: Setup Wizard added to turn off payment options and install pages.
* **New:** Multi-select Category: Add multi-select to default category in post form settings.
* **Improved:** Select Text option for Taxonomy: Add Select Text option for taxonomy fields. Now you can add default text with empty value as first option for Taxonomy dropdown.
* **Improved:** Taxonomy Checkbox Inline: Added checkbox inline option to taxonomy checkbox. You can now display Taxonomy checkbox fields inline.
* **Fix:** WooComerce Template fix: WooCommerce product form submittion error fixed. Product adding with WooCommerce template works fine now.
* **Fix:** Date Display Issue: Date not save/display after save form settings in Schedule form section.
* **Fix:** Default Field Width: Default Field Width set empty. Previously set as medium.
= v2.8.0 (6 January, 2017) =
* **New:** Limit Entries: limit how many entries a form will accept and display a custom message when that limit is reached.
* **New:** Schedule form: Don't accept form submission if the current date is not between the date range of the schedule.
* **New:** Restrict Users: Restrict form submission based on the users role.
* **New:** Show/hide Admin Bar: Control the admin bar visibility based on user roles.
* **New:** Ajax Login widget: Login user is more simple now with Ajax Login Widget. The simple login form don't required page loding for login.
* **Improved:** Form submission with Captcha: Form field validation process updated if form submits with captcha field.
* **Fix:** Payment redirection: Pay per post payment redirection not working after subscription expired.
* **Fix:** Edit Profile: User cannot edit their profile by frontend profile edit form.
* **Fix:** Undefined error: Data processing error on purchasing free subscription pack.
= v2.7.0 (12 December, 2017) =
* **New:** Posting integration with Dokan added. Now you can create and edit blog posts from your Dokan dashboard.
* **New:** Fallback cost for form subscription payment. When a subscribed user reaches post limit before the pack expires, this option will allow user to pay per post and continue making posts until the membership is valid.
* **New:** Added bulk accept feature to pending transactions.
* **New:** We have removed the add-on page and introduced a premium page with all the features available for you when you upgrade to pro version.
* **New:** A **What's New** page has been added to let users know about the most important new features and fixes has been introduced to the current version of the plugin.
* **New:** Newsletter subscription form added on the help page to keep you staying updated with latest news from us.
* **Improved:** A newly designed settings page has been introduced where you can easily configure everything more easily.
* **Improved:** If you are using a PHP version older than 5.4, you'll see notice to update your PHP version.
* **Improved:** Design improvements of subscription edit screen and user profile area in backend, it looks pretier now.
* **Improved:** Few settings options has been re-arranged in different tabs for better understanding.
* **Fix:** Fix Pay Per Post only shows round figure in frontend. #269
= v2.6.1 (8 November, 2017) =
* **Fix:** Fixed subscription pack frontend display issue. A small bug was introduced that was preventing displaying the subscription packs correctly.