-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathreadme.txt
2448 lines (2090 loc) · 179 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
=== Advanced Custom Fields: Extended ===
Contributors: hwk-fr
Donate link: https://www.acf-extended.com
Tags: acf, custom fields, meta, admin, fields
Requires at least: 4.9
Tested up to: 6.7
Requires PHP: 5.6
Stable tag: 0.9.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
All-in-one enhancement suite that improves WordPress & Advanced Custom Fields.
== Description ==
🚀 All-in-one enhancement suite that improves WordPress & Advanced Custom Fields. This plugin aims to provide a powerful administration framework with a wide range of improvements & optimizations.
**This plugin requires at least ACF Pro 5.8.**
If you don't already own [ACF Pro](https://www.advancedcustomfields.com/pro/), you should consider it. It's one of the most powerful WordPress plugin available.
== ⭐ Highlight ==
* 14+ New ACF Fields
* 10+ ACF Fields Enhanced
* 4+ New Field Groups Locations
* Self/Multi/Bidirectional Fields
* Advanced Fields Validation
* Flexible Content as Page Builder
* Optimize metadata with Performance Mode
* Advanced Front-End Forms Manager
* ACF Options Pages / Block Types Manager
* ACF & WordPress Meta Overview
* WordPress Post Types / Taxonomies Manager
* WordPress Options Manager
* WordPress Admin Enhancements
* WPML & Polylang Multilingual support
* ... And many more features
== 💎 Pro Highlight ==
* 20+ New ACF Fields
* 10+ ACF Fields Enhanced
* 20+ New Locations
* Payment Field with Stripe & PayPal Express
* Flexible Content Grid System
* Flexible Content Layouts Locations Rules
* Templates Manager
* Builtin Classic Editor
* Settings UI
* Screen Layouts
* Force Json Sync
* Field Visibility Settings
* Global Field Conditional Rules
* ... And many more features
== 🤟 Philosophy ==
* Seamless integration
* No extra menu, ads or notices
* Built by developers, for developers
== 🛠️ Links ==
* [Website](https://www.acf-extended.com)
* [Documentation](https://www.acf-extended.com/features)
* [Guides](https://www.acf-extended.com/guides)
* [Roadmap](https://www.acf-extended.com/roadmap)
* [GitHub](https://github.com/acf-extended/ACF-Extended)
* [Twitter](https://twitter.com/ACFExtended)
* [Twitter](https://twitter.com/hwkfr) (Personal)
* [Slack Community](https://slack.acf-extended.com)
== 🧰 Tools ==
* [FAQ](https://wordpress.org/plugins/acf-extended/#faq)
* [Support](https://wordpress.org/support/plugin/acf-extended)
* [Feature Request](https://wordpress.org/support/plugin/acf-extended)
* [Reviews](https://wordpress.org/support/plugin/acf-extended/reviews/#new-post)
* [Donation](https://ko-fi.com/acfextended)
== 📁 Field Groups ==
**[Advanced Settings](https://www.acf-extended.com/features/field-groups/advanced-settings)**
Enable advanced settings for all fields within the Field Group.
**[Auto Sync PHP](https://www.acf-extended.com/features/field-groups/autosync)**
Automatically synchronize field groups with local PHP files upon field group updates. This feature will create, include and update a local PHP file for each field group.
**[Auto Sync Json](https://www.acf-extended.com/features/field-groups/autosync)**
Control which field groups you want to synchronize with local Json files. Display warnings if the Json file has been manually deleted.
**[Categories](https://www.acf-extended.com/features/field-groups/categories)**
Spice up your field groups with a custom taxonomy and filter field groups by terms.
**[Custom Key](https://www.acf-extended.com/features/field-groups/custom-key)**
Set custom field group key. Example: `group_custom_name`.
**[Custom Meta](https://www.acf-extended.com/features/field-groups/custom-meta)**
Add custom metas (key/value) in the field group administration.
**[Display Title](https://www.acf-extended.com/features/field-groups/display-title)**
Display an alternative field group title in post edition screen.
**[Field Group UI](https://www.acf-extended.com/features/field-groups/field-group-ui)** **(PRO)**
Enable enhancements to the Field Group UI for a better user experience.
**[Force Sync](https://www.acf-extended.com/features/field-groups/force-sync)** **(PRO)**
Always keep Json files synchronized with the Field Groups in the database.
**[Hide on Screen](https://www.acf-extended.com/features/field-groups/hide-on-screen)** **(FREE / PRO)**
Hide Gutenberg Block Editor and 10+ more items to hide in the field group settings.
**[Instructions Placement](https://www.acf-extended.com/features/field-groups/instruction-placement)**
New instruction placements let you display field description "above the fields" or in a "tooltip".
**[Location: Advanced Post](https://www.acf-extended.com/features/field-groups/locations/advanced-post)** **(PRO)**
A collection of multiple new Field Groups locations allowing developers to target posts with specific conditions (Post author, date, slug, path etc...).
**[Location: Advanced Menu Item](https://www.acf-extended.com/features/field-groups/locations/advanced-menu-item)** **(PRO)**
Target specific "Menu Item Depth" or "Menu Item Type" from the Field Groups Locations rules.
**[Location: Advanced Taxonomy Term](https://www.acf-extended.com/features/field-groups/locations/advanced-taxonomy)** **(PRO)**
A collection of multiple new Field Groups locations allowing developers to target taxonomy and terms with specific conditions (Term name, parent, slug etc...).
**[Location: All post types](https://www.acf-extended.com/features/field-groups/locations/all-post-types)**
Display field groups on all post types edition screen.
**[Location: Attachment List](https://www.acf-extended.com/features/field-groups/locations/attachment-list)** **(PRO)**
Display field group on attachment admin list screen.
**[Location: Dashboard Widgets](https://www.acf-extended.com/features/field-groups/locations/dashboard)** **(PRO)**
Display field groups and update ACF Fields from the WP Dashboard.
**[Location: Field Value](https://www.acf-extended.com/features/field-groups/locations/field-value)** **(PRO)**
Display a field group based on the field value of an another field group.
**[Location: Post type Archive](https://www.acf-extended.com/features/field-groups/locations/post-type-archive)**
Add an Archive Option Page under the Post Type admin menu. Display and save any field groups within it.
**[Location: Post type List](https://www.acf-extended.com/features/field-groups/locations/post-type-list)**
Display field group on post types admin list screen.
**[Location: Taxonomy List](https://www.acf-extended.com/features/field-groups/locations/taxonomy-list)**
Display field group on taxonomies admin list screen.
**[Location: User List](https://www.acf-extended.com/features/field-groups/locations/user-list)** **(PRO)**
Display field group on user admin list screen.
**[Location: Woocommerce](https://www.acf-extended.com/features/field-groups/locations/woocommerce)** **(PRO)**
Display field groups on Woocommerce pages.
**[Location: WP Settings](https://www.acf-extended.com/features/field-groups/locations/wp-settings)** **(PRO)**
Display field groups on WP Settings pages: General, Writing, Reading, Discussion, Media and Permalinks.
**[Local Field Groups](https://www.acf-extended.com/features/)**
Display local field groups that are loaded by ACF, but not available in the ACF field group administration. Example: Field groups that are registered in the `functions.php` file, but not in the ACF UI.
**[Note](https://www.acf-extended.com/features/field-groups/note)**
Add a personal note in the field group administration. Only visible to administrators.
**[Permissions](https://www.acf-extended.com/features/field-groups/permissions)**
Add permission layer to field groups. Choose which roles can view & edit field groups in the post edition screen.
**[Raw Data](https://www.acf-extended.com/features/field-groups/raw-data)**
Display raw field group data in a modal to check your configuration & settings.
== ⚙️ Fields Settings ==
**[Advanced Settings](https://www.acf-extended.com/features/field-settings/field-advanced-settings)**
A more sophisticated field settings based on specified location (administration/front-end). Example: Field is required only in front-end.
**[Advanced Validation](https://www.acf-extended.com/features/field-settings/advanced-validation)**
A more sophisticated validation conditions (AND/OR) with custom error messages based on specified location (administration/front-end).
**[Self/Multi/Bidirectional fields](https://www.acf-extended.com/features/field-settings/bidirectional-fields)**
An advanced bidirectional setting (also called post-to-post) is available for the following fields: Relationship, Post object, User & Taxonomy terms. Fields will work bidirectionally and automatically update each others. Works in groups & clones.
**[Field Visibility](https://www.acf-extended.com/features/field-settings/field-visibility)** **(PRO)**
Get quick access to "Field Visibility", "Label Visibility", "Instructions Visibility" and "Required Setting" for the following screens: "Everywhere", "Front-end" and "Administration".
**[Global Condition](https://www.acf-extended.com/features/field-settings/global-condition)** **(PRO)**
Enable Global Conditional Logic for a specific field, which can then be used in an another Field Group as condition, both as Field Group Condition and Field Condition.
**[Instruction Placement](https://www.acf-extended.com/features/field-settings/field-instruction-placement)** **(PRO)**
Override a specific field instruction placement to any position: Below labels, below fields, above fields or tooltip.
**[Instruction Read More](https://www.acf-extended.com/features/field-settings/instruction-read-more)** **(PRO)**
Allow to expand instructions text with a "Read More" link. This feature is useful for lengthy instructions text.
**[Min/Max](https://www.acf-extended.com/features/field-settings/min-max)** **(PRO)**
Minimum & maximum items is a global field setting that let you define a specific number of items that can or should be added by the user.
**[Permissions](https://www.acf-extended.com/features/field-settings/field-permissions)**
Add permission layer to fields. Choose which roles can view & edit fields in the post edition screen. (can be combined with field groups permissions).
**[Raw data](https://www.acf-extended.com/features/field-settings/field-raw-data)**
Display raw field data in a modal to check your configuration & settings.
**[Required Message](https://www.acf-extended.com/features/field-settings/required-message)** **(PRO)**
This setting allow developers to define a custom error message within the field settings for a more intuitive user experience.
== 🏷️ Fields ==
**[Advanced Link](https://www.acf-extended.com/features/fields/advanced-link)**
Display a modern Link Selection in a modal. Posts, Post Types Archives & terms selection can be filtered in the field administration.
**[Block Editor](https://www.acf-extended.com/features/fields/block-editor)** **(PRO)**
Display an isolated Block Editor field on admin screen (with Classic Editor enabled) or on the front-end.
**[Block Types](https://www.acf-extended.com/features/fields/block-types)** **(PRO)**
Display an ACF Block Types selector as radio, checkbox or select field type.
**[Button](https://www.acf-extended.com/features/fields/button)**
Display a custom submit or button. Built-in ajax call setting. Usage example available in the field administration.
**[Checkbox](https://www.acf-extended.com/features/fields/checkbox)** **(FREE / PRO)**
Define grouped choices values using `## Title` markup in the field's choices.
**[Clone](https://www.acf-extended.com/features/fields/clone)**
Allow users to edit clone fields in a modal. Choose the edit button text, display close button and the modal size.
**[Code Editor](https://www.acf-extended.com/features/fields/code-editor)**
Edit code using the native WP Core Codemirror library. Default languages: Text/HTML, Javascript, CSS, PHP mixed/plain.
**[Color Picker](https://www.acf-extended.com/features/fields/color-picker)** **(PRO)**
A collection of advanced settings for the ACF Color Picker. The field can now be displayed as a palette, custom colors can be predefined and RGBA mode is supported.
**[Columns](https://www.acf-extended.com/features/fields/columns)** **(FREE / PRO)**
Organize and re-arrange your fields using columns and line-breaks. The field acts like the ACF Accordion/Tab field and allow you to create virtually grouped fields which will be displayed inside columns.
**[Countries](https://www.acf-extended.com/features/fields/countries)** **(PRO)**
Display a Country selector as radio, checkbox or select field type.
**[Currencies](https://www.acf-extended.com/features/fields/currencies)** **(PRO)**
Display a Currency selector as radio, checkbox or select field type.
**[Date/Timepicker](https://www.acf-extended.com/features/fields/datepicker)** **(FREE / PRO)**
Display a modern UI of the ACF Datepicker field. CSS and icons have been enhanced to fit WordPress admin UI and colors.
**[Date Range Picker](https://www.acf-extended.com/features/fields/date-range-picker)** **(PRO)**
Display a Date Range Picker. The field support a wide range of customization, such as: Placeholder, Default dates, Range Restriction, Date restriction, No weekends etc.
**[Dynamic Render](https://www.acf-extended.com/features/fields/dynamic-render)**
Display custom HTML/PHP content using a simple named hook.
**[Field Groups](https://www.acf-extended.com/features/fields/field-groups-selector)** **(PRO)**
Display an ACF Field Groups selector as radio, checkbox or select field type.
**[Field Types](https://www.acf-extended.com/features/fields/field-types)** **(PRO)**
Display an ACF Field Types selector as radio, checkbox or select field type.
**[Fields](https://www.acf-extended.com/features/fields/fields-selector)** **(PRO)**
Display an ACF Fields selector as radio, checkbox or select field type.
**[File](https://www.acf-extended.com/features/fields/file)** **(FREE / PRO)**
Choose the uploader type, enable multi file upload and dropzone.
**[Flexible Content](https://www.acf-extended.com/features/fields/flexible-content)** **(FREE / PRO)**
Displayed an enhanced version of the native Flexible Content field. Dozens of new settings and settings were added, allowing developers to create the most advanced page builder and fully control the field's behavior.
**[Forms](https://www.acf-extended.com/features/fields/forms)**
Select any dynamic form (format: checkbox, radio or select).
**[Google Map](https://www.acf-extended.com/features/fields/google-map)** **(PRO)**
A collection of new settings added to the ACF Google Map Field that allow developers to have more control over the field behavior.
**[Google reCaptcha](https://www.acf-extended.com/features/fields/recaptcha)**
Display a reCaptcha field (compatible v2 & v3).
**[Group](https://www.acf-extended.com/features/fields/group)**
Allow users to edit group fields in a modal Choose the edit button text, display close button and the modal size
**[Hidden Input](https://www.acf-extended.com/features/fields/hidden-input)**
Display a hidden input with custom name/value
**[Image](https://www.acf-extended.com/features/fields/image)** **(FREE / PRO)**
Choose the uploader type, customize the upload folder and set the image as post featured thumbnail
**[Image Selector](https://www.acf-extended.com/features/fields/image-selector)** **(PRO)**
Display an Image Selector field.
**[Image Sizes](https://www.acf-extended.com/features/fields/image-sizes)** **(PRO)**
Display an Image Sizes selector as radio, checkbox or select field type.
**[Languages](https://www.acf-extended.com/features/fields/languages)** **(PRO)**
Display a Language selector as radio, checkbox or select field type, compatible with WPML & Polylang.
**[Menu Locations](https://www.acf-extended.com/features/fields/menu-locations)** **(PRO)**
Display a Menu Locations selector as radio, checkbox or select field type.
**[Menus](https://www.acf-extended.com/features/fields/menus)** **(PRO)**
Display a Menu selector as radio, checkbox or select field type.
**[Options Pages](https://www.acf-extended.com/features/fields/options-pages)** **(PRO)**
Display an ACF Options Pages selector as radio, checkbox or select field type.
**[Payment](https://www.acf-extended.com/features/fields/payment)** **(PRO)**
Display a Payment Field that supports with Stripe & PayPal Express gateways, working on both front-end and back-end.
**[Payment Cart](https://www.acf-extended.com/features/fields/payment-cart)** **(PRO)**
Display an optional Payment Cart to easily setup an e-commerce solution.
**[Payment Selector](https://www.acf-extended.com/features/fields/payment-selector)** **(PRO)**
Display an optional Payment Selector which let the user switch the payment gateway.
**[Phone Number](https://www.acf-extended.com/features/fields/phone-number)** **(PRO)**
Display a fully customizable international Phone Number field.
**[Post Field](https://www.acf-extended.com/features/fields/post-field)** **(PRO)**
The Post Field is a new field that allow developers to move native WordPress fields such as Post Title, Date, Status, Visibility, Permalink etc.
**[Post Formats](https://www.acf-extended.com/features/fields/post-formats)** **(PRO)**
Display a Post Format selector as radio, checkbox or select field type.
**[Post Object](https://www.acf-extended.com/features)** **(FREE / PRO)**
Allow user to enter custom value which will be saved as a new post, or enable the inline post creation/edit.
**[Post Status](https://www.acf-extended.com/features/fields/post-statuses)**
Select any post status (format: checkbox, radio or select)
**[Post Types](https://www.acf-extended.com/features/fields/post-types)**
Select any post type (format: checkbox, radio or select)
**[Radio](https://www.acf-extended.com/features/fields/radio)** **(FREE / PRO)**
Define grouped choices values using `## Title` markup in the field's choices.
**[Relationship](https://www.acf-extended.com/features/fields/relationship)** **(PRO)**
The Relationship field includes new settings allowing users to create and edit post on-the-fly from the post edit screen.
**[Repeater](https://www.acf-extended.com/features/fields/repeater)**
Add stylised to 'Add Row' button, lock rows and remove repeater's actions.
**[Select](https://www.acf-extended.com/features/fields/select)** **(FREE / PRO)**
Change the default "Select" placeholder text and Search Input placeholder and allow user to enter custom values.
**[Slug](https://www.acf-extended.com/features/fields/slug)**
A slug text input (ie: `my-text-input`).
**[Tab](https://www.acf-extended.com/features/fields/tab)** **(PRO)**
Disable the last opened tab user preference. Which means that when the user will refresh the page, it will always load the first tab.
**[Taxonomies](https://www.acf-extended.com/features/fields/taxonomies)**
Select any taxonomy (format: checkbox, radio or select)
**[Taxonomy Terms](https://www.acf-extended.com/features/fields/taxonomy-terms)**
Select any terms of any taxonomies, allow specific terms, level or childrens (format: checkbox or select). Terms can be loaded & saved for the current post (just like the native ACF Taxonomy field)
**[Templates](https://www.acf-extended.com/features/fields/templates-selector)** **(PRO)**
Display an ACF Extended Templates selector as radio, checkbox or select field type.
**[Textarea](https://www.acf-extended.com/features/fields/textarea)**
Switch font family to monospace and allow tab indent.
**[True/False](https://www.acf-extended.com/features/fields/true-false)** **(PRO)**
Five new styles have been added to the native True/False field.
**[User Roles](https://www.acf-extended.com/features/fields/user-roles)**
Select any user role (format: checkbox, radio or select)
**[WYSIWYG Editor](https://www.acf-extended.com/features/fields/wysiwyg-editor)** **(PRO)**
New settings allowing developers to have more control over the field behavior.
== 🛠️ Modules ==
**[Block Types UI](https://www.acf-extended.com/features/modules/dynamic-block-types)** **(FREE / PRO)**
The Dynamic Block Types module allows you to register and manage ACF Block Types from your WordPress admin, in ACF > Block Types menu. Pro version allows to sync Json/PHP files.
**[Classic Editor](https://www.acf-extended.com/features/modules/classic-editor)** **(PRO)**
ACF Extended is bundled with a custom merged version of the Classic Editor & Disable Gutenberg plugins.
**[Developer Mode](https://www.acf-extended.com/features/modules/developer-mode)** **(FREE / PRO)**
The Developer Mode allow you to view all Posts, Terms, Users & Options custom metadata in a readable format. This feature is very useful to check what is actually saved in any WordPress Object.
**[Forms](https://www.acf-extended.com/features/modules/dynamic-forms)** **(FREE / PRO)**
Manage Advanced ACF Forms from the WordPress administration. This module is an enhanced version of the native ACF Form feature. While all native settings can be used, Dynamic Forms adds many new settings and introduce "Actions" for a complete control over the form behavior.
**[Options Pages UI](https://www.acf-extended.com/features/modules/dynamic-options-pages)** **(FREE / PRO)**
The Dynamic Options Pages module allows you to register and manage ACF Options Pages from your WordPress admin, in ACF > Options Pages menu. Pro version allows to sync Json/PHP files.
**[Performance Mode](https://www.acf-extended.com/features/modules/performance-mode)** **(FREE / PRO)**
A unique module that allows developers to optimize database load when dealing with hundreds or thousands of metadata with two different methods: Ultra & Hybrid Engines.
**[Post Types UI](https://www.acf-extended.com/features/modules/dynamic-post-types)** **(FREE / PRO)**
The Dynamic Post Types module allows you to register and manage custom post types from your WordPress admin, in Tools > Post Types menu. Pro version allows to sync Json/PHP files.
All native post types settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc…
**[Rewrite Rules](https://www.acf-extended.com/features/modules/rewrite-rules)** **(PRO)**
Get an overview of all WordPress permalinks structures and rules. Test URLs, export rules and flush permalinks from the UI.
**[Scripts UI](https://www.acf-extended.com/features/modules/scripts)** **(PRO)**
Run custom scripts on thousands of posts. Including builtin "Orphan Meta Cleaner", "Script Launcher" and "Performance Converter" scripts.
**[Settings UI](https://www.acf-extended.com/features/modules/settings-ui)** **(FREE / PRO)**
The Settings UI allows developers to get an overview of all ACF and ACF Extended settings values from the ACF > Settings menu.
**[Taxonomies UI](https://www.acf-extended.com/features/modules/dynamic-taxonomies)** **(FREE / PRO)**
The Dynamic Taxonomies module allows you to register and manage custom taxonomies from your WordPress admin, in Tools > Taxonomies menu. Pro version allows to sync Json/PHP files.
All native taxonomies settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc…
**[Templates](https://www.acf-extended.com/features/modules/templates)** **(PRO)**
Manage default ACF values in an advanced way and sync templates with Json/PHP files.
== 🖥️ WordPress ==
**[Ajax Author Box](https://www.acf-extended.com/features/wordpress/ajax-author-box)**
The native WP Author Metabox has been replaced with an Ajax version allowing to manage thousands of users without slowing down the post administration. The new Author box also include an inline search input.
**[Enhanced UI](https://www.acf-extended.com/features/wordpress/enhanced-ui)**
The Taxonomy, User profile & Settings views have been enhanced for a more consistent administration experience, using CSS/JS only.
**[Polylang](https://www.acf-extended.com/features/wordpress/polylang)**
ACF Extended adds a new layer of compatibility for Polylang. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.
**[Screen Layouts](https://www.acf-extended.com/features/wordpress/screen-layouts)** **(PRO)**
Post Edit screens have been enhanced allowing up to 3 columns layout and multiple variations.
**[WPML](https://www.acf-extended.com/features/wordpress/wpml)**
ACF Extended adds a new layer of compatibility for WPML. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.
**[WP Options](https://www.acf-extended.com/features/wordpress/options)**
Manage WordPress Options from the Settings > Options page. Options value (strings, serialized & Json) will be displayed in a readable form. Values can be edited or deleted.
== ❤️ Early Supporters ==
* Thanks to [Brandon A.](https://twitter.com/AsmussenBrandon) for his support & tests
* Thanks to [Damien C.](https://twitter.com/DamChtlv) for his support & tests
* Thanks to [Valentin P.](https://twitter.com/Val_Pellegrin) for his support & tests
* Thanks to Damian P. for his support & tests
* Thanks to [Jaakko S.](https://twitter.com/jsaarenk) for his support & tests
* Thanks to [Renan A.](https://twitter.com/altendorfme) for his support & tests
== 🥰 Donors ==
* Thanks to RavenSays
* Thanks to Dave A.
* Thanks to Rob H.
* Thanks to Valentin P.
* Thanks to Alan A.
* Thanks to Damian C.
* Thanks to Andrew
* Thanks to Kimantis
* Thanks to Anonymous
* Thanks to Chris
* Thanks to Dennis D.
* Thanks to Cody R.
* Thanks to Jamie
* Thanks to Dave A.
* Thanks to Paul M.
* Thanks to David B.
* Thanks to Swingjac
* Thanks to Erik
* Thanks to Giancarlo P.
* Thanks to Geuer M.
== Installation ==
= Wordpress Install =
1. Install Advanced Custom Fields: Pro
2. Upload the plugin files to the `/wp-content/plugins/acf-extended/` directory, or install the plugin through the WordPress plugins screen directly.
3. Activate the plugin through the 'Plugins' screen in WordPress.
4. Everything is ready!
== Frequently Asked Questions ==
= Where can I find the documentation? =
You'll find the documentation of every features on the [official ACF Extended website](https://www.acf-extended.com/features).
= Where can I submit a bug report? =
You can file a report on the [Plugin Support Forum](https://wordpress.org/support/plugin/acf-extended/) or on the [Github Page](https://github.com/acf-extended/ACF-Extended) if you prefer.
= Where can I submit a feature request? =
You can submit a feature request on the [Plugin Support Forum](https://wordpress.org/support/plugin/acf-extended/). Feature requests are all listed on the [Official Trello Board](https://trello.com/b/QEgpU7CL/acf-extended).
= What is planned for the next update? =
The content of the upcoming patch and work in progress features are all listed on the [Official Roadmap](https://www.acf-extended.com/roadmap) (or the Trello Board).
== Screenshots ==
1. Flexible Content Preview
2. Flexible Content Modal
3. New Fields
4. Post Type List Location
5. Self/Multi/Bidirectional Fields
6. Developer Mode
7. Dynamic Post Types
8. Enhanced WordPress UI
== Changelog ==
= 0.9.1 =
**ACF Extended Pro 0.9.1:**
* Field: Flexible Content - Added "Dynamic Preview Iframe" feature
* Field: Flexible Content - Added "Dynamic Preview Responsive" feature
* Field: Flexible Content - "Dynamic Preview Iframe" render previews in isolated iframes
* Field: Flexible Content - "Dynamic Preview Responsive" allows to switch container preview size
* Field: Address - Cleaned unused argument
* Field: Google Map - Added `acfe_render_google_map()` compatibility with sub fields
* Field: Google Map - Enhanced `acfe_render_google_map()` compatibility with Dynamic Preview
* Field: Radio - Fixed "Custom Choice" render
* Field: WYSIWYG - Enhanced `source_code` modal reset stylesheet
* Field Group Location: Renamed "Dashboard" to "WP Dashboard" for consistency
* Module: Forms - Ajax submission now redraw form on submission
**ACF Extended Basic 0.9.1:**
* Field: Advanced Link - Enhanced malformed values handling
* Field: Flexible Content - Added `acfe/flexible/toggle_hide` filter to control row visibility
* Field: reCaptcha - Enhanced error handling when using incorrect API key
* Field: Taxonomy Terms - Fixed ajax nonce verification when field is cloned
* Module: Forms - Enhanced File/Image/Gallery "Uploaded To" logic using related Form Action
= 0.9.0.9 =
**ACF Extended Pro 0.9.0.9:**
* Field: Address - Added new Address Field
* Field: Address - Allows to enter/search an address with autocomplete (Google Places API)
* Field: Color Picker - Added "Return Format: Slug" setting
* Field: Color Picker - Added "Slug" & "RGBA Array" into the "Color Array" return format
* Field: Color Picker - Added compatibility with CSS variables for "Palette" display
* Field: Color Picker - Added `editor-gradient-presets` theme support
* Field: Date Range Picker - Enhanced compatibility with custom hooks
* Field: Date Range Picker - Allowed to clear to input manually when "Allow null" is enabled
* Field: Date Range Picker - Added "x" icon to clear the input when "Allow null" is enabled
* Field: Date Range Picker - Added "Prepend" & "Append" settings
* Field: Google Map - Added `acfe_render_google_map()` helper to display a map on front-end
* Field: Google Map - Fixed ACF UI settings sync when interacting with the Map Preview
**ACF Extended Basic 0.9.0.9:**
* Field: Flexible Content - Fixed `get_row()` & `get_row_layout()` usage in WP Admin preview
* Field: Taxonomy Terms - Fixed ajax nonce compatibility with ACF 6.3.10
* Field Group: Small UI/CSS tweaks
= 0.9.0.8 =
**ACF Extended Pro 0.9.0.8:**
* Field: Phone Number - Fixed data when querying the "Lightweight Phonenumber Library"
* Field: Image Selector - Fixed images with parameters usage when using "Multiple Select"
* Field: Image Selector - Enhanced file extension detection when using images with parameters
* Field: Image Selector - Reworked image rendering using proper `<img />` with `object-fit`
* Module: Performance - Hybrid - Restoring a revision doesn't append meta references anymore
**ACF Extended Basic 0.9.0.8:**
* Field: Flexible Content - Dynamic Render - Filters can now change `wp_enqueue_style()` args
* Field: Flexible Content - Dynamic Render - Filters can now change `wp_enqueue_script()` args
* Field: Flexible Content - Dynamic Render - Added `get_row_index()` usage compatibility
* Field: Flexible Content - Dynamic Render - Fixed `WP_Query` loop usage with `get_field()`
* Field: Icon Picker - Fixed "Media Library" image preview
* Module: Forms - Allowed usage of fields using the same name as fields in the back-end
* Module: Forms - Fixed field settings nonce verification compatibility with ACF 6.3.10
* Module: Performance - Ultra - Revisions are now supported when allowing specific post types
* Module: Performance - Ultra - Revisions are now compatible with "Save as individual meta"
* Module: Performance - Ultra - Enhanced "Revision Comparison" view with more readable data
* Module: Performance - Ultra - Enhanced `acf` meta detection when the value is malformed
* Field Group: Location - Fixed warning when using third party location that is later uninstalled
* General: Enhanced `acfe_include()` helper
* General: Fixed potentital PHP 8 warning with `acfe_starts_with()` helper
* General: Updated WP 6.7 metabox order handle positioning
* General: Bump WP version up to 6.7
= 0.9.0.7 =
**ACF Extended Pro 0.9.0.7:**
* Field: Block Editor - Added WP 6.6 compatibility
**ACF Extended Basic 0.9.0.7:**
* General: Updated WP 6.6 metabox order handle positioning
= 0.9.0.6 =
**ACF Extended Pro 0.9.0.6:**
* Field: Flexible Content - Grid - Added filter to rename columns (1/12, 2/12, 3/12…)
* Field: Google Map - Added small UI settings tweaks
* Field: Payment - Removed Polyfill library dependency
* Field Settings: Global Condition - Fixed Global Field Condition operators with ACF 6.3
* Field Settings: Instructions Tooltip - Fixed tooltip always visible when switching tab
* Module: Force Sync - Fixed sync from Dashboard with Flexible Content Toggle Layout
* Module: Force Sync - Enhanced Force Delete compatibility with Json and PHP sync
**ACF Extended Basic 0.9.0.6:**
* Field: Flexible Content - Added missing "Copy/Toggle Layout" localized strings
* Field: Flexible Content - Added JS hook `acfe/flexible/preview/layout=my-layout` variation
* Field: Flexible Content - Enhanced ACF UI CSS settings with "Tabs Hidden"
* Field: Forms - Fixed potential warning when switching from Checkbox to Radio
* Module: Form - Added safe guard logic for ACF fields in "Load" actions
* Module: Form - Fixed outsourced Clone Seamless Fields values
* Module: Form - Fixed Template Tags warning with PHP 8
* Module: Form - User - Builtin Validation now check if email is already used
* Module: Form - User - Builtin Validation now check the login during the insert
* Module: Form - User - Builtin Validation now check the `illegal_user_logins` wp filter
* Module: Form - User - Updating user login now automatically re-log the user
* General: Fixed Ajax Nonce verification compatibility with ACF 6.3.2
= 0.9.0.5 =
**ACF Extended Pro 0.9.0.5:**
* Field Group Location: Added "Dashboard > Widget" Location
* Field Group Location: Dashboard Widget allows to update fields from the WP Dashboard
* Field Group Location: Added "Woocommerce" Cart, Checkout, Account, Shop & Terms
* Modules: AutoSync - `acfe/php` & `acfe/json` settings control the AutoSync metabox visbility
**ACF Extended Basic 0.9.0.5:**
* Module: Form - Added ability to load form with ajax
* Module: Form - Added "Validation > Global Error" settings to customize error messages
* Module: Form - Added Instruction Placement "Tooltip" & "Above Field" options
* Module: Form - Cleaned front-end forms HTML markup
* Module: Form - Enhanced front-end forms JS logic
* Module: Form - Enhanced compatibility for multiple forms on the same page
* Module: Form - Enhanced `{field:gallery}` formatted value
* Module: Form - Enhanced "Validation > Grouped Errors" to use the "Errors Class" setting
* Module: Form - Fixed missing `l10n` acf setting compatibility for export
* Module: Form - Fixed Shortcode usage in Success Message
* Module: Form - Fixed slashed text in Success Message template tags
* Module: Form - Post - Fixed Image/File/Gallery "Uploaded to" filter in Media Modal
* Module: Form - Post - Fixed Gallery attachement not being connected to created/updated post
* Module: Form - Post - Fixed Shortcode usage in Post Content
* Module: Form - Post - Fixed current post not displaying new data if updated without redirect
* Module: Form - Email - Fixed Shortcode usage in e-mail content/html
* Module: Form - User - "Log In" action doesn't require to redirect on success anymore
* Module: Form - Added `acfe.renderForm()` & `acfe.renderFormAjax()` JS helpers
* Module: Form - Added `acfe_enqueue_form()` PHP helper
* Module: Form - Added `acfe_get_form_action()` allowing dot notation & default arguments
* Module: Form - Added `acfe/form/submit_success_data` PHP hook to pass data to the JS
* Module: Form - Added `acfe/form/validation_begin` JS hook to target front-end validation
* Module: Form - Added `acfe/form/validation_failure` JS hook to target front-end validation
* Module: Form - Added `acfe/form/validation_success` JS hook to target front-end validation
* Module: Form - Added `acfe/form/validation_complete` JS hook to target front-end validation
* Field Groups: Advanced Settings - Added ability to assign field's sub array settings using dot notation
* Field Groups: AutoSync - Added ability to remove existing Json/PHP sync from the Field Group UI
* Field Groups: AutoSync - `acfe/php` & `acfe/json` settings now control the sync metabox visbility
* Field Groups: AutoSync - Added `acfe/settings/should_delete_php` hook to control the file removal
* Field Groups: AutoSync - Added `acfe/settings/should_delete_json` hook to control the file removal
* Field Groups: AutoSync - Fixed Json files not being correctly deleted when Field Group use a custom path
* General: Modal - Renamed `new_modal` js hook into `acfe/new_modal` for consistency
* General: Enhanced `acfe_get_post_id()` helper
= 0.9.0.4 =
**ACF Extended Pro 0.9.0.4:**
* Modules: Added "Bulk Sync Changes from DB/JSON/PHP" feature
* Field: Block Editor - Fixed field when copy/pasted within a Flexible Content
* Field: Color Picker - Fixed "Palette" tooltip title being duplicated on change
**ACF Extended Basic 0.9.0.4:**
* Module: Form - Fixed `acfe/form/submit_post_args` not passing new `post_id` to fields if changed
* Module: Form - Fixed `{field:field_6635cd66ba409}` not working with group subfields
* Module: Form - Fixed Post Thumbnail reset when a Form has no post thumbnail
* Field: Flexible Content - Fixed "Settings Modal" subfields loop within a sub flexible content
* Field: Flexible Content - Fixed "Copy/Paste Layout" not working on non-HTTPS environments
* Field: Taxonomy Terms - Enhanced front-end forms compatibility
* Field: Taxonomy Terms - Improved `{field:taxonomy_terms}` tag format
* Field: Taxonomy - Enhanced front-end forms compatibility
= 0.9.0.3 =
**ACF Extended Pro 0.9.0.3:**
* Module: Form - Added Ajax Submission feature
* Module: Form - Ajax Submission can be enabled in the Form "Settings" tab
**ACF Extended Basic 0.9.0.3:**
* Module: Form - Added "Scroll to message" setting in the "Success" tab
* Module: Form - Enhanced `acfe/form/load_form` strategy
* Module: Form - Enhanced `map` argument to allow override loaded values from Actions
* Module: Form - Enhanced `{render:field_name}` to first search within mapped field groups
* Module: Form - Renamed `acfe/form/success_form` to `acfe/form/render_success` for consistency
* Module: Form - Added `acfe/form/submit_success` as very early hook, in page headers
* Module: Form - Fixed Select field "Custom Value" setting compatibility with forms
* Module: Form - Fixed duplicate rows in `{field:repeater}` Template Tag
* Module: Form - Added missing `wpautop()` on Success Message
* Module: Form - Minor CSS compatibility tweaks for mac
* Module: Form - User Action - Fixed the "Roles" load value as raw array
* Module: AutoSync - Fixed PHP files not being correctly deleted when Field Group was removed using a custom path
* Field Groups - Local - Fixed missing "Local" tab when there are only AutoSync PHP files
* Field Groups: Minor CSS tweaks
* Field: reCaptcha - Reworked & enhanced code logic
* Settings UI: Fixed missing reCaptcha ACF settings in the "Fields" tab
= 0.9.0.2 =
**ACF Extended Pro 0.9.0.2:**
* Module: Global Field Location - Fixed Field Group Location escaping issues
* Field Groups: Advanced Locations - Fixed Field Group Location escaping issues
* Field: Payment - Fixed `{field:payment}` Template Tag output
* Field: Flexible Content - Grid - Added translatable strings
* General: Country/Currency/Language - Added PHP filters to allow customization
**ACF Extended Basic 0.9.0.2:**
* Module: Form - Enhanced load/validate/submit/render hooks strategy
* Module: Form - Fixed instruction placement undefined key warning
* Module: Form - "Current Post" Target/Source now correctly use the WP Query loop `post_id`
* Module: Form - Enhanced multiple forms on single page support
* Module: Form - Added missing `wpautop()` on email content when using "Content Editor"
* Module: Form - Fixed Taxonomy "Load Terms" & Image "Featured Thumbnail" compatibility
* Fields Condition - Enhanced `acf.newCondition` closer to native ACF logic
* General: Updated French translation
= 0.9.0.1 =
* Module: Forms - Fixed upgrade issues when using distant Auto Update
* Module: Forms - Added safeguard logic when third party plugin enqueue selectWoo
* Field: Flexible Content - Added Navigator Clipboard API to allow copy very large layout data
= 0.9 =
**ACF Extended Pro 0.9:**
* Module: Forms - Added Json & PHP Sync feature
* Module: Forms - PHP sync files are saved/loaded from `/my-theme/acfe-php/forms`
* Module: Forms - Json sync files are saved/loaded from `/my-theme/acf-json/forms`
* Modules: "View" link in posts list view is now removed when the item disabled
* Field: Block Editor - Fixed Woocommerce `get_current_screen()` usage on front-end
* Field: Block Editor - Fixed crash when used within a Flexible Content with Woocommerce
* Field: Block Editor - Enhanced Woocommerce compatibility
* Field: Block Editor - Fixed blocks arguments being stripped when submitted on front-end
* Field: Block Editor - Added WP 6.5 compatibility
* Field: Flexible Content - Grid - Fixed "No Wrap" setting not using "Default size: 12" when adding a layout
* Field: Image Sizes - Fixed field not using the correct "Display Format" setting
**ACF Extended Basic 0.9:**
* Module: Forms - Updated module to v3
* Module: Forms - Ability to register/render forms using PHP code only
* Module: Forms - Updated Template Tags logic with a new API, allowing developers to create their own tag
* Module: Forms - New Template Tags: `{render}`, `{get_post}`, `{get_term}`, `{get_user}` & `{date}`
* Module: Forms - Ability to use Tags in Tags. Ie: `{get_field:my_field:{action:post:ID}:false}`
* Module: Forms - Ability to render submit button with `{render:submit}` anywhere in the form
* Module: Forms - ACF Group subfields can now be saved/loaded individually in Forms Actions UI
* Module: Forms - New Email Action settings: "Content Editor/Raw HTML Editor" switch
* Module: Forms - New Post Action settings: "Post Date/Schedule", "Post Thumbnail" & "Append Post terms"
* Module: Forms - New User Action settings: "Built-in Validation" & "Log user once created"
* Module: Forms - Reworked form arguments for better readability and usability
* Module: Forms - All hooks have been deprecated and renamed. New hooks are simplified and provide more context
* Module: Forms - Added `acfe/modules/forms/top_level` setting to set the "Forms" admin menu as top level
* Module: Performance Mode - Deprecated `acfe_is_single_meta_enabled()` now allow generic call (without id)
* Module: Added safeguard logic to double-check `WP_Post` object in `add_meta_boxes`
* Field: Advanced Link - Fixed URL value in Flexible Content Preview Mode
* Field: Flexible Content - Toggle Layout - Enhanced CSS effect to allow fields edit
* Field: Forms - Field now store forms names as value instead of IDs, for portability
* Field: WYSIWYG - Fixed editor being delayed inside a Flexible Content > Sub Repeater
* Field Settings: Enhanced escaping logic in the "Data" modal
* Field Settings: Enhanced "Permissions" setting to allow new lines
* Field Groups: Local - "Sync Back to DB" feature now correctly ignore Inline Hooks
* Settings UI: Enhanced array settings values render
* General: Fixed ACF postboxes setting icon alignment in WP 6.5
* General: Bump WP version up to 6.5
= 0.8.9.5 =
**ACF Extended Pro 0.8.9.5:**
* Field: Block Editor - Added WP 6.4 compatibility
* Field: Block Editor - Enhanced compatibility with custom blocks
* Field: Block Editor - Fixed Media Upload not working in front-end form
* Field: Block Editor - Fixed shortcodes not applied with `get_field()`
* Field: Block Editor - Fixed Embed Block preview height
* Field: Block Editor - Fixed "Allowed Block Types" setting not working in WP 6.3
* Field: Block Editor - Fixed Inserter Block Preview popup position
* Field: Payment - Enhanced Conditional logic & Tab logic compatibility
* Field: Payment - Fixed PayPal Checkout button being disabled when form has no submit button
* Field: Payment - Added "Paypal Checkout" button text setting
* Field: Payment Cart - Added quotes compatibility in Items name
* Field: Phone Number - Updated Intl Tel Input library and Utilities with latest area codes
**ACF Extended Basic 0.8.9.5:**
* Field: Google reCaptcha v3 - Added token refresh logic
* Module: Developer Mode - Enhanced handle of incomplete class in meta values
* Module: Options UI - Enhanced handle of incomplete class in options values
* Module: Performance Ultra - Fixed slash values in WP Preview & WP Revisions
* General: Bump WP version up to 6.4
* General: Updated french translation
* General: Enhanced internal tools
= 0.8.9.4 =
**ACF Extended Pro 0.8.9.4:**
* Field: Block Editor - Fixed WP 6.3 compatibility
* Field: Block Editor - Enhanced WP 6.0 / 6.1 / 6.2 compatibility
* Field: Block Editor - Fixed duplicated field when using "Duplicate" action with a Flexible Content/Repeater
* Field: Color Picker - Fixed Theme Json Resolver deprecated notice since WP 6.2
* Field: Payment - Fixed PayPal credentials field settings width for better usability
* Field: Phone Number - Updated Libphonenumber PHP Addon to latest 8.13.21 version
* Field: Phone Number - Fixed Libphonenumber PHP Addon deprecated notice
* Module: Performance - Added auto upgrade for `single_meta` into `performance ultra` when using Settings UI
* Core: Fixed PHP 8 deprecated notice on ACF/ACFE Updates admin page
**ACF Extended Basic 0.8.9.4:**
* Module: Form - Fixed PHP 8 deprecated notice when creating a new form
* Module: Form - Fixed escaping in `[acfe_form]` attributes shortcode
* Module: Performance - Removed unnecessary "Save as individual meta" field setting when module is disabled
* Compatibility: ACF 6.2 - Added sidebar column in the new ACF Options Pages UI
* Compatibility: Profile Builder - Fixed PHP notice in settings page
* Compatibility: Query Monitor - Updated internal trigger notice function to correctly register as "Doing it wrong"
* Core: Updated Readme
= 0.8.9.3 =
**ACF Extended Pro 0.8.9.3:**
* Module: Performance - Added "Hybrid" Engine
* Module: Performance - Hybrid Engine divides post meta per 2 while being compatible with search plugins & `WP_Query`
* Module: Scripts - Fixed submit button not being disabled on start
* Module: Template - Template Location can now be used in middle of other locations
* Field: Block Editor - Force array when empty "allow blocks"
* Field: Color Picker - Fixed default black & white color picker on "Palette Display"
* Field: Flexible Content - Grid - Fixed resizable area when column has only "auto" size
* Field: Google Map - Fixed PHP warning when importing field with a "default value"
* Field: Phone Number - Fixed JS initialization in repeater/flexible content on Gutenberg screen
* Field: Post Field - Fixed UI empty space when using Title + Permalink
* Field: Post Field - Fixed "Add Title" placeholder CSS glitch on new post creation when using Title
* Field: Post Field - Added compatibility with Bricks for the Content field
* Global Condition: Removed `acfe_field_group_condition` from fields settings when not needed
**ACF Extended Basic 0.8.9.3:**
* Module: Performance Mode - Added module
* Module: Performance Mode - Renamed "Single Meta" to "Ultra" Engine
* Module: Performance Mode - Added Modes: "Test Drive", "Production" & "Rollback"
* Module: Performance Mode - Added metabox allowing to switch Mode on-demand. Displayed when Developer Mode is enabled
* Module: Performance Mode - Deprecated `acfe/modules/single_meta` setting in favor of `acfe/modules/performance`
* Module: Performance Mode - Deprecated `acfe/modules/single_meta/post_types` hook in favor of `acfe/modules/performance/config`
* Module: Performance Mode - Deprecated `acfe/modules/single_meta/taxonomies` hook in favor of `acfe/modules/performance/config`
* Module: Performance Mode - Deprecated `acfe/modules/single_meta/users` hook in favor of `acfe/modules/performance/config`
* Module: Performance Mode - Deprecated `acfe/modules/single_meta/options` hook in favor of `acfe/modules/performance/config`
* Module: Dev Mode - Fixed Dev Metabox disappearing on Page Template change
* Module: Form - Fixed PHP 8 deprecated notice
* Module: Post Type - Fixed forced 2 minimum `supports` setting
* Field: Advanced Link - Forced empty value when saved as empty
* Field: Flexible Content - Fixed Layouts Categories order to ASC
* Field: Taxonomy Terms - Added REST API return schema array|false|null
* Compatibility: Fixed tooltip instruction placement being wrongly translated
* Compatibility: Added ACFML 2.0.2 compatibility fix with PHP AutoSync and `l10n_textdomain`
* Compatibility: Added ACF 6.1 compatibility fixes
= 0.8.9.2 =
**ACF Extended Pro 0.8.9.2:**
* Module: Dev Mode - Added "Edit" action to edit raw metadata on the fly
* Field: Color Picker - Custom colors are now normalized to enhance compatibility with Iris
* Field: Color Picker - Color gradient is now displayed by default instead of the black & white gradient
* Field: Image - Added "Upload Folder" setting to customize upload path
**ACF Extended Basic 0.8.9.2:**
* Field: Code Editor - Fixed `return_format` throwing an error on newly created/modified Code Editor
* Field: Flexible Content - Dynamic Render - Removed unnecessary HTML comment with layout name
* Field: Flexible Content - Copy/Paste - Enhanced prompt instructions
* General: Updated Translations
= 0.8.9.1 =
**ACF Extended Pro 0.8.9.1:**
* Field: Date Range Picker - Added string value fallback in `format_value()`
* Field: Menu Locations - Added "Name", "Label" & "Both (Array)" Return Format
* Field: Options Pages - Fixed potential warning when "Allowed Options Pages" setting was empty
* Field Group: Global Conditional Logic - Added <, <=, >, >= Field Group Locations Operators
* Module: Rewrite Rules - Enhanced invalid regex rule fallback
* Module: Scripts - Script Launcher - Added `capability` parameter
* Module: Scripts - Script Launcher - Enhanced `executions` argument to allow `false/true/[number]`
* Module: Scripts - Script Launcher - Removed unnecessary `$index` from hooks arguments
* Module: Template - Fixed potential warning when adding a Local Field Group without `location`
* Module: Template - Fixed "After Title" Field Group position which could break saving
* Module: Template - Fixed "Required" setting when using DB Field Groups
* Module: Template - Fixed Clone "Seamless" values prefix
* General: Fixed Currencies returned in Languages queries
**ACF Extended Basic 0.8.9.1:**
* Field: Advanced Link - Formatted value now correctly return an empty value when needed
* Field: Advanced Link - Fixed an issue with custom sub fields when `key` argument was missing
* Field: Code Editor - Added `nl2br()` "Return Format" setting
* Field Groups: Added `acfe/default_field_group` filter to define default Field Group configuration
* Field Groups: ACF 6.0 - Fixed Field Groups tabs CSS when there are many categories
* Field Settings: Bidirectional - Added control to avoid updating values when prevewing changes
* Module: Block Types - Fixed an edge case where an error could be thrown when editing a post
* Module: Post Types - Admin Archive - Added `acfe/validate_post_type_archive` hook
* Module: Post Types - Admin Archive - Deprecated `acfe/post_type_archive_capability` hook
* Module: Post Types - Admin Archive - Added `show_in_menu` custom page compatibility
* Module: Post Types - Admin Archive - Added Post Type `post` "Edit Archive" adminbar compatibility
* Module: Settings - Fixed warning when using an old ACF version which doesn't handle newer ACF settings
* Modules: Fixed "Enter" keypress breaking the creating of new item
* Modules: Enhanced 0.8.9 module upgrade to use `init` action
* General: Replaced `acf_esc_attrs()` (ACF 5.8.1) usage with `acf_esc_atts()` (ACF 5.8) to meet requirements
* General: Updated Readme
= 0.8.9 =
**ACF Extended Pro 0.8.9:**
* Field: Block Editor - Added field
* Field: Payment - Fixed ACF 6.0.x settings instructions
* Modules: Added PHP/Json AutoSync feature
* Modules: Added "Local" & "Sync Available" views
* Modules: Added DB <> PHP <> Json triangular difference comparison
* Module: Block Types - PHP sync files are saved/loaded from `/my-theme/acfe-php/block-types`
* Module: Block Types - Json sync files are saved/loaded from `/my-theme/acf-json/block-types`
* Module: Options Pages - PHP sync files are saved/loaded from `/my-theme/acfe-php/options-pages`
* Module: Options Pages - Json sync files are saved/loaded from `/my-theme/acf-json/options-pages`
* Module: Post Types - PHP sync files are saved/loaded from `/my-theme/acfe-php/post-types`
* Module: Post Types - Json sync files are saved/loaded from `/my-theme/acf-json/post-types`
* Module: Taxonomies - PHP sync files are saved/loaded from `/my-theme/acfe-php/taxonomies`
* Module: Taxonomies - Json sync files are saved/loaded from `/my-theme/acf-json/taxonomies`
* Module: Templates - PHP sync files are saved/loaded from `/my-theme/acfe-php/templates`
* Module: Templates - Json sync files are saved/loaded from `/my-theme/acf-json/templates`
* Module: Templates - Deprecated `acfe_add_local_template()` in favor of `acfe_register_template()`
* Module: Settings - Fixed `l10n_textdomain` setting as text input
**ACF Extended Basic 0.8.9:**
* Field: Advanced Link - Added value type control during `update_value` to enhance compatibility
* Module: Block Types - Added "Align Text", "Align Content", "Full Height", "Align Matrix" settings
* Module: Enhanced UI - Fixed WP 6.1 Attachment "Alt" field missing
* Module: Post Types - Added "Meta Key" and "Meta Type" orderby settings in Archive and Admin query
* Module: Post Types - Added "Enter Title" setting in Labels
* Module: Post Types - WP Updated Messages now use Labels with Classic Editor
* Module: Taxonomies - Added "Meta Key" and "Meta Type" orderby settings in Single and Admin query
* General: Fixed potential Block Type JS error on layout change
* General: Added ACF 6.0.x Select2 single select CSS fix
* General: Introduced Module v3
* General: Reworked Upgrades logic
= 0.8.8.11 =
**ACF Extended Pro 0.8.8.11:**
* Field: Date/Time Picker - Fixed instructions placement in ACF 6.0.x
* Field: Google Map - Added `is_array()` control in `format_value()`
* Field: Payment - Added initialization on `ready` to avoid too early JS init
* Module: Scripts - Bumped "Clean Orphan Meta" script version to 1.1
* Module: Scripts - Added "Script Launcher" to easily launch scripts using hooks
* Module: Settings - Added `modules/scripts/demo` setting
* General: ACF Updates screen has been uniformized accross 5.10.x to ACF 6.0.x versions
**ACF Extended Basic 0.8.8.11:**
* Field: Advanced Link - Reworked code & unified unformatted value
* Field: Clone - Fixed Seamless Style CSS in `acf-table`
* Field: Columns - Fixed Columns render in Repeater when user sort rows
* Field: Flexible Content - Added check in `acfe/load_fields` to avoid potential PHP warning with third party plugins
* Field: Flexible Content - Fixed "Added Layout" scroll animation
* Field: Flexible Content - Fixed Dynamic Preview Ajax when inside ACF Ajax Screen Check
* Field: Group - Fixed Seamless Style CSS in `acf-table`
* Field: Post Object - Fixed older ACF version < 5.10 Select2 escape
* Field: Tab - Fixed last opened tab preference on page refresh
* Field: Taxonomy Terms - Fixed "Level" ajax setting not working correctly in ACF 6.0.x
* Field: Taxonomy Terms - Enhanced Load Terms/Save Terms settings logic to avoid call on front-end
* Field Group: Fixed Flexible Content "Duplicate Layout" sub fields moved to original layout
* Field Settings: Bidirectional - Fixed potential php warning when deleting related field groups
* Fields: Added `acf_translate()` in `acf/translate_field/type=field_type` for all field types
* Module: Dev Mode - "Bulk actions" is correctly hidden when metabox are cleared
* Module: Enhanced UI - Fixed Tabs "Align Left" placement on User Edit Screen
* Module: Form - Fixed "User Action" uploaded files so it can be used in a later action
* Module: Form - Added "User Action" Target control before processing builtin User Validation
* Module: Form - Added `acfe/form/submit/post_append_terms` filter to change the `wp_set_object_terms` append
* Module: Settings - Added `rest_api_enabled` `rest_api_format` `rest_api_embed_links` `preload_blocks` `enable_shortcode` settings
* General: Fixed various ACF 6.0.x CSS
* General: Added multiple plugin activation warning messages
* General: Added select2 hooks controls to avoid initialize without `field` instance
* General: Introduced `acfe.FieldExtender` and deprecated `acfe.fieldExtend`
* General: Introduced `acfe.Modal` and deprecated `acfe.Popup`
* General: Replaced `_.escape()` with `acf.strEscape()`
= 0.8.8.10 =
**ACF Extended Pro 0.8.8.10:**
* Field: File - Improved default values implementation
* Field: File - Fixed Preview Style "Select2" setting render styling
* Field: WYSIWYG - Fixed "Custom Toolbar" setting not working correctly in ACF 6.0 UI
* Field Settings: Min/Max - Added settings as default values in related fields
* Module: Scripts - Improved validation process to only trigger inside page wrapper