-
Notifications
You must be signed in to change notification settings - Fork 64
/
changelog.txt
1751 lines (1547 loc) · 86.7 KB
/
changelog.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
== Changelog ==
= 1.63.0 - 11 August 2024 =
* Button Grid: Update to ensure the Grid Widget doesn't override the settings of unrelated Button Widgets.
* Blog Offset: Increased the author avatar image width.
* Blog: Added `Trim Manual Excerpt` setting. Trim the excerpt even if a manual excerpt has been added.
* Slider: Resolved a potential PHP 8 TypeError.
* Video: Ensured video oEmbed is able to apply full screen.
= 1.62.3 - 23 July 2024 =
* Updated Google Fonts.
* Presets: Hid empty default if `default_preset` is set.
* Blog: Ensured default content size outputs with `px` unit of measurement.
* Developer: Posts Field: Added `show_count` to optionally show the post count.
* Developer: Blog: Addded `siteorigin_widgets_blog_filter_categories_output`.
* Developer: Blog: Added `siteorigin_widgets_blog_content_wrapper_styles`.
= 1.62.2 - 30 June 2024 =
* Improved attribute name handling.
* Button Grid: Accounted for possible warnings.
* Carousel: Improved continuous scrolling behavior.
* Carousel: Update to prevent autoplay in the Block Editor preview.
* Carousel: Resolved potential PHP deprecated warning.
* Lottie Player: Fixed attribute output.
= 1.62.1 - 17 June 2024 =
* Accordion: Aligned Scroll to Offset value with Tabs.
* Button Grid: Resolved a potential layout warning.
* Contact Form: Resolved potential invalid field border.
* Updated Google Fonts.
* Updated Font Awesome.
* Updated SiteOrigin Installer.
= 1.62.0 - 06 June 2024 =
* New Widget! Button Grid: Add multiple buttons in one go, customize individually, and present them in a neat grid layout.
* Blog: Validate title HTML tag before output.
* Slider: Restored Responsive Height setting.
* Tabs: Always trigger `tab_change` event when changing tabs.
* Testimonials: Removed unused SVG.
* Links Field: Reduced width.
= 1.61.1 - 20 May 2024 =
* Button: Resolved Atom theme background error.
= 1.61.0 - 19 May 2024 =
* New Widget! Recent Posts: Drive traffic to your latest content with a visually appealing, fully customizable recent posts showcase.
* Button: Minor padding adjustments to improve alignment.
* Post Carousel: Add Animation Setting.
* Social Media Buttons: Update to ensure Atom buttons render normally if hover styles are cleared.
* Social Media Buttons: Updated Skype default colors.
* Post Selector: Corrected `date_query_relative` check.
* Resolved fallback shortcode decoding issue.
* Increased the required PHP version.
= 1.60.0 - 26 April 2024 =
* Author Box: Applied title margin directly to wrapper and adjusted alignment.
* Blog: Resolved a potential fatal `TypeError`.
* Blog: Resolved settings warning caused by undefined "settings" array key.
* Carousel: Added `full` navigation output option.
* Features: Improved icon position alignment on desktop and mobile.
* Headline: Resolved a translation issue related to the Tag setting.
* Post Carousel: Minor settings label adjustments.
* Post Carousel: Fixed RTL output.
* Tabs: Updated to use the Anchor ID Manager.
* Query Posts: Date Range: Changed default and minimum to `1`.
* Multi-Measurement Preset: Resolved an issue with saving values.
* Page Builder: Resolved missing widgets in the Add Widget modal.
* Widgets Block: Prevented empty needle warning.
* Number Field: Updated to account for potential null values to prevent deprecated notice.
* Fields: Ensured `$value` isn't null before processing it to resolve `preg_replace()` deprecated notice.
* Deprecated Notices: Resolved `intval` deprecated notice.
= 1.59.0 - 11 April 2024 =
* New Widget! Author Box: Display author information, including avatar, name, bio, and post links in a customizable box.
* Contact Form: Resolved an issue where using multibyte characters (e.g., "מייל" for Email) as field labels prevented the form from being submitted correctly.
* Social Media Buttons: Updated X network color defaults.
* Social Media Buttons: Added Snapshot Square icon.
* Social Media Buttons: Updated Wire theme border default colors.
* Improved icon and font handling.
* Updated Google Fonts list.
* Block Editor: Moved editor check to the main Widgets Bundle class.
* Developer: Added a width argument to text input fields.
* Developer: Added multi-measurement support to the presets field.
* Developer: Removed `tmp_grunion_allow_editor_view`.
= 1.58.12 - 24 March 2024 =
* Post Loop: Resolved a potential `post__in` error.
* Post Loop: Resolved a potential post selector `post__not_in` deprecated warning.
= 1.58.11 - 23 March 2024 =
* Carousel: Resolved a potential warning.
* Features: Correct HTML tag output.
* Slider: Replaced `$.isFunction` usage.
* Social Media Buttons: Updated Tripadvisor title label.
* Video Player: Resolved potential warning.
* Block Editor: Always process shortcodes.
* Color Field: Added support for color hexadecimal values with alpha channel notation (e.g., #RRGGBBAA). Enhanced validation for RGBA color values.
* Post Selector: Resolved a potential deprecated notice.
* Updated SiteOrigin Installer.
* Developer: Added new Contact Form hooks.
= 1.58.10 - 05 March 2024 =
* Enhanced the saving process and validation for widgets and blocks in the Widgets Block.
* Loaded defaults for the widget form field.
* Removed the `unfiltered_html` check in the Editor Widget.
= 1.58.9 - 03 March 2024 =
* Editor: Resolved shortcode output.
= 1.58.8 - 02 March 2024 =
* Button: Resolved a potential alignment warning.
* Contact Form: Resolved a potential deprecated notice.
* Editor: Resolved a potential noreferrer empty text deprecated notice.
* Features: Prevent a potential feature width CSS miscalculation.
* Google Maps: Resolved a potential PHP 8.2+ warning.
* Sliders: Resolved a potential FitVids related error.
* Color Fields: Resolved a potential deprecated notice.
* Text Input: Resolved undesired HTML removal on multisite installations.
* Shifted control for lazy loading images to WordPress.
* Added additional data sanitization.
* Beaver Builder: Resolved an issue on save.
= 1.58.7 - 25 February 2024 =
* Anything Carousel: Corrected global responsive settings propagation.
* Blog: Removed pagination markup if pagination is disabled.
* Blog: Updated pagination screen reader text and level.
* Button: Added `Calendly` to OnClick allowed list.
* Video Player: Resolved potential FitVids warning.
* Repeater Tables: Minor styling updates.
* Textarea: Update to allow line breaks.
= 1.58.6 - 15 February 2024 =
* Added recursive sanitization to fields to prevent potential errors during saving.
* Post Carousel: Prevented a potential fatal error related to the `loop_posts` migration.
* Social Media Buttons: Resolved a potential warning by adjusting the conditions for color changes.
* Social Media Buttons: Removed redundant changes to the `icon_color` and `icon_color_hover` values.
= 1.58.5 - 12 February 2024 =
* Blog: Resolved a potential columns related warning.
* Block Editor: Prevented a potential text field empty value error.
= 1.58.4 - 10 February 2024 =
* Call to Action: Improved tag handling.
* Features: Fixed spacing and gap value output.
* Fields: Improved field sanitization.
* Social Media Buttons: Migrated Twitter to X.
= 1.58.3 - 05 February 2024 =
* Button: Additional improvements for OnClick handling
* Button: Added OnClick support for MailerLite.
= 1.58.2 - 27 January 2024 =
* Button: Restricted OnClick field allowed values to known services and functions.
= 1.58.1 - 26 January 2024 =
* Icon: Prevented a Potential `TypeError`.
* WooCommerce Shop: Check for SiteOrigin blocks within other blocks.
* Developer: Added Contact Form `siteorigin_widgets_contact_form_field_output`.
* Developer: Prevented a potential error when an `ItemLabel` isn't defined.
= 1.58.0 - 18 January 2024 =
* Accordion: Improved accessibility.
* Accordion: Improved the title icon vertical alignment.
* Accordion & Tabs: Adjusted the default header background colors.
* Anything Carousel: Improved cross-browser navigation display.
* Beaver Builder: Resolved SiteOrigin Slider related error.
* Carousel: Disabled the 'previous' navigation button on the first slide when loop functionality is disabled.
* Carousel: Resolved a potential undefined variable notice.
* Carousels: Increased `Animation Speed` default value.
* Carousels: Disabled slide transitions if browser motion is set to `Reduced`.
* Contact Form: Resolved potential submission form error message display.
* Features: Reset before/after spacing to prevent misalignment due to third-party global styles.
* Features: Added a `Feature Spacing` setting.
* Google Maps: Resolved deprecated notice.
* Google Maps: Update to prevent potential data loss when navigating away from the page while editing.
* Layout Slider: Resolved Extra Top Padding unit of measurement output if a value other than `px` is selected.
* Post Carousel: Update to display `Autoplay continuous scroll` if `Autoplay` is enabled.
* Post Carousel: Updated to prevent thumbnail from exceeding display width on mobile.
* Price Table: Added a `Sale Price` setting.
* Price Table: Added HTML support to the Title, Subtitle, Price, and Per fields.
* Price Table: Moved design related settings to a Design settings section.
* Slider: Added `loading` support to the widget's background image.
* Slider: Resolved a potential double-up of background images via HTML and CSS.
* Sliders: Updated to prevent loss of form field focus on input.
* Social Media Buttons: Added Viber.
* Tabs: Improved accessibility.
* Tabs: Updated deprecated KeyCode usage.
* WooCommerce: Re-render the shop page if there are any Widgets Bundle blocks present.
* Updated Google Fonts.
* Updated Font Awesome from `6.4.2` to `6.5.1`.
* Measurement Units: Minor admin styling improvements.
* Admin Radio Form Fields: Improved cross-browser display.
* Select2: Minor styling improvements.
* Developer: Added repeater table item label display option. Allows the repeater to act more like a table.
* Developer: Added `siteorigin_widgets_blog_custom_template` to the Blog Widget. Allows for custom templates to be selected from the Template select.
* Developer: Added box model type indicator classes.
= 1.57.0 - 24 November 2023 =
* Added additional font settings to the Call To Action (CTA) Widget, including Title HTML Tag, Title Font Family, Title Font Size, Subtitle HTML Tag, Subtitle Font Family, and Subtitle Font Size.
* Contact Form: Added an optional `readonly` attribute for the Text Field.
* Contact Form: Added `siteorigin_widgets_contact_fields` filter to allow customization of the email fields.
* Beaver Builder: Fixed an issue with the UI not loading by removing Core BB JS as a dependency.
* Updated the "Tested up to" version in the readme.txt file to 6.4.
= 1.56.0 - 06 November 2023 =
* Anything Carousel: Prevented an autoplay conflict caused by `click` trigger.
* Blog: Added Scroll Top functionality and global setting at `Plugins > SiteOrigin Widgets > Blog`.
* Call To Action: Added new hooks and padding.
* Contact Form: Added RGBA support for `Container Background Color`.
* Contact Form: Resolved warnings related to PHP 8.2.
* Features: Ensured the feature contents is centered rather than aligned to the Container Icon Position.
* Features: Resolved a mobile misalignment when using `Bottom Align More Link Text`.
* Sliders: Added Lazy Load support.
* Video Player: Addd a `Hide Player Controls` setting.
* Beaver Builder: Resolved `Uncaught TypeError: sowbForms.getWidgetIdBase`.
* Admin Metabox: Reset cursor for active tabs.
* Updated SiteOrigin Installer.
= 1.55.2 - 28 October 2023 =
* Improved the sizing of number fields in the admin interface.
* Modified the button widget to only apply flex styling if an icon is set.
* Developer: Added a central method of handling post content in the Blog widget.
= 1.55.1 - 23 September 2023 =
* Resolved right positioned icon overflow and slight vertical misalignment in the Button widget.
* Prevented icon right aligned overlap in the Button widget.
* Restored icon vertical alignment in the Button widget.
= 1.55.0 - 16 September 2023 =
* Blog: Updated the Portfolio template to improve term display for selected post type.
* Blog: Account for possible offset after the first page load.
* Button: Added Icon Size setting.
* Contact: Added multi-measurement support for the Field Margin setting.
* Contact: Added Select2 support to the Dropdown Select field.
* Features: Resolved mobile misalignment with `Align Bottom More`.
* Sliders: Added frame keyboard navigation.
* Video: Update to resolve a YouTube short URL display issue.
* Destination URL Field: Update to fetch post title if using `Post: ID` format.
* Post Query: Update to account for `offset` in the total post count.
* Updated the Google Fonts list.
* Font Awesome: Updated from `6.4.0` to `6.4.2`.
* Added Select2 support.
* Measurement Field: Prevented `Deprecated: strlen()` notice.
* Developer: Added additional hooks to the Contact Form Widget.
* Developer: Added an optional measurement unit parameter to the Number field.
= 1.54.0 - 16 August 2023 =
* Added a new setting called "Center Items" to the Features widget. This setting allows users to center the items if there are fewer features on a line than the maximum.
* Added a new setting called "Skip Post if No Featured Image" to the Blog Portfolio widget. This setting allows users to skip posts without a featured image when the active template is set to "Portfolio".
* Updated the SiteOrigin Installer.
= 1.53.0 - 09 August 2023 =
* Added multi-measurement support for the field margin in the Contact widget.
* Resolved issue with the "Use FitVids" option being locked to enabled in the Slider widget.
* Updated the Simple Masonry, Image, and Image Grid widgets to use the `siteorigin_loading_optimization_attributes` function for better control over lazy loading of images.
* Improved logic in the `siteorigin_loading_optimization_attributes` filter check to avoid potential errors.
* Updated the "Tested up to" version in the readme.txt file to 6.3.
* Reverted changes to the Blog widget that attempted to show correct terms for selected post types due to implementation issues.
= 1.52.0 - 16 July 2023 =
* Added a new setting for Sliders, allowing users to choose the alignment of the pagination dots (left, center, or right).
* Introduced a new field called "Image Shape" to a widget, including necessary CSS styles, PHP class for rendering, and JavaScript for handling behavior.
* Updated the Image Widget to use the new "Image Shape" field.
* Fixed an issue with image shapes being enabled when they shouldn't be.
* Prevented the installer setting from showing if SiteOrigin Premium is active.
* Renamed the `Navigation alignment` setting in the `base-slider.class.php` file to `Pagination alignment` for clarity.
* Updated Build submodule.
= 1.51.0 - 15 July 2023 =
* Added `Google Material Icons / Material Symbols` support.
* Blog: Updated Portfolio to use Image Size for column sizing.
* Blog: Updated Portfolio column width to account for column gutter.
* Hero: Enabled alpha support for frame background color.
* Hero: Update to hide `Background Image` settings if no background image is set.
* Image: Added Image Shapes!
* Slider: Added a `Use FitVids` setting for responsive videos.
* Slider: Added unmute support for YouTube videos.
* Added a check to confirm the ID is valid for widget activation or deactivation.
* Developer: Added `siteorigin_widgets_button_attributes` to Button.
= 1.50.1 - 12 June 2023 =
* Slider: Resolved deprecated warning and improved link alignment.
* Blog: Updated template defaults to include colors with alpha.
* Added Tabs Form Field for improved widget organization.
* Updated Google Fonts with new fonts and weights.
* Updated Font Awesome from version 6.2.0 to 6.4.0, adding new icons.
* Added `siteorigin_widgets_load_cache_compatibility` filter for optional cache compatibility control.
* Various improvements to form fields and code formatting.
= 1.50.0 - 16 May 2023 =
* Button: Update to only apply Hover Text Color if Use Hover Effects enabled.
* Blog: Corrected Portfolio Hover Overlay Opacity migration.
* Carousel: Added compatibility for Virtue Premium home slider.
* Contact: Update to apply `Fields` design settings to `select` field.
* Image: Added `Custom Size > Enforce Dimensions` checkbox.
* Color Fields: Added alpha support.
= 1.49.2 - 03 May 2023 =
* Features: Various adjustments to improve desktop and mobile alignment.
* Image: Update to allow automatic resizing for Custom Size when one value is added.
* Videos: Internally convert short YouTube URLs to full URLs.
* Multiple Media: Resolved issues related to removing items when multiple instances are present.
= 1.49.1 - 26 April 2023 =
* Contact Form: Added a check to ensure PHP GD is enabled before allowing Really Simple CAPTCHA.
* Removed duplicate widget text area.
* Resolved a Parallax Sliders - Legacy Parallax display issue.
= 1.49.0 - 23 April 2023 =
* Features: Updated CSS to Flexbox.
* Features: Added `Space Between Each Feature` setting.
* Features: Ensured all icon alignment states center align on mobile.
* Features: Increased the responsive breakpoint` to 768px.
* Price Table: Added color settings default values.
* Slider: Improved slide background removal.
* Social Media Buttons: Fixed potential `Undefined variable` error.
* Video: Resolved an issue with YouTube video looping.
* Widget Block: Added `siteorigin_widgets_block_exclude_widget`. Developers can exclude widgets from SiteOrigin Widgets Block cache.
= 1.48.0 - 12 April 2023 =
* Slider: Added Height and Responsive Height settings regardless of whether a Foreground Image is present.
* Social Media Buttons: Added Wire Border Color settings.
= 1.47.1 - 04 April 2023 =
* Blog: Fixed Alternate Template featured image mobile collapse.
* Post Carousel: Improved `Thumbnail Overlay` migration.
* Post Carousel: Added `siteorigin_post_carousel_item_template` filter.
* Sliders: Default enabled `Show slide background videos on mobile.`
* Tabs: Addeded `siteorigin_widgets_tabs_always_scroll` filter.
* Font Field: Resolved PHP 8 deprecated notice.
* Textarea Form Field: Resolved PHP 8 deprecated notice.
* Media Field: Minor styling improvement.
* Improved missing widget detection.
* PHP coding standards update.
= 1.47.0 - 30 March 2023 =
* Blog: Added a `Post Title HTML Tag` setting.
* Google Maps: Fixed a potential `Map Style > Predefined Styles` PHP 8.x error.
* Updated Tested up to tag.
= 1.46.7 - 15 March 2023 =
* Developer: Updated Google Maps location `getSimplePlace` a method.
= 1.46.6 - 01 March 2023 =
* Blog: Fixed a potential Alternate Template featured image fallback misalignment and improved responsiveness.
* Blog: Vertically center aligned the Alternate Template featured image fallback image.
= 1.46.5 - 03 February 2023 =
* Repeaters: Restored action icons.
= 1.46.4 - 02 February 2023 =
* Accordion and Tabs: Prevented unexpected scroll.
* Blog: Removed Portfolio `Filter Category` setting requirement.
* Lottie Player: Updated library to `1.6.0`.
* Slider: Removed potential spacing after a slide foreground image.
* Removed unintentional widget asset enqueue in the Classic Editor.
* Widget Block: Resolved Customizer `ReferenceError`.
* Autoptimize: Avoided using strpos with empty string in `include_widgets_css_in_autoptimize`.
* Developer: Updated repeater actions to prevent naming conflicts.
= 1.46.3 - 23 January 2023 =
* Simple Masonry: Resolved pre-WordPress 5.9 error.
* Resolved potential `mce_external_plugins` missing `editor_id` error.
= 1.46.2 - 14 January 2023 =
* Color Form Field: Added `siteorigin_widget_color_palette` filter.
* Lottie Player: Filtered new media uploads for application files.
= 1.46.1 - 01 January 2023 =
* Contact Form: Added `siteorigin_widgets_contact_validation` filter.
* Widgets Block Editor: Resolve potential TinyMCE related errors.
= 1.46.0 - 23 December 2022 =
* Call To Action: Resolved potential notice.
* Contact Form: Added `Plugins > SiteOrigin Widgets > Contact Form: Scroll Top` setting and `siteorigin_widgets_contact_scrollto_offset` filter.
* Contact Form: Resolved potential Google reCAPTCHA notice.
* Hero: Added Content `Automatically add paragraphs` setting.
* PHP 8 notice fixes.
* Customizer: New widget area `TypeError` fix.
* Removed `@font-face` query strings.
* Developer: Optionally allow repeater maximum number of items to be set.
= 1.45.0 - 07 December 2022 =
* Call To Action: Added `Mobile Button Align` setting.
* PHP 8.1: Resolved form field deprecated notices.
* Developer: Removed `edit-widgets` validation support.
* Developer: Added min/max for number form field.
= 1.44.2 - 03 December 2022 =
* Added WP Rocket compatibility.
* Button: Expanded Font Size, Padding, and Rounding to be more customizable.
* Headline: Prevented a potential notice when adding `mobile_align` defaults to pre-existing instances.
* Image Size Field: Update to display the setting description if available.
* Simple Masonry: Resolved a potential `Undefined array key` warning.
* Developer: Introduced widget validation via `sowbForms.validateFields` and `sow_validate_widget_data`.
* Developer: Update to allow custom color palettes or for palettes to be completely removed on a field by field basis.
* Developer: Pass state emitter field to custom callbacks. Allows developers to detect the field that triggered the emitter.
= 1.44.1 - 25 November 2022 =
* Icon Field: Resolved jQuery Migrate flag.
* Contact Form: Resolved notice when Message field not used.
* Features: Resolved PHP 8 `Division by 0 Error` if `Features per row` not set.
* Simple Masonry: Changed to use pure CSS (`object-fit`) for sizing images.
= 1.44.0 - 10 November 2022 =
* Anything Carousel: Prevented potential loss of styling when looping items.
* Google Maps: Prevented position reset from affecting the info window.
* Simple Masonry: Added a Layout settings section.
* Simple Masonry: Added Image Title settings.
* Simple Masonry: Removed defaults set to 0.
* Simple Masonry: Removed the `loading` attribute if the preloader is enabled.
* Font Awesome: Resolved Gear icon migration issue.
* TinyMCE Field: Prevented PHP 8 `Uncaught TypeError: TinyMCE plugins filtered incorrectly`.
* Updated `Tested up to` tag to `6.1`.
* Developer: Added an `html` form field.
= 1.43.0 - 13 October 2022 =
* Blog: Improved `Continue reading` output when non-Latin characters are present.
* Blog: Fixed the Grid template responsive collapse behavior.
* Blog: Added a new Post Tags setting.
* Contact Form: Prevented a potential notice when inserting a new form.
* Post Carousel: Ensured navigation dots can appear when arrows are disabled.
* Post Carousel: Increased `Post Title > Color` specificity to avoid potential theme conflicts.
* Widget Block: Removed the Widget Type field label.
= 1.42.2 - 06 October 2022 =
* Blog: Resolved potential incorrect Widget Block pagination URL.
* Blog: Removed the Blog Widget from the Widgets Block cache.
* Updated Google Fonts list.
* Updated Font Awesome 6.1.1 to 6.2.0.
= 1.42.1 - 23 September 2022 =
* Blog: Updated settings CSS specificity.
* Blog: Resolved error when loading posts using Ajax.
* Google Maps: Prevented Google logo from being hidden by theme styles.
= 1.42.0 - 21 September 2022 =
* Blog: Added a `Featured Image Size` setting.
* Blog: Increased Alternate template featured image to full-width on mobile.
* Carousels: Update to only allow positive values in the `Slides to Scroll` and `Slides to Show` settings.
* Contact Form: Added `Honeypot` and `Browser Check` spam prevention settings.
* Editor: Prevented potential error by passing all expected `widget_text` arguments.
* Image Grid: Added `Display Image Title` setting and related options.
* Post Carousel: Added widget preview support.
= 1.41.0 - 13 September 2022 =
* Blog: Adjusted `article` tag CSS to ensure priority over theme styling.
* Blog: Removed featured image center alignment for the Alternate template.
* Blog: Added featured image sizes for the Grid, Alternate, and Portfolio templates.
* Features: Added a new setting `Bottom align More link text.`
* Google Maps: Only setup consent if Google Maps not already setup.
* LiteSpeed Cache: Ensured purge header isn't set if headers already sent.
* Post Carousel: Resolved Overlay Theme `Slides to Scroll` incorrect count.
* Developer: Added `siteorigin_widgets_blog_excerpt_trim` filter.
* Developer: Added `siteorigin_widgets_blog_image_sizes` filter.
= 1.40.2 - 03 September 2022 =
* Blog: Added SiteOrigin Premium Blog Addon CTA.
= 1.40.1 - 30 August 2022 =
* Contact Form: Added a new Dropdown Select setting `Allow multiple selections`.
* Blog: Added a `Sticky` indicator to post meta.
* Blog: Factored numbers into the Excerpt Length count.
= 1.40.0 - 20 August 2022 =
* Blog: Added `Excerpt Length` setting. The excerpt length can also be set using `siteorigin_widgets_blog_excerpt_length`.
* Blog: Resolved a Portfolio template column sizing issue.
= 1.39.0 - 08 August 2022 =
* New Widget! Introducing the SiteOrigin Blog Widget.
= 1.38.3 - 05 August 2022 =
* Anything Carousel: Resolved potential navigation malfunction.
* Post Carousel: Improved partially visible post navigation.
* Improved `style` tag HTML validation.
= 1.38.2 - 27 July 2022 =
* Features: Resolved PHP 8 error when Features Per Row is empty.
= 1.38.1 - 20 July 2022 =
* Contact Form: Resolved a notice if Name and Message fields aren't included.
* Post Carousel: Improved partially visible posts navigation.
* Social Media Buttons: Resolved Email network dissociation on edit and save.
= 1.38.0 - 14 July 2022 =
* Anything Carousel: Added `Adaptive Height` setting.
* Hero: Prevented padding reset on mobile if mobile values are empty.
* Developer: Allow plugins to filter global settings defaults via `siteorigin_widgets_settings_form`.
= 1.37.1 - 08 July 2022 =
* Contact Form: Maintain radio and checkbox input size on iOS.
* Hero: Resolved Extra Top Padding related notice.
* Social Media Buttons: Restored the Phone and RSS icons.
= 1.37.0 - 30 June 2022 =
* Buttons: Changed the design default from Atom to Flat.
* Contact Form: Minor placement adjustment for Really Simple CAPTCHA error messages.
* Hero: Ensured valid mobile padding values are output after settings migration.
* Image: Added an `External Image Size` setting.
* Image: Restored Simple Lightbox plugin compatibility.
* Social Media Buttons: Added Font Awesome 6 support.
* Social Media Buttons: Added Patreon.
* Social Media Buttons: Updated removed Tripadvisor icon to the suitcase icon.
* Font Awesome: Upgraded from version `5.15.1` to `6.1.1`.
* Added Stream protocol support `steam://connect/IP:Port/`.
* Added a check to ensure widgets exist before enqueuing related scripts.
* Developer: Added `siteorigin_widgets_contact_field_attr` filter to the Contact Form Widget.
= 1.36.0 - 19 June 2022 =
* Contact Form: Added support for [Really Simple CAPTCHA](Really Simple CAPTCHA) plugin. A DSGVO complaint captcha.
* Features: Moved the title `HTML tag` setting to the `Font Design > Title` settings section.
* Features: Restored feature column width when `Icon container shape` set to `None`.
* Google Maps: Fixed static maps custom style notice.
* Hero: Fixed Top Padding unit of measurement.
* Sliders: Resolved Modern Parallax jump on load.
* Sliders: Added `anchor-id` attribute.
* Tabs: Removed Anchor ID functionality when disabled.
* Video Player: Standardized YouTube URLs.
* Web Safe Fonts: Added Times New Roman. Alphabetized and updated the CSS font stacks.
* jQuery Migrate: Replaced error shorthand and bind usage.
* Developer: Sliders - Added `slider_setup_before` and `slider_setup_after` events.
* Developer: Added `siteorigin_widgets_search_posts_order_by` filter. Change post search order results as required.
= 1.35.1 - 25 May 2022 =
* Updated WordPress `Tested up to` tag.
* Accordion: Added a hyphen prior to the panel URL anchor.
= 1.35.0 - 21 May 2022 =
* Contact Form: Added reCAPTCHA V3 support.
= 1.34.0 - 16 May 2022 =
* Icon: Hide icons from screen readers.
* Google Maps: Added Custom Marker Icon image size settings.
* Sliders: Ensured autoplaying YouTube and Vimeo background videos will pause on slide change.
* Widgets Block: Added HTML anchor support located at Block > Advanced.
* CSS Cache Compatibility: Added support for LiteSpeed Cache plugin.
= 1.33.1 - 30 April 2022 =
* Accordion and Tabs: Added support for the SiteOrigin Premium Anchor ID Addon.
* Anything Carousel: Resolved a `Previous Nav Arrow` error.
* Anything Carousel: Improved theme compatibility by preventing nav arrow container overflow hidden.
* Lottie Player: Fixed an error in the closing `</div>` tag.
= 1.33.0 - 23 April 2022 =
* New Widget! Introducing the SiteOrigin Lottie Player Widget.
* Carousel Widgets: Resolved a dot navigation miscalculation when multiple carousels present.
* Features: Improved mobile alignment.
* Image and Image Grid: Added `wp_get_loading_attr_default` to prevent lazy loading above the fold.
* Social Media Buttons: Improved hover behavior and styling.
* Widget Block: Resolved a missing widget author notice.
* Resolved PHP 8 notices.
* Developer: Added `siteorigin_widgets_WIDGET_NAME_lazy_load` filter to manually exclude Image and Image Grid Widgets from lazy loading.
* Developer: Added `siteorigin_widgets_contact_email_headers` to add additional headers to the Contact Form.
* Developer: Added `siteorigin_widgets_tabs_scrollto_offset` to adjust the Tabs `Scroll To` offset.
= 1.32.3 - 08 April 2022 =
* Anything Carousel: Restored Autoplay functionality if Navigation Arrows are disabled.
* Features: Improved CLS by inlining column alignment.
* Hero and Layout Slider: Improved CLS by inlining height value on load.
* Image Grid: Renamed `Display` settings group to `Settings`.
* Updated Google Fonts list.
= 1.32.2 - 23 March 2022 =
* Anything Carousel: Restored arrow functionality. Resolved `Less_Exception_Compiler` notice.
= 1.32.1 - 20 March 2022 =
* Post Carousel: Resolved Autoplay not functioning when Navigation arrows disabled.
= 1.32.0 - 14 March 2022 =
* Post Carousel: Added a new `Autoplay Continuous Scroll` setting.
* Post Carousel: Resolved a potential item tag notice.
* Widgets Block: Resolve error when trying to use disabled third-party widget.
* Widgets Block: Accounted for a potential third-party widgets filename conflict.
* Widgets Block: Added non-SiteOrigin widget author names.
* Widgets Block: Resolved a potential `Undefined index` notice if a widget isn't selected.
= 1.31.0 - 05 March 2022 =
* Post Carousel: Updates to allow for themes to be added.
* Post Carousel: Fixed `Responsive > Tablet > Landscape` settings.
* Post Carousel: Added support for the Default Thumbnail: External URL field.
* Developer: Added preset field support for state emitters when reopening widgets.
* Developer: Added `siteorigin_widgets_accordion_scrollto_offset` filter.
= 1.30.1 - 22 February 2022 =
* Widgets Block: Prevented a potential notice within the WP admin.
= 1.30.0 - 14 February 2022 =
* Button and Contact Form: Migrated `onclick` to `on_click` to avoid a Worfence flag.
* Call To Action: Remove `Use default background colors` setting.
* Social Media Buttons: Added new settings: `Icon color hover` and `Background color hover`.
= 1.29.2 - 04 February 2022 =
* Widgets Block: Excluded the Contact Form from caching. Resolves error on first submission.
= 1.29.1 - 27 January 2022 =
* Updated `Tested up to` tag to `5.9`.
* Widgets Block: Prevented a potential `Undefined Error` outside of the WP admin.
= 1.29.0 - 15 January 2022 =
* Accordion/Tabs: Removed the Border Radius setting dependency on Border Width.
* Contact Form: Added a new `Enabled` setting to checkbox options.
* Sliders: Disabled `loading` override when the AMP plugin is active.
* Widget Block: Excluded Post Carousel from caching.
= 1.28.0 - 26 December 2021 =
* Accordion: Set closed panels to hidden prior to loading.
* Anything Carousel: Added a new Animation setting. Choose between Ease or Linear.
* Features: Set Feature admin label to Icon title or Title text if available.
= 1.27.0 - 17 December 2021 =
* Price Table: Added new Header, Featured and Feature text color settings.
* Slider Widgets: Prevented potential settings migration error.
* Widget Block: Prevented potential Google Maps error.
= 1.26.1 - 04 December 2021 =
* Carousels: Renamed `Carousel Settings` to Settings.
* WPML: Filter posts listed in widget search fields to current page language.
= 1.26.0 - 17 November 2021 =
* CSS Cache Compatibility: Added support for Breeze and Hummingbird.
* Anything Carousel: Added a ` Slides to show` setting.
* Button: Allowed for apostrophes to be used in the `Onclick` field.
* Hero: Updated buttons to allow the dollar sign to be used.
* Social Media Buttons: Added the Google network.
* Widget Block: Resolved potential edge case Google Maps console errors.
* Widget Block: Minor Icon Widget form styling improvements.
= 1.25.1 - 30 October 2021 =
* Google Maps: Resolved an unexpected content error when previewing in the Block Editor.
* Hero: Migrated Text Shadow setting from a 0-1 to a 0-100 range.
* Sliders: Added a Background video opacity setting for self-hosted and external videos.
* Video Player: Removed Related Videos setting.
= 1.25.0 - 21 October 2021 =
* Features: Added a `Link feature column to more URL` setting.
* Hero and Layout Slider: Moved Layout settings to dedicated section.
* Hero and Layout Slider: Added padding responsive settings.
* Image: Added a `Rel` field. The rel attribute specifies the relationship between the current document and the linked document.
* Image Grid: Added a `Custom Size` option to the `Image size` setting.
* Post Carousel: Prevented potential overflow on load.
* Post and Anything Carousel: Changed `Display navigation` label to `Display navigation arrows`.
* Sliders: Added an `Unmute icon` and `Unmute icon position` for background videos.
* Developer: Added multiple media repeater support.
= 1.24.0 - 08 October 2021 =
* Anything Carousel: Set wrapper to full-width to avoid a potential sizing issue.
* Anything Carousel: Prevented the Widget Styles - Link Color setting from overriding `Arrows color`.
* Anything Carousel: Prevented active navigation dot from displaying a cursor on hover.
* Anything Carousel: Ensured navigation dot activation correct when viewing the last item.
* Button: Prevented potential error by ensuring `$instance` is not empty before modifying it.
* Google Maps: Changed map setup to allow for greater flexibility.
* Post and Anything Carousel: Added a Responsive section `Show navigation` setting.
* Post and Anything Carousel: Migrated design settings to a `Design` section.
* Slider Widgets: Moved the `Loop slide background videos` to within the frame `Background video` section.
* Social Media Buttons: Removed the Google+ network.
* Video Player Widget: Enabled oEmbed for external videos.
* Slider Background Videos: Mute when autoplay is enabled. Required for video autoplay in Chrome.
* WPML: Added a translation compatibility XML file. Requires WPML 4.5.
* Developer: Added a new event for the carousel `carousel_setup`.
= 1.23.1 - 16 August 2021 =
* Anything Carousel: Set wrapper to full-width to avoid potential sizing issue.
* Anything Carousel: Prevented Page Builder widget Links Color setting from overriding navigation arrow color.
* Anything Carousel: Ensured navigation dot cursor is correct on hover.
* Testimonials: Collapse to column for mobile.
* Beaver Builder: Improved color picker styling.
* SiteOrigin Widget Block: Resolved new widget area notice.
* Updated Google Fonts list.
* Minor admin area form styling improvements.
= 1.23.0 - 20 July 2021 =
* Compatibility enhancements for WordPress 5.8.
* Anything Carousel: Resolved responsive behaviour issue.
= 1.22.0 - 15 July 2021 =
* New Widget! Anything Carousel: Display images, text, or any other content in a carousel.
* Headline: Added a global Responsive Breakpoint setting at Plugins > SiteOrigin Widgets > Headline: Settings.
* Headline: Added Mobile Alignment settings for the Headline, Sub Headline, and Divider.
* Layout Builder: Widget Areas: Prevented the creation of a CSS file for every page.
* Slider: Disallowed Jetpack Lazy Loading.
* Video Player: Added `Enable browser video controls` setting.
* Developer: Added a preset form field. Store a selected preset. [Docs](https://siteorigin.com/docs/widgets-bundle/form-building/presets/).
* Developer: Fixed `SITEORIGIN_WIDGETS_DEBUG` constant. Useful for debugging, bypasses widget CSS cache. [Docs](https://siteorigin.com/docs/widgets-bundle/templating/less-stylesheets/).
= 1.21.0 - 24 June 2021 =
* Google Maps: Prevented a jump on load when Info Windows is set to always display.
* Google Fonts: Ensured all weights and styles are imported.
* Headline: Changed default heading to `h2`.
* Hero: Removed the button alignment setting, alignment is handled directly within each slide frame.
* Image: Added a `Link title to URL` setting.
* Image Grid: Added `Image vertical alignment` and `Grid horizontal alignment` settings.
* Post Selector: Added an option to adjust the taxonomy relationship.
* Sliders: Prevented potential PHP 8 error with overlay attribute filter.
* Developer: Added an optional title to the multiple media form field.
* Developer: Improved multiple media non-image support.
* Developer: Added an optional `image_dimensions` parameter for the multiple media field.
* Developer: Added a repeater increment label option.
= 1.20.0 - 01 June 2021 =
* Added integration for WP Super Cache and Swift Performance plugins.
* Button: Added a `Mobile align` setting and global Button `Responsive Breakpoint` setting at `Plugins > SiteOrigin Widgets > Button: Settings`.
* Contact Form: Allowed whitelisted HTML in checkbox option fields.
* Headline: Fixed invalid font property when multiple font variants in use.
* Image: Added native lazy `loading` attribute.
* Image Grid: Added native lazy `loading` attribute for external images.
* Image Grid: Changed `Spacing` setting to a multi-measurement field and renamed it to `Image padding`.
* Sliders: Added `Loop slide background videos` setting.
* Sliders: Improved background video autoplay setting description.
* Sliders: Removed `wp_is_mobile` dependency to improve caching.
* Video Player: Added `Loop` setting for YouTube videos.
* Widget Block: Resolved Contact Form nonce error.
* Widget Block: Resolved `Only variables should be passed by reference` notice.
* Developer: Cleared the Icon Widget default icon if the icon font family doesn't exist.
* Developer: Fixed multiple media remove link detection.
= 1.19.0 - 19 May 2021 =
* Button: Allow shortcodes in `Destination URL` field. Only shortcodes that return a URL are suitable.
* Contact Form: Added a new `Number` field type.
* Image Grid: Changed vertical align to baseline.
* Layout Slider: Added a `slider_control` shortcode.
* Slider: Ensured the foreground image height is only set if a background image is present.
* Sliders: Added `Always show navigation on desktop` setting.
* Social Media Buttons: Added IMDb.
* Video Player: Added FitVids support for fluid width video embeds.
* Widget Block: Added a widget type search field.
* Widget Block: Minor media field responsive improvements.
* Widget Block: Automatically activate inactive widgets as needed.
* Styling improvements to the icon filter fields.
* Responsive improvements to the `Plugins > SiteOrigin Widgets` page.
* Developer: Added a multi-upload field for media.
* Developer: Added an option to disable the TinyMCE form field Add Media button.
* Developer: Added form field class prefix and path filtering using `siteorigin_widgets_field_registered_class_prefixes` and `siteorigin_widgets_field_registered_class_paths`.
= 1.18.2 - 27 April 2021 =
* SiteOrigin Widget Block: Ensured icons are enqueued.
* Slider: Only apply foreground height if a background image is set.
= 1.18.1 - 20 April 2021 =
* Reverted Less `3.1.0` update to restore compatibility for PHP versions below `7.1`.
= 1.18.0 - 20 April 2021 =
* Updated the Google fonts list.
* Updated Font Awesome from `5.14.0` to `5.15.1`.
* Block Editor: Styling fixes including specific fixes for the Twenty Twenty-One theme.
* Contact Form: Set missing message default value.
* Contact Form: Nested the required indicator to make styling easier.
* Editor: Stopped processing the `<!--more-->` quicktag in previews.
* Features: Ensured the title tag exists before outputting.
* Image: Added ability to set custom image sizes.
* Image Grid: Changed to use Flexbox to avoid unintended spacing.
* Post Carousel: Added an overlay hover opacity setting.
* Slider: Added a `Height` setting if the `Foreground image` is set.
* Social Media Buttons: Added Discord.
* Video: Added a `Loop` setting for self-hosted videos.
* Video: If `autoplay` is enabled, `playsinline` will be added.
* Accessibility: Implemented keyboard navigation for the Widgets Bundle admin interface. You can now tab through all fields and settings, and make changes without a mouse.
* Developer: Post Carousel: Added `siteorigin_widgets_post_carousel_post_limit` filter
* Developer: Google Maps: Corrected marker JavaScript property names.
* Developer: Block Editor: Store and serve rendered widget.
* Developer: Image form field: Added an optional parameter `custom_size` to enable custom sizes.
* Developer: State Emitters: Improved media field external support.
* Developer: Sanitized italic fonts rather than clearing them.
* Developer: Replaced older-style PHP type conversion functions with type casts.
* Developer: Add `units` and `default_unit` parameters for the measurement field.
* Developer: Changes for PHP 8.
= 1.17.11 - 09 December 2020 =
* Google Maps: Added Map Style button styling.
* Accordion: Submitted contact forms added to Accordion will now open the panel on load.
* Tabs: Prevented the Scroll To setting from affecting the currently selected tab.
* Image Grid: Use image title as item label if set.
* Developer: jQuery updates for WordPress 5.6.
* Developer: Set Slider background image loading to Eager.
* Developer: Exposed Google Maps instances. Once set up, maps can be accessed via `sowb.SiteOriginGoogleMapInstances`.
* Developer: Add a Google Maps `maps_loaded` event that triggers after all of the Google Maps have finished being set up.
= 1.17.10 - 13 November 2020 =
* TinyMCE: Resolved issue with the Add Media button.
= 1.17.9 - 12 November 2020 =
* Block Editor: Resolved widget preview issue.
* Elementor: Minor admin styling improvements.
* Google Maps: Added a new global consent setting `Require consent before loading Maps API` at `Plugins > SiteOrigin Widgets > Google Maps`.
* Posts Carousel: Added a `Link target` setting.
* Video Player: Mute self hosted videos set to autoplay.
* Tabs: Added a new global setting `Scroll top` at `Plugins > SiteOrigin Widgets > Tabs` to disable scrolling when changing tabs.
* Accordion: Added a new global setting `Scroll top` at `Plugins > SiteOrigin Widgets > Accordion` to disable scrolling when changing accordions.
* Posts Carousel: Added a new `Slides to scroll` setting for desktop, tablet, and mobile.
* Safari: Ensured the Hero can save when used at `Appearance > Widgets`.
* Updated the widget title field to allow HTML in all SiteOrigin widgets.
* Changed to `enqueue` Google Fonts rather than `@import`.
= 1.17.8 - 28 September 2020 =
* Image: Prevent image stretching while using Safari
= 1.17.7 - 10 September 2020 =
* Hero and Layout Sliders: Disable image preload for images added to frames.
* Resolved a preview issue with widgets that attempt to render sub widgets but don't output them.
* Contact Form: Added a field max-width setting.
* Resolved a jQuery Migrate notice on the global widget settings page at `Plugins > SiteOrigin Widgets`.
* Media field: Enhancements to improve usability.
* Disabled Settings buttons while saving global widget settings at `Plugins > SiteOrigin Widgets`.
* State Emitters: Added an animation to conditional settings.
* Posts Carousel: Prevented blank slides loading after all posts are loaded.
* Posts Carousel: Added a new Design settings section and settings.
* Posts Carousel: Ensured the correct navigation buttons are hidden when multiple carousels are in use.
* IE 11: Prevented images from exceeding the widget container.
* Removed wpColorPickerL10n if WP >= 5.5.
= 1.17.6 - 17 August 2020 =
* Hero and Layout Sliders: Disabled lazy loading for images added to the slide content area.
* Slider: Disabled lazy loading in the Block Editor.
= 1.17.5 - 12 August 2020 =
* Slider: Disable WordPress 5.5 Lazy Loading.
= 1.17.4 - 06 August 2020 =
* Post Carousel: Improved support for multiple carousel widgets on the same page.
* Post Carousel: Improved mobile support.
* Sliders: Added `Autoplay` and `Autoplay Pause on Hover` settings to the Slider, Layout Slider and Hero widgets.
* Features: Allowed shortcodes to be used in the Text field.
* Contact Form: Fix to ensure the correct fields are passed to Akismet.
= 1.17.3 - 23 July 2020 =
* Reverted: Features: Prevented icon overlapping text in edge cases.
* Social Media Buttons: Added TikTok.
* Button: Removed `:visited` color targeting.
* Button: Set hover background color defaults.
* Carousel: Improved multi-carousel support.
* Carousel: Triggered click on swipe for mobile devices.
* Carousel: Contextualized variables as needed.
* Carousel: Find the `ItemWidth` as needed rather than predefining it.
= 1.17.2 - 21 July 2020 =
* Resolved button Less CSS bug.
= 1.17.1 - 20 July 2020 =
* Post Carousel: Prevented all posts from outputting. `10` will be output at a time if `Posts per page` isn't set.
* Post Carousel: Inlined navigation buttons if a title is set.
* Updated the Google Fonts array.
* Editor: Added `wp_filter_content_tags` function.
* Updated [Packery](https://packery.metafizzy.co/) to latest version.
* Simple Masonry: Added a `Layout origin` setting.
* Testimonials: Set testimonial text width to `100%`.
* Updated Font Awesome to latest version.
* Image: Added `siteorigin_widgets_image_args` filter allowing adjust all of the widget arguments and attributes.
* Simple Masonry: Added external image support.
* Code Form Field: Removed HTML sanitization.
* Tabs: Added smooth scroll to tab when linked to.
* Added `font-display: block` to all font icons.
* Widget Block: Added `Additional CSS Classes` output.
* Button: Added Button hover style settings.
* Features: Prevented icon overlapping text in edge cases.
* Post Carousel: Resolved IE 11 JavaScript error.
* Post Carousel: Vertically align navigation icons and title when title present.
* Editor: Added `noreferrer` to any target links preventing Layout block failing validation when `target=_blank` link added.
* Hero: Prevented buttons from loading when buttons shortcode isn't added.
* Post Carousel: Added a `Link target` setting.
* Post Carousel: Disable button navigation if number of visible posts is more than total posts.
* Mobile: Improved admin form field responsive behavior.
* Updated Font Awesome from `5.13.0` to `5.14.0`.
= 1.17.0 - 22 May 2020 =
* Simple Masonry: Added a preloader and related settings.
* Post Carousel: Migrated to Slick Carousel.
* Post Carousel: Added RTL support.
* Icon: Added Title field.
* Minor admin interface styling fixes.
* Price Table: Added title for the feature hover text.
* Testimonials: Added `Equalize testimonial height` setting.
* Testimonials: Fixed user image alignment.
* Switched to Wikimedia's fork of less.php.
* Added error suppression for external Less library.
= 1.16.1 - 20 April 2020 =
* Accordion: When hiding panels, only search the current accordion and not nested accordions.
* Slider Widgets: Removed slide navigation numbers from excerpt output.
* Added support for custom icon styles.
* Tabs: Fixed top/bottom tab alignment when tab position is set to right/left.
* Post Carousel: Prevent themes from adjusting the thumbnail top margin.
* Improved the reliability of widget description translations. Updated various widget descriptions.
* Editor: Resolved the notice appearing when post meta wasn't available.
* Simple Masonry: Item labels - If the item title field isn't populated use the image title field.
* Hero: Added a setting to vertically align the slide contents.
* Updated jQuery TouchSwipe.
* Sliders: Fixed pagination spacing when HTML optimization is in use.
* Layout Slider: Set frame labels based on the content inserted.
* Slider: Set frame labels based on the content inserted.
* Contact Form: Added placeholder support to the dropdown select field. Used if the field label position is set to Inside.
* Contact Form: Added Required support for the dropdown select field.
* FontAwesome: Moved Brands to the last position in dropdown list.
* Layout Slider: Added a setting to vertically align the slide contents.
= 1.16.0 - 11 February 2020 =
* Block Editor: Fixed widget select field width and alignment.
* Removed unused template files.
* Contact Form: Improved checking for SiteOrigin development email addresses.
* Minor styling improvements to the Classic and Block Editor admin interfaces.
* Features: Added a new setting to select the H tag to be used for the title field.
* Hero: If a height value is assigned, added prefilling to avoid a page jump.
* Hero: Added `font-display: swap` for Google font imports.
* Layout Slider: If a height value is assigned, added prefilling to avoid a page jump.
* Image Grid: Added a class of `sow-image-grid-image_html` to each image. Can be used to exclude images from Lazy Loading plugins.
* Simple Masonry: Added a class of `sow-masonry-grid-image` to each image. Can be used to exclude images from Lazy Loading plugins.
* Features: Added fallback support for the Icon image field.
* Testimonials: Add fallback support for the Image field.
* Post Carousel: Prevented looping until all posts are loaded.
* Post Carousel: Added a new setting to disable looping.
* Post Carousel: Prevented scrolling past loading items and loop as soon as last item is completely visible.
* Contact Form: Added disabled cursor to submit button when disabled.
* Block Editor: Resolved Features widget default settings.
* Tabs and Accordion: Account for accented characters.
* Social Media Buttons: Allowed for multiple instances of the same network without duplicating colors.
* Social Media Buttons: Ensured all icons are correctly centered.
* Contact Form: Added lightweight validation for phone numbers.
* Block Editor: Display author for third party widgets.
* Block Editor: Added processing for the more quicktag in the Editor widget.
* Tabs and Accordion: Added icon spacing.
* Testimonials: Improved image sizing behavior for square images.
= 1.15.9 - 11 November 2019 =
* Contact Form: Improved default email address handling.
* Contact Form: Improved subject field labeling.
* Post Carousel: Loop the carousel when reaching the end.
* Social Media Buttons: Fixed issue with responsive breakpoint unit of measurement.
* Google Maps: Ensured settings modal window opens when directed to insert API key.
* Google Maps: Fixed map center field when used in the Customizer.
* Fixed compatibility with WordPress 5.3.
* Minor code style and widget label improvements.
= 1.15.8 - 20 August 2019 =
* Run FitText setup on window resize events.
* TinyMCE field: Copy any missing content CSS urls from main editor.
* Post Carousel: Prevent scrolling past the last item.
* Contact Form: Prevent sending to testing/dev emails.
* Widget block: Add `h3` wrapper for widget titles.
* Image widget: Remove `width:inherit;` IE8 fix for bound setting which breaks in IE11.
* Sliders: Added padding to slider navigation arrows.
* Accordion: Check if if anchor is present in URL and scroll to Accordion item.
* Various form description and styling fixes.
= 1.15.7 - 22 May 2019 =
* Widget Block: Ensure changed data is retained after previewing.
* Image widget: Prevent overflow of image container when wrapped in link.
* Image Grid: Dispatch event to notify listeners that layout is complete.
* Image Grid: Fix layout for images wrapped in links.
* Image grid: Use image media title for display if title isn't set in the widget form.
* Layout Slider: Remove header and text style fields.
* Remove Autoptimize cache clearing as it detects changes automatically.
* Update FontAwesome icons.
* Google Maps location field: Ensure value is retained after preview in the block editor.
* Prevent issue in SiteOrigin Layout Block when `sowb` hasn't been defined.
= 1.15.6 - 29 April 2019 =
* Image: Fix images vertical stretching.
* Image: Fix widths for images wrapped in links.
* Google Maps Location Field: Remove some unnecessary use of jQuery to avoid `$ is not a function` errors.
* Google Maps Location Field: Check if matchError exists before accessing.
= 1.15.5 - 25 April 2019 =
* Removed admin notice for new widgets.
* Slider Base Widget: Removed unused background videos height setting.
* Price Table: Recalc equalized heights when window size or orientation changes.
* Google Maps location field: Use value in sanitization if already an array.
* Add compatibility for Autoptimize.
* Simple Masonry: Ensure all available width is used for layout.
* Image: Change alignment to use `display:flex` instead of `text-align`.
= 1.15.4 - 27 March 2019 =
* Slider field: Live updates for display value.
* Widget block: Show error if missing or invalid widget data.
* Google Maps: Add more links to relevant docs for enabling required APIs.
* Google Maps Location field: Catch API key errors and display notice.
* Run FitText resizer on `setup_widgets` too.
* Add font url as property of font info object.
* Image grid: Use opacity for initial hide of images so that size may still be detected.
* Google Maps: Detect draggable or scroll_zoom before running setting migration.
* Accordion and Tabs: Trigger window resize on start of animation.
* Icon: Prevent undefined index notices.
= 1.15.3 - 6 March 2019 =
* Image grid: Fallback support, alt text, use measurement fields.
* Features: Fix responsive layout.
* Google Maps: Update to use gesture handling and separate zoom level for mobile.
* Google Maps: Default height when height field is empty.
* Sliders: Option to always show navigation on mobile devices.
* Accordion: Keyboard navigation.
* Beaver Builder: Fix icons and widgets not saving.
* Video: Allow using YouTube embed URLs.
* Post Carousel: Accessibility improvements.
* Escape namespaced widgets in previews.
* Flag additional metaboxes as incompatible with the block editor.
* Fix state emitters for sub-widget fields.
* Google Maps: Remove API key field from widget form, in favor of global API key field.
* Google Maps: Display notice when API key missing.
* Contact form: Prevent double nonce.
* TinyMCE field: Prevent twemoji from replacing emoji in the textarea.
* Widget block: Show appropriate message when widget is missing or deactivated.
* Accordion: Fix open/close icon layout when set to left position.
* Social Media Buttons: Prevent the phone network from opening in a new window.