forked from stellarwp/kadence-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
2376 lines (2043 loc) · 91.2 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
=== Gutenberg Blocks by Kadence Blocks – Page Builder Features ===
Contributors: britner, oakesjosh, woodardmc
Tags: gutenberg, blocks, page builder, google fonts, dual buttons, svg icons, editor width,
Donate link: https://www.kadencewp.com/about-us/
Requires at least: 6.2
Tested up to: 6.4
Stable tag: 3.2.22
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Custom Blocks for Gutenberg to help extend the editing capabilities.
== Description ==
Kadence Blocks adds custom blocks and options to extend Gutenberg’s editing capabilities so you can create stunning websites with ease – no code required. Kadence Blocks is your toolkit that makes the WordPress block editor capable of creating beautiful content that’s usually only possible through page builder plugins. Each block is crafted with care with regard to performance, accessibility, and extensibility.
= Try Kadence Blocks =
See Kadence Blocks in action with [the live Demo Testing](https://www.kadencewp.com/kadence-blocks/try/)
= Custom Blocks Include =
* Row Layout - Create rows with nested blocks either in columns or as a container. Give style to your rows with a background, overlay, padding, etc. [Learn more](https://www.kadencewp.com/kadence-blocks/row-layout-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Advanced Gallery - Create stunning photo galleries, carousels, and sliders! Enable custom links, captions, and more. Plus you can select the image size for performance. [Learn more](https://www.kadencewp.com/kadence-blocks/custom-blocks/advanced-gallery/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Form - Our powerful form block allows you to easily create a contact or marketing form and style it within the block editor. [Learn more](https://www.kadencewp.com/kadence-blocks/form-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Advanced Text - Create a heading or paragraph and define sizes for desktop, tablet and mobile along with font family, colors, etc. [Learn more](https://www.kadencewp.com/kadence-blocks/advanced-heading-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Advanced Button - Create an advanced button or a row of buttons. Style each one, including hover controls. Plus you can use an icon and display them side-by-side. [Learn more](https://www.kadencewp.com/kadence-blocks/advanced-button-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Tabs - Create custom vertical or horizontal tabs with advanced styling controls. Each tab content is an empty canvas able to contain any other blocks. [Learn more](https://www.kadencewp.com/kadence-blocks/tabs-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Accordion - Create beautiful accordions! Each pane is able to contain any other block, customize title styles, content background, and borders. [Learn more](https://www.kadencewp.com/kadence-blocks/accordion-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Testimonials - Create confidence in your brand or product by showing off beautiful and unique testimonials. Display add as a carousel or a grid. [Learn more](https://www.kadencewp.com/kadence-blocks/testimonial-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Icon - Choose from over 1500+ SVG icons to add into your page and style the size, colors, background, border, etc. You can also add multiple icons side-by-side. [Learn more](https://www.kadencewp.com/kadence-blocks/icon-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Spacer / Divider - Easily create a divider and determine the space around it or just create some space in your content. You can even define the height per screen size. [Learn more](https://www.kadencewp.com/kadence-blocks/spacer-divider-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Info Box - Create a box containing an icon or image and, optionally, a title, description, and learn more text. Style static and hover separately. [Learn more](https://www.kadencewp.com/kadence-blocks/info-box-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Icon List - Add beautiful icons to your lists and make them more engaging and attract viewers’ attention. Over 1500 icons to choose from and unlimited styles. [Learn more](https://www.kadencewp.com/kadence-blocks/icon-list-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Countdown - Increase your conversions by adding a sense of urgency to your offering. Pro includes evergreen campaigns as well. [Learn more](https://www.kadencewp.com/kadence-blocks/countdown-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Posts - Display a clean grid of posts anywhere on your site, great for your homepage where you want to tease your blog. [Learn more](https://www.kadencewp.com/kadence-blocks/custom-blocks/post-block/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Table of Contents - Allow your readers to navigate your content easily with a table of contents block. Includes smooth scroll to anchor. [Learn more](https://www.kadencewp.com/kadence-blocks/table-of-contents/?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
* Lottie Animation - You can import lottie animations into your site. You can choose how the animation plays and control animation speeds, loops, etc. [Learn more](https://www.kadencewp.com/kadence-blocks/custom-blocks/lottie-animations//?utm_source=wordpress&utm_medium=referral&utm_campaign=read-me&utm_content=kadence-blocks)
= Video Tutorial =
https://www.youtube.com/watch?v=SYb24ncjVsY
= Key Block Features =
* Intelligent Load – Kadence Blocks only loads CSS or Javascript when you need it and only for the blocks you are using on a specific page.
* Responsive Controls – Tweak your design for each screen size. Edit tablet and mobile settings while previewing in WordPress editor.
* Typography Controls – Choose from 900+ Google fonts and design your site with complete typography control.
* Color & Background Controls – Gradients, overlays, parallax backgrounds, borders, etc. You can control all the design settings!
* Configurable Defaults – Make development a breeze. Once the default settings are defined, every time you add a block those settings will automatically be applied.
* Setting Visibility Controls – Hide block settings from certain user roles so they can focus on content and you can keep them out of the block designs.
* Spacing Controls – Control paddings and margins for your blocks in whatever units you like. Customize responsively for precision spacing and design.
= Source files =
[github](https://github.com/kadencewp/kadence-blocks)
= Support =
We are happy to help as best we can with questions! Please use the support forums.
== Installation ==
Install the plugin into the `/wp-content/plugins/` folder, and activate it.
== Screenshots ==
1. Initial Row Layout editing
2. Example single column Row Layout with gradient Background overlay
3. Three column Row Layout example
4. Icon Block example
5. Advanced Button example
6. Editor Width settings inside Gutenberg
== Frequently Asked Questions ==
= Where do I report security bugs found in this plugin? =
Please report security bugs found in the source code of the
Kadence Blocks plugin through the Patchstack
Vulnerability Disclosure Program https://patchstack.com/database/vdp/kadence-blocks. The
Patchstack team will assist you with verification, CVE assignment, and
notify the developers of this plugin.
== Security Policy ==
= Reporting Security Bugs =
Please report security bugs found in the
Kadence Blocks plugin's source code through the
Patchstack Vulnerability Disclosure
Program https://patchstack.com/database/vdp/kadence-blocks. The Patchstack team will
assist you with verification, CVE assignment, and notify the
developers of this plugin.
== Changelog ==
= 3.2.22 =
Release Date: February 12th, 2024
* Add: Option to set image size for backgrounds.
* Fix: Accordion block inside Advanced Query Loops.
* Fix: Issue with custom column widths and default gutter.
* Fix: Issue with flex wrap inheriting to tablet and mobile.
* Fix: Issue with some html rendered in the success/failed message of forms.
= 3.2.21 =
Release Date: February 3nd, 2024
* Fix: Issue with custom column widths and gutter none.
= 3.2.20 =
Release Date: February 2nd, 2024
* Add: Option to set a custom title for TOC block inside advanced text block.
* Update: Translation strings for block titles with context.
* Fix: ActiveCampaign fields issue.
* Fix: Infobox number field wrapping on frontend.
* Fix: Issue with Row Layout collapse order on desktop.
* Fix: Issue with custom column widths in row layout block not being calculated correctly.
* Fix: Lottie animation loop limit not applying.
* Fix: Tab issue when accordion in a menu.
* Fix: Tab title margin issue.
= 3.2.19 =
Release Date: January 23rd, 2024
* Add: Dynamic loading of alt option for image block.
* Fix: Timezone calculation issue in countdown block.
* Fix: Border radius on submit button in Form block.
* Fix: Issue with width on images in some patterns.
* Fix: Possible php undefined.
* Fix: Possible issue with pexels and third party plugin.
= 3.2.18 =
Release Date: January 17th, 2024
* Add: Constant to allow disabling AI in site config.
* Fix: Transforming advanced gallery into core galleries.
* Fix: Prevent HTML in labels from showing in advanced for emails
* Fix: Issue with view details.
* Fix: Issue with mobile background override.
* Fix: Issue with flex layout maxWidth on mobile.
= 3.2.17 =
Release Date: January 15th, 2024
* Add: Border Radius Controls to Adv Text Highlight.
* Fix: Gradient Button transition.
* Fix: Issue when using Kadence Conversions banner templates.
* Fix: Possible issue with events custom excerpts.
* Fix: Deprecation warning on PHP 8.2
= 3.2.16 =
Release Date: January 12th, 2024
* Fix: Some css around horizontal to vertical layout switching.
* Fix: Issue with info box tablet and mobile font size.
= 3.2.15 =
Release Date: January 11th, 2024
* Update: Change how tablet css is handled.
* Fix: Issue with galleries inside of flex sections.
= 3.2.14 =
Release Date: January 10th, 2024
* Fix: Floating Layouts inside of section blocks.
= 3.2.13 =
Release Date: January 10th, 2024
* Update: Change limits on typography font size field.
* Update: Prevent changing unit for typography sizes in tablet, mobile.
* Fix: Possible spacing issue in columns, flex layouts.
* Fix: Default color in accordion example for better accessibility.
* Fix: Possible issue with captions below images in gallery not centered
= 3.2.12 =
Release Date: January 9th, 2024
* Update: Improve location context imports.
* Fix: Remove adv form accept field default input
* Fix: Issue with RTL Carousels.
* Fix: Possible issue with event tickets.
* Fix: Better caching with auth.
= 3.2.11 Pre Release =
Release Date: January 3rd, 2024
* Fix: Possible layout issue with justify content in vertical layouts.
* Fix: Max width issue with info box and mobile/tablet.
* Fix: Issue with tab layout and last tab.
* Fix: Issue with tab title margin
= 3.2.10 Pre Release =
Release Date: December 21st, 2023
* Update: Advanced text icon title option.
* Update: Icon list icon title option.
* Update: Button icon title option.
* Fix: Issue with icon list link color.
= 3.2.9 Pre Release =
Release Date: December 20th, 2023
* Fix: Issue with some logo items in library
* Fix: Issue with some content in design library.
* Fix: Possible php notice with image import.
* Fix: Issue with possible company description length.
* Fix: Issue with php error in dynamic links for gallery.
* Fix: Issue with Ipad Pro media queries.
* Fix: Issue with images in flex layouts missing width.
* Fix: Issue with icons and screen readers.
= 3.2.8 Pre Release =
Release Date: December 11th, 2023
* Fix: Issue with typed text and & symbol.
* Fix: Issue with tab units
* Add: Repeatable Countdown
* Fix: Time zone issue with countdown.
* Fix: Network activated UI.
* Fix: Logo color logic in design library.
* Fix: Issue with design library file not being updated.
= 3.2.7 Pre Release =
Release Date: December 5th, 2023
* Fix: Issue with undefined function.
* Fix: possible issue with ACF and Pexels library.
= 3.2.6 Pre Release =
Release Date: December 5th, 2023
* Fix: Issue with new posts and token manager.
= 3.2.5 Pre Release =
Release Date: December 4th, 2023
* Add: AI options in design library.
* Add: Inline AI for Text (adv) block.
* Add: New Image placeholder options for design library.
* Add: New caching system for design library and pexels.
* Add: New optimized image downloader.
* Add: New home page and activation for AI.
* Fix: Possible tablet css issue with sections.
* Fix: Advanced form missing pre submit custom error.
* Fix: Issue with info box text content styling.
* Fix: Issue with modal in editor.
* Fix: Form data sometimes not clearing after submit.
= 3.2.0 Beta Version 1 =
Release Date: October 5th, 2023
* Add: New Flex control options in section block.
* Add: New auto option for margin controls.
= 3.1.26 =
Release Date: November 15th, 2023
* Fix: Text (Adv) not showing link format option.
= 3.1.25 =
Release Date: November 14th, 2023
* Update: Add hooks for dynamic replace control.
* Fix: Form field custon name not saving.
= 3.1.24 =
Release Date: November 8th, 2023
* Update: Add option to allow decimals in Advanced Form number field.
* Update: Allow mute/unmute buttons row video backgrounds to be displayed separately from the play / pause button.
* Update: Integrate hide recaptcha settings from Kadence Captcha into Advanced Form.
* Update: Add option to style buttons with underline text.
* Fix: Issue creating new Advanced Forms on WordPress 6.4.
* Fix: Google v3 reCAPTCHA not hiding in when set to hide.
* Fix: Add aria label to Advanced Gallery lightbox links.
* Fix: Allow show more button to be focusable using tab key.
* Fix: Border styling display on Advanced button in editor
* Fix: Adv gallery dots having an inaccurate count in some situations.
* Fix: Advanced form help text font size on front end.
* Fix: Advanced form styling for label font size when using infield.
* Fix: Advanced form label custom styles being overridden by default styles.
* Fix: Uploading of documents in advanced form.
* Fix: Setting active campaign API url in advanced form.
= 3.1.23 =
Release Date: November 1st, 2023
* Update: Include a tiktok icon.
* Fix: Issue with icon list margin.
* Fix: Issue with advanced form max width units.
* Fix: Progress bar mask align center.
* Fix: Issue with gallery hidden when added to a horizontal direction.
* Fix: Issue with required message for file upload in form.
= 3.1.22 =
Release Date: October 18th, 2023
* Update: Add option for radio fields to be inline.
* Fix: Issue with custom icons that have negative numbers in viewbox.
* Fix: Initial expand state of accordion toggle.
* Fix: Media query issue in tabs.
* Fix: Testimonial block box shadow spacing.
* Fix: Show more block not initializing in some situations.
= 3.1.21 =
Release Date: October 11th, 2023
* Update: Settings for ActiveCampaign
* Update: Add filter for form upload mime types.
* Update: Add option to allow multiple uploads.
* Fix: Issue where inline style tags could break row layout options.
* Fix: Issue with rank math score going down when adding Advanced Buttons.
= 3.1.20 =
Release Date: October 3rd, 2023
* Add: Advanced buttons support Rank Math content analysis.
* Add: Option to choose heading font family when using Kadence Theme.
* Update: Brand icons, add threads, and a square x icon.
* Fix: Issue with some brand icons not being center.
* Fix: Issue with icon list margin not working in mega menu.
* Fix: Issue with setting numeric padding & margin on advanced form.
* Fix: HTML Anchors and additional CSS classes on advanced form.
* Fix: Block defaults not applying on Testimonial blocks.
* Fix: Issue when skipping advanced form layout settings.
* Fix: Issue with email dynamic replacements.
* Fix: Custom "required" error messages not displaying for advanced form.
* Fix: Support conditional logic on file upload fields in advanced form.
= 3.1.19 =
Release Date: September 20th, 2023
* Fix: Issue with spacer in a reusable block.
= 3.1.18 =
Release Date: September 20th, 2023
* Fix: Issue with radio/checkbox field id output.
= 3.1.17 =
Release Date: September 20th, 2023
* Fix: Issue with medium_large image size being disabled.
= 3.1.16 =
Release Date: September 19th, 2023
* Add: Option to search and add from pexels from within the media library popup.
* Add: Option to use a mask in progress bar.
= 3.1.15 =
Release Date: September 14th, 2023
* Fix: Issue with form file uploads.
= 3.1.14 =
Release Date: September 11th, 2023
* Add: Option to disable browser validation on form.
* Update: Youtube background video cover css.
* Update: Rely on rest endpoints for taxonomy selection in posts block.
* Fix: Ability to add dynamic values to radio and textarea fields in advanced forms.
* Fix: Editing custom CSS in modal.
* Fix: Autocomplete in CSS editor.
* Fix: Issue with multiple dynamic galleries all showing in single lightbox.
* Fix: Accept field recording in advanced forms.
* Fix: Advanced Text icon padding unit not saving.
* Fix: Icon list link color issue.
* Fix: Issue with section background color override.
* Fix: Possible issue with svg filter.
* Fix: Issue with countdown container padding and margin.
* Fix: Issue with missing custom class in lottie block.
= 3.1.13 =
Release Date: August 24th, 2023
* Fix: Some row layouts in forms.
* Fix: Issue when using URL parameters in advanced forms.
* Fix: Issue with gradient shape select.
* Fix: WP notice about wp-editor on widgets page.
* Fix: Issue with not being able to select a gallery photo in the editor when caption covered.
= 3.1.12 =
Release Date: August 17th, 2023
* Fix: Previewing Advanced Forms in transforms.
* Fix: Advanced form file size limit not saving.
* Fix: Block defaults not applying on Table of Contents.
* Fix: ReCAPTCHA v2 on advanced forms.
* Fix: Possible issue with custom svg icon and simplexml_load_file.
* Fix: Issue with advanced form message styling.
= 3.1.11 =
Release Date: August 8th, 2023
* Fix: Possible security issue with form uploads.
= 3.1.10 =
Release Date: August 7th, 2023
* Update: More details error message on advanced form submission failure.
* Fix: Required checkboxes wanting all boxes selected.
* Fix: Advanced forms number field not displaying min/max value in editor.
* Fix: Toggling allowed file types in advanced form.
* Fix: Allowing multiple file types in advanced form upload.
= 3.1.9 =
Release Date: August 4th, 2023
* Update: Allow additional field replacements to the email post submit action.
* Fix: Disk space & multisite quota check on Form file uploads.
* Fix: Form render issue on windows servers.
= 3.1.8 =
Release Date: August 3rd, 2023
* Update: Force Decimals to show if set in progress bar.
* Update: Better font weight inherit style options.
* Fix: Advanced Form file uploads.
* Fix: Potential advanced forms conflict with with third-party plugins.
* Fix: Possible issue with slider flickering on some mobile browsers.
* Fix: Metadata being included in block defaults.
* Fix: Issue with progress bar rendering.
* Fix: Issue where shorter youtube videos would not loop unless in a playlist.
* Fix: CountUp block issue with font family in editor.
= 3.1.7 =
Release Date: August 2nd, 2023
* Fix: Thumbnail Gallery showing vertical thumbnails.
= 3.1.6 =
Release Date: August 2nd, 2023
* Fix: Form Recovery issue.
* Fix: Possible undefined variable notice.
= 3.1.5 =
Release Date: August 2nd, 2023
* Add: Support for decimals in progress bar
* Update: Progress Bar text alignment options.
* Update: Advanced form for widget screen.
* Update: Deprecated date settings.
* Fix: Line height preview in progress bar.
= 3.1.4 =
Release Date: August 1st, 2023
* Fix: Possible Styling issue Testimonial Carousel, Row Layout Background Slider, and Advanced Gallery Sliders.
= 3.1.3 =
Release Date: August 1st, 2023
* Add: Ability to select parent form block from form fields.
* Add: Underline and color options for icon list links.
* Update: Responsive Measure Control to show inherited sizes.
* Fix: Adv Form required asterisk color not applying.
* Fix: Down arrow showing when multiselect is rendered.
* Fix: Progress bar % hiding when changing position.
* Fix: Progress bar prefix/suffix text not updating in editor.
* Fix: Multiple progress bars on same page in editor.
* Fix: Issue with field appender not showing fields when form is nested in a section block.
* Fix: Setting custom fonts on Advanced form labels
* Fix: Layout issue with date picker in Countdown block.
* Fix: Google fonts not loading on frontend for Testimonials block.
* Fix: Link style preview in editor for Advanced Text
* Fix: Sticky sections inside Accordion panes.
* Fix: Progress bar in full site editing.
* Fix: Border radius on stacked icons in Icon block.
* Fix: Number & Title font size preview in Count Up Block.
* Fix: Background colors and icon for select fields in Adv Form Block.
* Fix: Max width units on Table of Contents block.
* Fix: Spacing issue with Process Bar label and number.
* Fix: Possible small error with form block.
= 3.1.2 Beta Version 1 =
Release Date: July 12th, 2023
* Fix: Splide css file name.
* Fix: Pro check in advanced form.
* Fix: Radio label styles in editor.
* Fix: Form select issue.
= 3.1.1 Alpha Version 2 =
Release Date: July 12th, 2023
* Add: Option to set gradient position with input.
* Add: No follow & sponsored options to links in icon list.
* Add: Form wizard with style options to advanced form.
* Add: Row gap settings to section.
* Add: Flex Basis settings to section.
* Fix: Media styles not copy/pasting properly for Info Box.
* Fix: % and rem based border radius on Advanced Buttons.
* Fix: Increase specificity of Splide CSS to avoid conflicts.
* Fix: Posts block image ratios on mobile.
* Fix: issue with WPML and span in advanced text.
* Fix: Issue with WPML and posts read more.
= 3.1.0 Alpha Version 1 =
Release Date: June 15th, 2023
* Add: Advanced Form Block.
* Add: Progress Bar Block.
* Add: Dynamic block labels in list view.
* Add: Ability to set custom names for Kadence blocks in list view
* Add: Option for local google fonts.
* Update: Unique Ids are now set site wide.
* Update: Block names for easier searching.
= 3.0.41 =
Release Date: June 6th, 2023
* Update: Typography custom sizes to support three decimals.
* Update: Tabs to use presentation role.
* Fix: Issue with safari button text.
* Fix: Issue with possible php notice.
* Fix: Issue with nested accordions and accordion spacing.
= 3.0.40 =
Release Date: May 31st, 2023
* Add: Overlay color to advanced image block.
* Fix: Issue with tabs accessibility.
* Fix: Possible issue with countUp start trigger.
* Fix: Issue with icon list stroke width.
= 3.0.39 =
Release Date: May 30th, 2023
* Fix: Issue with tabs keyboard navigation.
* Fix: Issue with row alignment in editor.
* FIx: Issue with single icon custom class.
* Fix: Issue with css for Lottie Block.
* Fix: Issue with left and right margin in image block when aligned left or right.
* Fix: Issue with wpml and title for info box when using a div or span tag.
* Fix: Spacing issue with icon list in editor.
* Fix: RTL gallery slider issues.
= 3.0.38 =
Release Date: May 16th, 2023
* Add: Ratio option to lottie block.
* Update: Deprecated toolbar controls.
* Fix: Issue with tabs and mega menu.
* Fix: Possible issue with scheduling monthly library cleanup.
= 3.0.37 =
Release Date: May 2nd, 2023
* Fix: Issue with icon list mobile column setting.
* Fix: Issue with pasting styles changing icon in infobox.
= 3.0.36 =
Release Date: April 28th, 2023
* Fix: Typo in image css.
* Fix: Issue with icon list editor preview.
* Fix: Issue with fullwidth button and aos.
= 3.0.35 =
Release Date: April 27th, 2023
* Add: Option to set the gallery slider to slide transition.
* Update: Icon list grid styles.
* Fix: Outline button styles to maintain same size.
* Fix: Issue with editor timeout on some servers with some plugin combinations.
* Fix: Issue with fullwidth image.
* Fix: Small issue with design library shadow dom styles.
* Fix: Tweak the way highlight css is applied for better compatibility.
= 3.0.34 =
Release Date: April 24th, 2023
* Update: Design library to use shadow dom.
* Update: Filter for custom palette.
* Fix: Issue with image crop.
* Fix: Issue with testimonial media border radius in admin.
* Fix: Accordion output styles.
* Fix: Possible max width issue with sections.
* Fix: Issue with typed text script.
* Fix: Issue with row background override in editor on mobile.
* Fix: Issue with some columns in gallery when using individual settings.
= 3.0.33 =
Release Date: April 12, 2023
* Add: Option to set design library to use images instead of iframes.
* Fix: Issue with typed text popover not showing correctly.
* Fix: Aria label for mute button in row layout video background.
* Fix: Possible issue with the info box when title and text are paragraph tags.
* Fix: "Hide" button visibility setting on Show More block.
* Fix: Lottie block max-width being applied as width.
* Fix: Icon list gap on rtl sites
* Fix: Issue with row padding in content only mode.
* Fix: Issue with WPML and testimonials.
* Fix: Fix AOS animation breaking hover transition on advanced button block.
* Fix: Accordion FAQ Schema not always updating.
= 3.0.32 =
Release Date: April 6, 2023
* Fix: Custom CSS class not applying to Advanced heading in some situations.
* Fix: Issue accordion css specificity.
* Fix: Issue with pattern library views on smaller screens.
* Fix: Possible issue with design library when accessing through row layout.
* Fix: Issue with advanced gallery sliding when it should fade.
= 3.0.31 =
Release Date: April 4, 2023
* Fix: Issue design library if using 6.1
= 3.0.30 =
Release Date: April 4, 2023
* Add: New Design library.
* Add: Additional unit choices to top and bottom row dividers.
* Fix: Border radius on row layout video backgrounds in Safari.
* Fix: Testimonial icon colors not working when using color palette.
* Fix: Testimonial icon display when using outline icons.
* Fix: Typed text throwing error when previewing mobile & tablet.
* Fix: Info box media background hover not showing in editor.
* Fix: Fluid carousel galleries inside accordions not initializing.
* Fix: Row Layout slider background "slide" transition style.
* Fix: Prevent clones in fluid carousel when only one image.
* Fix: Testimonial max-width not applying for basic layout.
* Fix: Issue with gallery lightbox sometimes not initializing for carousels.
= 3.0.27 =
Release Date: March 23, 2023
* Add: Title to iframe in Google Maps block.
* Add: Option to skip lazy load for advanced image block.
* Update: Row layout to allow 5 column to collapse into 2 and 3.
* Update: Option to select parent block settings quickly from sidebar.
* Update: Change hover styles toggle to tabs.
* Fix: Issue with advanced text with icons and link wraps not opening in a new tab.
* Fix: Design issues with testimonials and border radius.
* Fix: Issue with section overlays in editor.
* Fix: Issue with fluid carousel effecting others on mobile.
* Fix: Issue with icon blocks not getting unique id in some situations.
* Fix: Issue with mobile overlay applying to tablet.
* Fix: Issue with submit alignment and label alignment in forms.
* Fix: Advanced text icon hover color.
* Fix: Issue with missing overlay opacity in tablet and mobile.
* Fix: Issue with video poster select.
* Fix: Gradient color picker when working with third party variables.
= 3.0.26 =
Release Date: March 15, 2023
* Fix: Open animation when using nesting accordions.
* Fix: Breakout columns css output.
* Fix: Issue with TOC and multiplication symbol.
* Fix: Issue with hiding design library sections.
= 3.0.25 =
Release Date: March 15, 2023
* Fix: Breakout columns css output.
= 3.0.24 =
Release Date: March 14, 2023
* Add: Breakout left column and right column options when fullwidth row.
* Fix: Accordion title padding on tablet & mobile.
* Fix: Unmute setting not applying on row layout background videos.
* Fix: Row gutter not always showing in row layout.
* Fix: Copying styles on CountUp block was copying content.
* Fix: Advanced text not inheriting font color from section.
* Fix: Possible spacing issue with single item carousel.
* Fix: Mailerlite with hack to get around their firewall.
* Fix: Possible PHP notice.
* Fix: Issue with some icons not being centered.
* Fix: Possible issue with zIndex in row layouts where z-index wasn't set.
* Fix: Issue with possible border showing in tab when set to 0.
= 3.0.23 =
Release Date: March 8th, 2023
* Update: MailerLite to work with new API.
* Fix: Variable font sizes on Advanced Image captions.
* Fix: Infobox borders no displaying on pre 3.0 blocks.
* Fix: Infobox title margin top not applying on front end.
* Fix: Issue with blocks showing broken in the editor in tablet.
* Fix: Issue with testimonial fonts causing breakage in google font url.
* Fix: Issue with some custom svg icons not rendering correctly.
* Fix: Hover styles icon on RTL layouts
= 3.0.22 =
Release Date: March 6th, 2023
* Fix: Issue with inner child blocks having options to be reusable.
* Fix: Issue with tabs when using block defaults.
* Fix: Issue with testimonials and variable font sizes.
* Fix: Issue with lottie json files when using query parameters.
* Fix: Issue with firefox flex area and svgs.
= 3.0.21 =
Release Date: March 2nd, 2023
* Add: Image Lazy load option for slider and carousel galleries.
* Fix: Issue where 3rd party lazy load plugins were breaking carousels.
* Fix: Issue with max width in testimonial card style.
* Fix: Missing icon.
* Fix: Margin specificity in nested sections.
* Fix: Issue with background type not selected in sections when initially imported from 2.4
* Fix: Possible issue with svg icon rendering affecting certain blocks.
* Fix: Issue with TOC not updating in the editor when allowed headers changes.
* Fix: Frontend alignment of new icon in advanced text.
* Fix: Issue with migrating tablet padding in section.
* Fix: Issue with accordion not migrating with 0 border width.
= 3.0.20 =
Release Date: March 1st, 2023
* Add: Option to not have an icon show on an icon list.
* Fix: Issue with thumbnail gallery thumbnails align center.
* Fix: Issue with toolset archive views.
* Fix: Issue with show more while using infinite scroll.
* Fix: Issue with sticky not showing when it technically works.
* Fix: Issue with border radius and infobox border spin.
* Fix: Issue with svg image align in image block.
* Fix: Issue with infobox title.
= 3.0.19 =
Release Date: February 28th, 2023
* Fix: Issue with gallery custom link target.
* Fix: Issue with z index in previous row output.
* Fix: Issue with column block defaults in row layout.
* Fix: Possible issue with toolset.
* Fix: Issue with posts block not selecting terms.
* Fix: Issue with sizing getting cleared when switching to custom units.
= 3.0.18 =
Release Date: February 27th, 2023
* Fix: Issue with fullwidth layout and custom bottom margin.
* Fix: Issue with accordion title icon size.
* Fix: Issue with TOC template order of headings.
* Fix: Issue with border styles in duplicate block.
= 3.0.17 =
Release Date: February 27th, 2023
* Update: Add option to set info box title to p or span tag.
* Fix: Issue with duplicated blocks not getting a unique Id.
* Fix: Editor view of vertical align.
* Fix: Issue with height 100% when using min height.
* Fix: Issue with typed text in editor.
* Fix: Setting 0 border on tablet/mobile not overriding desktop.
* Fix: Advanced gallery url field dropdown
* Fix: Advanced text letter spacing always using px
* Fix: Testimonial content font size when using variable size
* Fix: Accordion "space between" when using heading title tags
* Fix: Spacer block in reusable block.
* Fix: Icon alignment issue with some themes.
* Fix: Issue with row in surecart columns in editor.
* Fix: Setting HTML Tag for Countup block title.
= 3.0.16 =
Release Date: February 23rd, 2023
* Fix: Issue with reusable blocks
= 3.0.15 =
Release Date: February 23rd, 2023
* Update: Include arrows in lightbox on mobile.
* Update: Align for lottie render.
* Fix: Possible gallery gutter issue.
* Fix: Issue where migrated full width buttons were missing collapse on mobile.
* Fix: Issue the advanced text and WP 6.0.
* Fix: Issue where lots of full width buttons were not wrapping correctly.
= 3.0.14 =
Release Date: February 22nd, 2023
* Update: Prevent custom CSS in row or section from breaking block css.
* Update: TOC to better handle templates with core post content block.
* Fix: Issue with collapsed columns set to full height.
* Fix: Row backgrond slider sizeing not applying.
* Fix: Issue where lightbox shows disable arrows that should be hidden.
* Fix: Issue with fluentCRM and mailerlite.
* Fix: Settings page link.
= 3.0.13 =
Release Date: February 22nd, 2023
* Fix: Issue where custom gutter could be undefined.
* Fix: Issue with icon list vertical spacing.
* Fix: Issue with sliders that only have one slide rendering arrows.
* Fix: Issue with custom classes and anchor not rendering in gallery.
* Fix: Issue with inline row background.
* Fix: Possible issue with video script error.
* Fix: Issue with PSR conflict.
= 3.0.12 =
Release Date: February 21st, 2023
* Fix: Possible PHP 7.2 bug.
* Fix: Issue with multiple types of carousels on a page.
= 3.0.11 =
Release Date: February 21st, 2023
* Fix: Possible PHP 7.2 bug.
* Fix: Parallax issue in safari.
* Fix: Missing Testimonial Background setting.
* Fix: Border color issues in testimonial.
* Fix: Icon size in icon list in the editor.
* Fix: Section hover colors with link.
* Fix: For rebuilding css in a query.
* Fix: Divider rendering in safari.
= 3.0.10 =
Release Date: February 21st, 2023
* Fix: Spacing issues when using generatepress
* Fix: Three column layout issues with gap.
* Fix: Min height of rows in editor.
= 3.0.9 =
Release Date: February 21st, 2023
* Update: Add blend mode to section overlay settings.
* Update: Accordion to have inner content colors.
* Update: Add filter for TOC block render attributes.
* Update: Row Padding visual editor to always override overlaping blocks.
* Fix: Some block settings showing incorrect default.
* Fix: Issue with the design library button not always rendering in 6.2
= 3.0.8 RC Version 4 =
Release Date: February 17th, 2023
* Fix: Possible error in windows server.
* Fix: Double Margin issue in multi-column icon list block.
* Fix: Possible Google font error.
= 3.0.7 RC Version 3 =
Release Date: February 17th, 2023
* Fix: Possible issue custom units.
* Fix: Possible issue with stacked columns using full height.
= 3.0.6 RC Version 2 =
Release Date: February 16th, 2023
* Update: Prevent TOC from rendering in feed.
* Update: Border radius and border controls in advanced text.
* Fix: Possible issue with buttons using icons.
* Fix: Possible issue with buttons margin.
* Fix: Possible issue with tablet padding in buttons.
* Fix: Heading styles when applied in accordion.
* Fix: Issue with gallery options.
* Fix: Issue with carousel dots missing in gallery in the editor.
* Fix: Issue with icon list gap.
* Fix: Deprecated warning in PHP 8.1
= 3.0.5 RC Version 1 =
Release Date: February 13th, 2023
* Add: New Typed Text to Advanced Text Block.
* Add: New option to add an icon in Advanced text Block.
* Update: Tab setting for vertical width.
* Update: Set minimum php version.
* Update: Testimonial block settings.
* Update: Tab border radius and typography settings.
* Update: Remove empty parent block for buttons, icons, testimonials and icon list.
* Update: WPML Config for forms.
* Update: Icon alignment options.
* Update: Block Previews.
* Fix: Possible psr compatibility issue.
* Fix: Possible Map issues with filter.
* Fix: Possible issue with gallery missing style sheet.
* Fix: Issue with hidden advanced panel.
* Fix: Issue with gutenberg plugin.
* Fix: Issue with testimonial carousel column gap.
* Fix: Issue with multiple submissions when using redirect.
* Fix: Issue with dynamic links in buttons.
* Fix: Issue with dynamic links in icon and icon list.
* Fix: Issue with resetting z index in image block.
* Fix: Issue with floating images and overlap.
= 3.0.4 Beta Version 1 =
Release Date: January 31st, 2023
* Add: Basic data to site health.
* Add: Opt-in usage reporting on settings page.
* Update: Make empty sections easier to select.
* Update: Post block to prevent leaving the editor when clicking on a post.
* Update: Accordion Block so show closed in the editor.
* Update: Sliders and carousels can be initiated with javascript trigger.
* Fix: Heading color issue in row.
* Fix: Possible google font issue.
* Fix: Issue with some testimonial blocks not updating.
* Fix: zIndex issue in rows.
* Fix: Issue with icon list fonts.
* Fix: Issue with some gutter sizes.
* Fix: Issue with zindex in rows.
* Fix: Issue with heading block backward compatibility.
* Fix: Issue with heading block backward compatibility.
* Fix: Issue with gallery carousel missing option to set pagination to none.
* Fix: Issue with facebook icon backward compatibility.
* Fix: Issue with possible button border showing when it should not.
* Fix: Issue with advanced text alignment and negative margins not working correctly.
* Fix: Issue with backward compatibility in table of contents border.
* Fix: Preview of gallery columns.
* Fix: Spacing around center aligned image.
* Fix: Issue with row layout and selecting resizer.
* Fix: Issue where generated css could show in a feed.
* Fix: Issue where design library was inputting incorrectly.
* Fix: Issue with button shadow backward compatibility.
* Fix: Issue with TOC border backward compatibility.
= 3.0.3 Alpha Version 4 =
Release Date: January 19th, 2023
* Fix: Removing bottom divider on Row Layout
* Fix: Variable based font sizes in countdown block
* Fix: Video background on Row Layout.
* Fix: Various issues with unit selector.
* Fix: Issue with default icon alignment.
* Fix: Issue where section collapse order was applying in tablet when it shouldn't.
* Fix: Form button styling issue.
* Fix: Possible issue with border styling.
* Fix: Issue with editor row spacing.
* Fix: Hover Text colors in section.
* Fix: Editor Map styles issue.
* Fix: Editor border radius issues with accordion.
= 3.0.2 Alpha Version 3 =
Release Date: January 13th, 2023
* Update: Searches in icon selector are now case insensitive,
* Update: Accordion block now has responsive border & border radius.
* Update: All sliders, carousels using splide.
* Update: Allow icons to be removed from Accordion titles
* Fix: Hover background color not showing on sections
* Fix: Icons not showing in tab titles
* Fix: "Too few arguments" Fatal error commonly seen with reusable blocks
* Fix: Icon list block not displaying properly on front end
* Fix: Warning when using custom font without a font variant selected
* Fix: Warning with some mobile background settings on row layout
* Fix: Issue where padding/margin was limited to 12px in some cases
* Fix: Issue with font size not showing in testimonials.
= 3.0.1 Alpha Version 2 =
Release Date: January 5th, 2023
* Update: Duplicate styles component.
* Fix: Issue with Lightbox on non carousel Gallery.
* Fix: Issue with 0 spacing not outputting in editor.
* Fix: Issue with how row padding and margins conversions were handled.
* Fix: Defaults with Info Box.
* Fix: CSS specificity with column handles.
* Fix: Transforms for icon list block.
= 3.0.0 Alpha Version 1 =
Release Date: January 4th, 2023
* Update: Block Settings to use a tab structure.
* Update: Row Layout to use grid css (css file size 36kb -> 6kb).
* Update: File Structure, build process, individual block files.
* Update: Improved CSS generation for blocks.
* Update: Kadence Block defaults structure, new controls and management.
* Update: Inline SVGs removed from content html, all svgs load through filter.
* Update: Sections can move freely in and out of rows.
* Update: Rows can be content locked to preserve inner block settings and simplify updating.
* Update: Border control for more flexibility.
* Update: New Margin and Padding control with added visualizer.
* Update: New Icon Picker Control.
* Update: New Font size control.
* Update: Line Height to support none unit values.
* Update: Lightbox to use glightbox (adds mobile swipe).
* Update: Gallery Carousels to use splide.
* Update: Icon List block to use innerBlocks for list items.
* Update: Accordion js to handle issues with offset in accordion hash.
* Update: Facebook logo svg.
* Add: Responsive container margin on Info Box block.
* Add: Responsive container border styles to info box.
* Add: Responsive border radius styles to info box.
* Add: Responsive max width control to info box.
* Add: Responsive container margin on Icon List block.
* Add: Responsive Inner Container padding on Tabs block.
* Add: Responsive list margin, title padding, container padding and margin to TOC Block.
* Add: Option to search dynamic template in TOC Block.
* Add: Support for external dotLottie files
* Add: Ability to import, export, and reset block defaults
* Fix: Gallery - "Show on Hover" caption placement setting now allowing editing.
* Fix: Issue with gallery possibly losing added captions.
* Fix: Only generate dynamic CSS for rtl sites when needed.
* Fix: Google Maps filter initial value issue.
* Fix: Issue when using more than 36 tabs in Tabs block.
* Add: Ability to use decimals for start & end values in count up block.
* Add: Ability to force specific language in reCaptchas
= 2.4.22 =
Release Date: November 17th, 2022
* Fix: Issue with mobile background video loading.
* Fix: Issue with undefined index: color.
* Fix: Allow clearing border radius in image block.
* Fix: Issue with converting list blocks to icon list blocks since 6.1
= 2.4.21 =
Release Date: November 11th, 2022
* Fix: Issue with bottom separator color in row layout.
* Fix: Issue with possible js error in video background.
= 2.4.20 =
Release Date: November 9th, 2022
* Fix: Issue with Reusable Blocks and endlessly looping in editor.
* Fix: Issue with toc in widget area.
* Fix: Issue with background position in section when 0.
* Fix: Issue with min height in section when 0.
* Fix: Issue with inline font selector.
* Fix: Issue with border on image block in firefox.
= 2.4.19 =
Release Date: November 1st, 2022
* Update: Prevent issue with RankMath in sitemap XML sitemap.
* Update: Image margin settings not applying correctly when aligned left or right.
= 2.4.18 =
Release Date: October 31st, 2022
* Update: Prevent issue with RankMath in sitemap XML sitemap.
* Fix: Gallery not pulling in alt text changes when updating in block.
= 2.4.17 =
Release Date: October 24th, 2022
* Fix: Issue with row padding not outputing 0.
= 2.4.16 =
Release Date: October 24th, 2022
* Update: Tabs js to not use jQuery.
* Update: Google Fonts.
* Update: Improve performance of Row Layout background videos. Prevent preload when hidden.
* Fix: Issue with variable colors in some selectors.
* Fix: Issue with info box icon hover background in editor.
= 2.4.15 =
Release Date: October 6th, 2022
* Update: timeout for cloud libraries.
* Fix: Parallax in Safari 16.
* Fix: zIndex issue with sections.
* Fix: Issue with some responsive row layouts.
* Fix: Issue with individual border radius for tab content.
= 2.4.14 =
Release Date: September 6th, 2022
* Update: Border radius control for tab content.
* Update: Allow negative margin in icon block.
* Update: Anchor generation to use remove_accents.
* Fix: Possible issue with sections showing broken.
* Fix: Issue with advanced text field and reveal animation.
* Fix: Issue with show more and adding buttons into the content.
* Fix: Issue with table of contents and apostrophe.
* Fix: Show more height for tablet, mobile.
* Fix: Issue with fullwidth show less button in show more block.
* Fix: Responsive settings for divider height.
= 2.4.13 =
Release Date: July 29th, 2022
* Update: Google Fonts.
* Fix: Issue with safari and sticky section.
= 2.4.12 =
Release Date: July 6th, 2022
* Update: Design Library defaults.
* Update: Google Recaptcha Link.
* Update: Show More block javascript.
* Fix: Issue with FAQ schema rendering in posts page.
* Fix: Issue with filters in css generation.
* Fix: Issue with mobile collapse order.
* Fix: Issue with icon list gap.
* Fix: Issue with row vertical align center in admin.