forked from Codeinwp/otter-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1358 lines (841 loc) · 50.1 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
=== Otter Blocks - Gutenberg Blocks, Page Builder for Gutenberg Editor & FSE ===
Contributors: themeisle, hardeepasrani, soarerobertdaniel7, mariamunteanu1, arinat, uriahs-victor, john_pixle, wildmisha, irinelenache
Tags: block, blocks, gutenberg, gutenberg blocks, wordPress blocks, editor, block Editor, page Builder, post blocks, post grids
Requires at least: 5.9
Tested up to: 6.3
Requires PHP: 5.6
Stable tag: trunk
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
Otter offers dynamic Gutenberg blocks for the WordPress block editor. Craft beautiful posts & pages using post blocks, post grids & WordPress blocks. Beyond a page builder, it provides essential Gutenberg extensions for an enhanced block editor experience.
== Description ==
Otter is a Gutenberg Blocks page builder plugin that adds extra functionality to the WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.
## Quick Links 🔗
- Want to see Otter blocks in action before installing? [SEE OTTER BLOCKS DEMO](https://demo.themeisle.com/otter-blocks/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks)
- New to the Gutenberg Blocks ecosystem? Check out our article on [GUTENBERG EXPLAINED](https://themeisle.com/blog/gutenberg-blocks-explained/)
- Need any help with setup? Checkout our [DOCUMENTATION](https://docs.themeisle.com/article/1478-otter-blocks-documentation)
- Interested in Otter Pro? Here are more details about [OTTER PRO](https://themeisle.com/plugins/otter-blocks/upgrade/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks)
## With Otter Blocks, You Get Access To
- 23+ extra blocks for Gutenberg
- Collection of Patterns
- Visibility Conditions
- Custom CSS
- Animations and more
For all blocks including third-party blocks present on your website.
The Custom CSS block feature makes it possible to directly customize the CSS properties of any Gutenberg block on the page, while the Animation feature makes it quick and easy to add animations to any block to enhance the appeal of your different page blocks and sections. With the Visibility Conditions feature by Otter, you can set which conditions should be met for your chosen blocks to be displayed on the page.
Patterns Library, contains a range of different elements in a variety of styles to help you build great pages. All of your website’s most important areas are covered: headers, testimonials, pricing tables, sections and more.
### Checkout a quick overview of Otter Blocks
https://www.youtube.com/watch?v=WcS2Vi4IOYw
## How Can Otter’s Gutenberg Blocks Help You? 🤔
### A WordPress Gutenberg Blocks Plugin
Otter adds 23+ amazing and useful blocks to make page building in Gutenberg a breeze!
More than just blocks, you need advanced customisation options to give you control over style and appearance. With Otter, you’ve got it all.
Every block has customization support to help you style your site according to your vision:
- Color controls for primary, accents, and backgrounds.
- Animation backing, bouncing, fading, flipping, rotating, sliding, rolling, light speed and more at the click of a button.
- Typography controls from spacing to font choice.
### Mobile Responsiveness of Otter Blocks
Create mobile-friendly designs with Otter’s built-in responsive settings. Each block can be tweaked to provide a consistent experience for mobile, tablet, and desktop.
### A WordPress Gutenberg Block Conditions Plugin
Want to show certain blocks only when a user is Logged in or Logged Out? How about if they’re a customer of your store versus an editor for your blog or any other user role? With the Gutenberg Block Conditions feature available in Otter, it’s possible. Upgrade to the PRO version of Otter to unleash the power of more block conditions such as:
- URL Query String
- Date Range
- Day of the Week
- Time of the Day
- WooCommerce Products in Cart
- WooCommerce Total Spent
- WooCommerce Cart Total
- And more
### A WordPress Gutenberg Blocks Animation Plugin
WOW your website visitors with amazing animations that can be added to any block on the page. With over 50+ animations available to choose from; Otter makes it possible to add some extra flare to any post or page on your website
### A WordPress Gutenberg Popup Plugin
Popups are one of the oldest lead-capturing and notice-conveying techniques on the web. With the Gutenberg Popup Block available in Otter, you can create popups made from any other block available in Gutenberg! Fine-tune your popup by setting when they should appear and how they can be closed.
With our popup block, you gain access to multiple triggers such as on load, on exit, on anchor click, and on scroll. Additionally, you can design your popup with custom overlays to align with your brand identity and capture more attention. [Check live demo](https://demo.themeisle.com/otter-blocks/popup/)
### Global Defaults for Otter's Blocks
Tired of always having to set the same options every time you add a block to the page? With Otter, you can set the default configuration for some of the most commonly used blocks like the Section Block, Icon Block, Advanced Heading and more.
## Blocks Available in Otter
#### Section Gutenberg Block [FREE]
A column block on steroids! This block allows you to create a section with up to 6 columns that can each have a custom background color, image or gradient. Use this block's responsive features to set the padding and margin for desktop, tablet and mobile displays. [Check live demo](https://demo.themeisle.com/otter-blocks/section/)
#### Advanced Heading Gutenberg Block [FREE]
The heading block you didn't know you needed. This Otter block has all the functionality of the default heading block with a few other capabilities like the ability to change the font, highlight parts of the text and more. [Check live demo](https://demo.themeisle.com/otter-blocks/advanced-heading/)
#### Button Group Gutenberg Block [FREE]
Create multiple buttons quickly and easily and show them vertically or horizontally based on the device the page is being viewed on. [Check live demo](https://demo.themeisle.com/otter-blocks/button-group/)
#### Slider Gutenberg Block [FREE]
Use this Gutenberg block to create image sliders on any Gutenberg page. Settings include slider height, delay, slides per page, autoplay and more. [Check live demo](https://demo.themeisle.com/otter-blocks/slider/)
#### Accordion Gutenberg Block [FREE]
Use this block to create vertically stacked lists of content that can be revealed or hidden with the click of a button; more commonly known as Accordions. [Check live demo](https://demo.themeisle.com/otter-blocks/accordion/)
#### Tabs Gutenberg Block [FREE]
Use this block to create horizontally stacked lists of content that can be revealed or hidden with the click of a button; more commonly known as Tabs. [Check live demo](https://demo.themeisle.com/otter-blocks/tabs/)
#### Maps Gutenberg Block [FREE]
Choose between either an Open Street Map or Google Maps block and create markers for your points of interest for your website visitors. Our Maps block helps you customize the map experience right down to the color and description of the markers, search for places by name or coordinates, add and remove map controls, or change the size and style of the maps with a few clicks. [Check live demo](https://demo.themeisle.com/otter-blocks/maps/)
#### Countdown Gutenberg Block [FREE]
Counting down to a big event? Show it by making use of these Gutenberg blocks. Count down from Days, Hours, Minutes or Seconds. [Check live demo](https://demo.themeisle.com/otter-blocks/countdown/)
#### Contact Form Gutenberg Block [FREE]
Quickly and easily insert a contact form anywhere on the page. Optionally, turn the form into a lead-generating machine by integrating it with Brevo(Sendinblue) or Mailchimp. [Check live demo](https://demo.themeisle.com/otter-blocks/form/)
#### Masonry Gallery Gutenberg Block [FREE]
Add some pizzazz to your gallery by making it a Masonry layout Gallery instead. [Check live demo](https://demo.themeisle.com/otter-blocks/masonry-gallery/)
#### Posts Gutenberg Block [FREE]
Use this block to insert items from posts, pages and custom post types into the current page being edited. The Posts block allows displaying a certain number of posts on different pages. Customizations available for this block cover areas such as styles, post types, settings, designs, and layout.
#### Product Review Gutenberg Block [FREE]
Blogging about a product you love? Or maybe you run a review website? Use this block to create a review table for the item and list its features, pros and cons as well as optional buy links. [Check live demo](https://demo.themeisle.com/otter-blocks/product-review/)
#### Service Gutenberg Block [FREE]
Use this block to list your business services with an optional button to lead to more details. [Check live demo](https://demo.themeisle.com/otter-blocks/service/)
#### Pricing & Pricing Section Gutenberg Block [FREE]
Use this block to quickly create beautiful pricing tables for your services/products. [Check live demo](https://demo.themeisle.com/otter-blocks/pricing-block-and-section/)
#### Testimonial Gutenberg Block [FREE]
Display your customer reviews on any post or page using Otter's Gutenberg Testimonial Block.
#### About Author Gutenberg Block [FREE]
The About Author Gutenberg block allows editors to add their bio at the end of the blog posts that they publish.
#### Icon Gutenberg Block [FREE]
Display any icon from Font Awesome or our own list of custom icons anywhere on the page. Change colors, add borders and couple with other blocks to enhance the look of your page. [Check live demo](https://demo.themeisle.com/otter-blocks/icon/)
#### Icon List Gutenberg Block [FREE]
Supercharge boring point lists by using custom icons as the pointers. [Check live demo](https://demo.themeisle.com/otter-blocks/icon-list/)
#### Lottie Animation Gutenberg Block [FREE]
Have you heard about Lottie? Awesome! With Otter's Lottie Animation Gutenberg Block, you can display Lottie animations anywhere in Gutenberg. [Check live demo](https://demo.themeisle.com/otter-blocks/lottie-animation/)
#### Add to Cart Gutenberg Block [PRO]
Drop an Add to Cart button block for any WooCommerce product anywhere on the post or page that you're editing.
#### Business Hours Gutenberg Block [PRO]
Create a beautifully styled Business Hours table and fine-tune its settings until it's perfect.
#### Review Comparision Table [PRO]
Get ready to impress your readers with Otter's "Review Comparison Table" block. Effortlessly create professional-looking product comparison tables for your blog or website.
#### Live Search [PRO]
The Live Search feature enhances the core block Search by adding two additional attributes ( isLive and postTypes ) that can be set inside the inspector under the Live Search panel.
---
We're constantly adding new Gutenberg Blocks to Otter to assist in your website page building. Feel free to tell us what we’re missing on our [Support Forum](https://wordpress.org/support/plugin/otter-blocks/)! Some other blocks include:
- Progress Bar Gutenberg Block [FREE]
- Circular Progress Gutenberg Block [FREE]
- Flip Card Gutenberg Block [FREE]
- Popup Gutenberg Block [FREE]
- Sharing Icons Gutenberg Block [FREE]
- Subscribe Form Gutenberg Block [FREE]
### Get More Options in Otter Pro 🤩
#### WooCommerce Builder Blocks
Build custom Single Product Pages using WooCommerce Builder Blocks by Otter. All the new features are designed to maximize your conversion rate and bring more improvements.
With [Otter Pro](https://themeisle.com/plugins/otter-blocks/upgrade/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks), you get a lot more features, including:
- Add to Cart Block
- Business Hours Block
- Product Review Comparison Block
- Live Search Block
- More Dynamic Content options
- More Visibility Conditions options
- and more!
You can try a live demo of Otter Pro [by clicking here](https://themeisle.com/plugins/otter-blocks/try-otter/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks).
## Who is Otter For? 👀
- Anyone looking to bring out the best features of the new Gutenberg Editor with useful and easy-to-use Gutenberg blocks.
- Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of the new Gutenberg Block Editor.
- Anyone trying to build quick Gutenberg pages in record time.
- Anyone trying to hide/show Gutenberg blocks based on conditions like user logged in/out status.
- Anyone trying to add animations to Gutenberg blocks.
## Let's See Some Use Cases 🚀
Otter opens up a world of opportunities! Discover how different audience segments can make the most of it:
- **Travel Bloggers:** Enhance your travel blog with captivating maps using Otter's Maps and Google Maps blocks to showcase your journeys to the world.
- **Non-Profit Organizations:** Engage your audience and promote your cause with Otter's Circle Counter and Testimonial blocks to share inspiring success stories.
- **Restaurant Owners:** Showcase your restaurant's menus and gather reservations easily with Otter's Flip Card and Form blocks for a mouth-watering online presence.
- **Tech Product Reviewers:** Present detailed product reviews with Otter's Product Review, making your content informative and captivating.
- **Bloggers:** Enhance your blog posts with Sharing Icons, creating easy sharing options for your readers. Use Slider to display image galleries and engage your audience.
- **Content Creators and Digital Product Sellers:** Stripe checkout gutenberg block offers a convenient way to sell digital products, such as e-books, online courses, software licenses, or digital artwork, without the need to set up a full-fledged online store. By integrating this block, you can provide a streamlined and secure checkout experience to customers.
- **Product Reviewers:** Create informative and attractive product review comparisons with Review Comparison Table, helping users make informed decisions.
- **Restaurant Owners:** Display your business hours in a stylish format using Business Hours blocks, making it easy for customers to find you.
- **Online Directories:** Websites offering directories, listings, or extensive content where live search simplifies content access.
---
### Support 🤝
We're here to help. Feel free to open a new thread on the [Support Forum](https://wordpress.org/support/plugin/otter-blocks/).
### Documentation 📚
Discover how to make the most of Otter Blocks with our detailed and user-friendly [documentation](https://docs.themeisle.com/article/1478-otter-blocks-documentation).
### Become a Contributor 💁♂️
Otter Blocks is an open-source project, and we welcome contributors to be part of our vibrant community! Help us improve the plugin and make it even better - [GitHub Link](https://github.com/Codeinwp/otter-blocks/)
### Useful Resources 📌
- Read more about WordPress on our [blog](https://themeisle.com/blog/).
- Interested in our other plugins? Take a look [here](https://themeisle.com/wordpress-plugins/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks).
- Get the most out of Otter Blocks with our helpful [YouTube Tutorials Playlist](https://youtube.com/playlist?list=PLmRasCVwuvpSep2MOsIoE0ncO9JE3FcKP).
== Screenshots ==
1. Gutenberg Block Animations
2. Visibility Condition Rules
3. Posts Block
4. Google Map Block
5. Section Block
== Installation ==
#### Automatic Installation
To download and install the Otter plugin, make sure you follow the steps below:
- Navigate to the WordPress Dashboard > Plugins.
- Click the Add New button and type in the Search Bar "Otter Blocks".
- When the plugin appears, click on the Install button and then on Activate.
#### Manual Installation
- Log into your website admin page, then go to Appearance > Plugins. You will see all the plugins currently installed in your dashboard listed there.
- To install a new WordPress plugin, simply click on the Add New tab.
- Click the Upload Plugin button in the WordPress Dashboard.
- Click the Choose File button, select the ZIP archive of the Otter Blocks plugin from your local computer and press the Install Now button.
- Click on the Activate button under the "Plugin installed successfully" message.
If you want to upload the plugin using FTP, [click here](https://themeisle.com/blog/what-is-ftp-wordpress/) to see a detailed explanation about it.
== Frequently Asked Questions ==
= Is Otter Blocks free? =
Otter comes in both free and premium versions. The [premium version](https://themeisle.com/plugins/otter-blocks/upgrade/) offers a wider variety of blocks and multiple options to customise them, [compared to the free version](https://docs.themeisle.com/article/1487-whats-the-difference-between-otter-free-and-otter-neve-pro).
= What page builder is compatible with Otter? =
Otter provides blocks for Gutenberg, the default WordPress editor and page builder.
= Can I use Otter with any WordPress theme? =
Sure, Otter is compatible with any WordPress theme.
= Where can I get help? =
If you encounter any difficulties or if you have questions about Otter, you can create a ticket on our [support forum](https://wordpress.org/support/plugin/otter-blocks/). Also, feel free to check our [documentation](https://docs.themeisle.com/article/1478-otter-blocks-documentation) to find out more about the features within the plugin and how to use it to its full potential.
= What are the Patterns and how can I use them? =
The Patterns have been designed to make it easier for you to build your site using predefined blocks that can be then customised according to your needs. You can take a look at our [dedicated documentation](https://docs.themeisle.com/article/1785-block-patterns-otter-features-library) to find out all you need to know about the Patterns.
== Changelog ==
##### [Version 2.3.4](https://github.com/Codeinwp/otter-blocks/compare/v2.3.3...v2.3.4) (2023-08-23)
- Fix z-index with Shape Divider in Section
- Fix Tabs Block Resetting Editor Sidebar When Changing Viewport
- Fix Fatal Error in Form Submission Page in Certain Cases If Viewed as Super Admin
- Fix Progress Bar Height for Mobile Devices
- Fix Stripe Block Not Working Correctly in WP 5.9
- Fix Form Submit Messages Not Working
##### [Version 2.3.3](https://github.com/Codeinwp/otter-blocks/compare/v2.3.2...v2.3.3) (2023-08-11)
- WordPress 6.3 Compatibility
##### [Version 2.3.2](https://github.com/Codeinwp/otter-blocks/compare/v2.3.1...v2.3.2) (2023-07-17)
- Added Autoresponder to Stripe Block
- Adding Alternative Style to Review Block
- Improvements to Dynamic Value Module
- Fix Form Redirection Not Working Correctly
- Fix Bow Shadow Not Visible in the Editor
##### [Version 2.3.1](https://github.com/Codeinwp/otter-blocks/compare/v2.3.0...v2.3.1) (2023-06-20)
- Added Option to Allow Block Tools to Be Enabled by Default
- Improvements for Social Sharing Block
- Improvements to Posts Block’s Handling of WooCommerce Products
- Fix Dynamic Tags Not Working with Neve Pro Custom Layouts
- Fix Wrong Defaults in Form
- Fix Form Submissions Not Saving to Database If SMTP Fails
- Fix the Option to save Google Fonts Locally Not Working
- Fix Form Option Not Saving
- Fix Illegal String Offset on Minimal Version Check
- Fix the Issue with Otter Menu Pointing to the Old URL
- Fix Form Submission Email Being Used as Post Title of Form Submissions
#### [Version 2.3.0](https://github.com/Codeinwp/otter-blocks/compare/v2.2.7...v2.3.0) (2023-05-25)
- Add Custom Taxonomy Support to Dynamic Values
- Add More New Fields to Form Block
- Add Option to Store Form Block Emails to WordPress Dashboard
- Add Api Field in Stripe Block
- Add Support for HTML in Stripe Block Messages
- Add CDN Links in Patterns
- Various Form Block Enhancements
- Bump Minimum PHP Compatibility to 5.6
- Fix Dynamic Tags Not Working in Widgets
- Fix Review Comparison Table Not Taking Reusable Review Blocks into Consideration
- Fix Unused Assets Being Loaded When a Block Is Removed from Widgets
- Fix Custom CSS Module Not Working with FSE
- Fix Accordion Block Schema Conflicts with Neve PRO Performance Module and Lazy-loading Off-screen Elements
##### [Version 2.2.7](https://github.com/Codeinwp/otter-blocks/compare/v2.2.6...v2.2.7) (2023-05-08)
- Add Width Option to Form Block
- Improve Stripe Block Error Handling
- Fix the Issue with SVG Logos Not Being Able to Get Picked Logo
- Fix Background Color Detection
- Fix Shape Divider Covering Section Block
- Fix Accordion Block Schema Not Being Removed
##### [Version 2.2.6](https://github.com/Codeinwp/otter-blocks/compare/v2.2.5...v2.2.6) (2023-04-26)
- Hardening Dynamic Content security
##### [Version 2.2.5](https://github.com/Codeinwp/otter-blocks/compare/v2.2.4...v2.2.5) (2023-04-21)
- Fixes a bug with the new WP release causing blocks to crash during transformation
##### [Version 2.2.4](https://github.com/Codeinwp/otter-blocks/compare/v2.2.3...v2.2.4) (2023-03-30)
- Add Preview for Dynamic Data in the Popover Control
- Add New Patterns & Templates
- Add New Closing/Opening Anchor Actions in Popup
- Add Autoresponder Option to Form Block
- WordPress 6.2 Compatibility Testing & Fixes
- Fix CSS Class Not Being Removed If Custom CSS Is Empty
- Fix Custom CSS Not Reflected on Front-end When Used with FSE
- Fix Block Styles Not Loading with Custom Layouts
- Fix WooCommerce Blocks Not Working with the Latest Version of Woo
##### [Version 2.2.3](https://github.com/Codeinwp/otter-blocks/compare/v2.2.2...v2.2.3) (2023-03-06)
- Button Group Block Enhancements
- Tabs Block Enhancements
- Add Better Onboarding & Placeholders for Content Blocks
- Add Unlinked Margin Option for the Icon Block
- Add Live Font Preview in Font Picker
- Add In-build Spam Protection in Form Block
- Fix i18n Compatibilities
- Fix Mailchimp Integration in Form Not Getting All Lists
- Fix the Issue with the Line Heading in Advanced Heading
- Fix Issue with Block ID Duplicating When Duplicating Block
- Fix the Wrong Author in Review Block Schema in Certain Cases
- Fix Weird Behaviour When Removing CSS Class in CSS Extension
- Fix Block CSS Not Loading for Dynamic Content
##### [Version 2.2.2](https://github.com/Codeinwp/otter-blocks/compare/v2.2.1...v2.2.2) (2023-02-06)
- Fix Social Sharing Links When Used with FSE
- Fix the Compatibility of the Posts Block with FIFU Plugin
- Fix Animation Module Breaking FSE Mobile Menu
- Fix Section Block Breaking When Changing Theme
- Simplify Dynamic Value Preview
- Copy Animations with Copy-paste Style
##### [Version 2.2.1](https://github.com/Codeinwp/otter-blocks/compare/v2.2.0...v2.2.1) (2023-01-30)
- Form Block Redesign & Enhancements
- Introduce Pro Patterns
- Improve how content blocks behave with darker backgrounds
- Fix Popup behaviour with Sticky elements
- Fix Sticky feature not working properly with Tabs Block
- Fix some minor issues with various themes
- Fix PHP 8.2 issues
#### [Version 2.2.0](https://github.com/Codeinwp/otter-blocks/compare/v2.1.6...v2.2.0) (2023-01-10)
- Added Stripe Block
- Added hCaptcha Integration
- Added Live Search Addon
- Added Parameter Based Dynamic Value
- Added a Country Location for Dynamic Value & Conditions
- Added Cookie-based Block Conditions
- Added Copy/Paste-keyboard Shortcuts
- Added New Otter Block Icons
- Added Image Size Option to Review Block
- Added Option to Show Last Updated Date in the Posts Block
- Redesigned Global Defaults UI & Block Visibility Controls
- Redesigned UI for Block Extensions
- Allow Non-standard Characters in Anchor
- Allow Description for Product Review Block
- Improve Query String-Based Visibility Conditions
- Improve Evergreen Countdown
- Fix Popup Position Not Being Changed
- Fix Popup Width Not Being Responsive on Mobile
- Fix Button Group Styles Not Working in FSE Editor
- Fix Advanced Heading Margin Control
- Fix Lotties Console Error
- Fix Slider Block Not Working in RTL
- Fix the Form Block Not Working Inside a Popup
##### [Version 2.1.6](https://github.com/Codeinwp/otter-blocks/compare/v2.1.5...v2.1.6) (2022-12-09)
- Add option to show Sticky Posts in Posts Block
- Add min font-size & height for the Process Bar Block
- Disable Section onboarding by default
- Add default transition timer to Section
- Various fixes in Dynamic Values
- Fix Review Block schema issue
- Fix Image alignment in Review Block
- Fix Form Block not working in Templates
- Fix Sticky Float option not sticking to Left
- Deprecate older blocks
##### [Version 2.1.5](https://github.com/Codeinwp/otter-blocks/compare/v2.1.4...v2.1.5) (2022-11-23)
- Fix Black Friday deal notice not dismissing; sorry for that.
##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
- Advanced Heading Enhancements
- Fix the Widgets page not loading with Otter on Chrome
- Fix Custom CSS work with FSE
- Fix the Button Color Issue
- Migrate WooCommerce Comparison to Sparks Plugin
- Fix Flip Block not saving Responsive Attributes
##### [Version 2.1.3](https://github.com/Codeinwp/otter-blocks/compare/v2.1.2...v2.1.3) (2022-11-10)
- Fixed a crash issue for users with PHP8.0 & PHP8.1 with WP version lower than 6.1
##### [Version 2.1.2](https://github.com/Codeinwp/otter-blocks/compare/v2.1.1...v2.1.2) (2022-11-09)
- Section Enhancements
- Flip Block Enhancements
- Accordion Block Enhancements
- Popup Block Enhancements
- Icon List Block Enhancements
- New Copy & Paste Style Feature
- Add .lottie files support to Lottie Block
- Add Background Overlay to Column Block
- Add Text Color option to Section & Column Block
- Add Structured FAQ Data option to Accordion Block
- Fix some Lottie features not working in Reverse Mode
- Fix Sharing Icon inconsistency in Editor/Frontend
- Fix Shape Divider not working in Section Block when used in a particular way
- Fix Evergreen Countdown stopping after sometime
##### [Version 2.1.1](https://github.com/Codeinwp/otter-blocks/compare/v2.1.0...v2.1.1) (2022-11-01)
- Fix Media Modal not appearing properly if used inside a Popup
- Fix Sharing Block CSS not being generated
#### [Version 2.1.0](https://github.com/Codeinwp/otter-blocks/compare/v2.0.16...v2.1.0) (2022-10-19)
- Add Otter Patterns
- Add Live Preview of Dynamic Values
- Add Post Content option to Dynamic Values
- Add Closing feature to Sticky Extension
- Add class to body when some element is active in Sticky
- Posts Block Redesign
- WordPress 6.1 Compatibility
- Fix Review Block padding not affecting Pros/Cons
- Fix type in Review Block
- Fix Border/Icon color inheritance in Blocks
- Fix Section inconsistency in Global Settings
- Fix Otter allowed_html for Forms
- Fix the Welcome Modal showing more than once
- Fix Section Vertical alignment not working on Mobile
- Fix Tabs Block remove option not working
- Fix Dynamic Image crashing when Woo value is used, and then Woo is deactivated
- More bug fixes
##### [Version 2.0.16](https://github.com/Codeinwp/otter-blocks/compare/v2.0.15...v2.0.16) (2022-09-27)
- Minor fixes.
##### [Version 2.0.15](https://github.com/Codeinwp/otter-blocks/compare/v2.0.14...v2.0.15) (2022-09-27)
- Icon Block Enhancements
- Product Review Block Enhancements
- Add Evergreen Countdown Option to Countdown Block
- Add finishing actions to Countdown Block
- Add Dynamic Link control to Button Blocks
- Add Otter Feedback Option
- Fix Slider Block not working inside Section in the Editor
- Fix unintended border in some blocks when used as non-Admin role.
- Fix Padding control crashing the Section Block
- Fix error in Widgets Screen
- Fix stretched image in Safari
##### [Version 2.0.14](https://github.com/Codeinwp/otter-blocks/compare/v2.0.13...v2.0.14) (2022-09-12)
- Adding an onboarding experience in Otter
- Add Dynamic Links feature
- Progress Bar Block Enhancements
- Animation Extension Enhancements
- Add UI control for the input background color to Form Block
- Add edit link option for Button Group
- Add Float to Top/Bottom mode to Sticky Extension
- Fix Review Comparison Table not accessing reviews from inside Section Block
- Fix ThemeIsle Icons in Button Group not aligning to the text in Editor
- Fix CSS Editor listing not being able to override
- Fix Icon Block padding on ThemeIsle Icons library
- Fix animated elements in viewport flashing before animating
- Fix Flip Block not working correctly in Firefox
- Fix Google Fonts not working in responsive views in the Editor
- Remove AggregateRating from Review Block Schema
##### [Version 2.0.13](https://github.com/Codeinwp/otter-blocks/compare/v2.0.12...v2.0.13) (2022-08-27)
- Fix JS being loaded everywhere even when not required
##### [Version 2.0.12](https://github.com/Codeinwp/otter-blocks/compare/v2.0.11...v2.0.12) (2022-08-25)
- Fix Custom CSS not working with certain selectors
- Disable Author Block for WordPress 5.9 or above; use Core’s block instead
- Small Dynamic Text enhancements
- Add separator alignment option in Countdown block
- Fix Category not shown on Featured Post in Posts Lock
- Fix Alignment control breaking in Section & Posts block
##### [Version 2.0.11](https://github.com/Codeinwp/otter-blocks/compare/v2.0.10...v2.0.11) (2022-08-17)
- Add Option to remove Product Review schema in Product Review block
- Add Pros/Cons Schema to Product Review Block
- Add FSE compatibility to Otter
- Add Docs link to Dashboard & readme
- Fix certain blocks not working inside the Query Loop block
- Fix Visibility Conditions not working for Widgets in the Customizer
- Fix Icon List block not working properly when adding new items
- Fix border issues in Countdown Block
- Fix Color & Gradient picker opening together
- Fix alignment inheritance in Countdown Block
- Fix undefined variable warning when Animations are used in Dynamic Blocks
- Fix Alignment control not appearing in Button Group in FSE
- Fix Countdown & Form blocks not working properly for non-Super Admins in Network sites
- Fix Dynamic Values modal not opening in Advanced Heading block
- Fix Plugin Card not behaving nicely when added into smaller spaces
##### [Version 2.0.10](https://github.com/Codeinwp/otter-blocks/compare/v2.0.9...v2.0.10) (2022-08-04)
- Fix Section Spacing inheritance issue
- Only load Animations on front-end which are being used
##### [Version 2.0.9](https://github.com/Codeinwp/otter-blocks/compare/v2.0.8...v2.0.9) (2022-07-29)
- Add Dynamic Image Module
- Load CSS inline if possible to reduce page load time
- Fix Dynamic Content not working in Query Loop
- Countdown Block Improvements
- Add notice in the Custom CSS editor when CSS has errors that can break the page
- Add Logged-in user meta condition to Block Conditions module
- Add AggregateRating to schema.org of Review Block
- Fix the Sticky feature not working
- Fix CSS inheritance in the editor
- Fix default margin not working in Icon block
- Fix Pro users seeing upsell message
- Fix camelCase CSS variables
- Fix Review Block only accepting absolute numbers
- Remove Height automatic change on Circle Counter
- Add Block Previews
- Bump minimum compatibility to 5.8
##### [Version 2.0.8](https://github.com/Codeinwp/otter-blocks/compare/v2.0.7...v2.0.8) (2022-07-14)
- Fip Block styling issue
- Fix styles & scripts not loading in FSE & responsive mode in the editor
- Fix editor slowness
- Add single column option to Section
- Fix Font Module failing in specific scenarios
- Fix WooCommerce Product Select component keeps spinning when no products are available
##### [Version 2.0.7](https://github.com/Codeinwp/otter-blocks/compare/v2.0.6...v2.0.7) (2022-07-04)
- Fix Google Fonts not loading in certain cases
##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
- Redesigned Form Block with new styling and options
- Optimize Animations Module
- Optimized front-end loading of scripts
- New Dynamic Content Extension
- Add Local Fonts Module in Otter Pro
- Add static background to Maps Block until in loading state
- Allow device-based alignment on Button Group Block
- Add Full Width option in Button Group Block
- Remove Template Library from Otter
- Fix Gallery Block not Converting to Slider Block
- Fix Sections width not being controlled in Single column
- Fix issue with multiple Tabs Blocks not working on the same page
- Fix Flip Block width on hover
- Fix Advanced Heading block not splitting properly when pressed Enter
- Fix alignment not working when Advanced Heading is set to Span
- Fix columns not working properly in Posts Block in the Editor mode
##### [Version 2.0.5](https://github.com/Codeinwp/otter-blocks/compare/v2.0.4...v2.0.5) (2022-05-27)
- Fix CSS notifications appearing multiple times
- Fix excerptLength not being persistent in Posts Block
- Sharing Icons Block Revamp
- Fix ACF extension for Posts not working
- Fix Icon Block style inheritance issue
- Fix Dashboard integration fields losing focus on each keypress
- Fix Accordion title going outside the container
- Improve Masonry Block responsiveness
- Improve Product Review Comparison Block placeholder text
##### [Version 2.0.4](https://github.com/Codeinwp/otter-blocks/compare/v2.0.3...v2.0.4) (2022-05-16)
- Fix slider breaks and throws errors when swiping on desktop
- Flip Card border error
- Otter Pro related UI changes
##### [Version 2.0.3](https://github.com/Codeinwp/otter-blocks/compare/v2.0.2...v2.0.3) (2022-05-12)
- Add Otter Pro support
- Reduce front-end JS dependencies
- Enabled SVG/JSON upload by default
- Add max-width option for Popup Block
- Update Leaflet to latest version
- Fix section related issue with used with Media & Text Block
- Fix word-breaks for Chinese charactersDevelopment
##### [Version 2.0.2](https://github.com/Codeinwp/otter-blocks/compare/v2.0.1...v2.0.2) (2022-04-22)
- Improvements in Lottie Animations Block
- Improvements in About Author Block
- Fix Section Margin/Padding values not migration properly
- Fix Global Defaults causing PHP errors
- Add option to choose default tab in Tabs Block
- Remove “out” animations from Animation Module
- Fix vertical alignment not working in Section
- Add some API validation in Google Maps
- Add default animation to Popup block
- Option to toggle Block Conditions module off
- Performance improvements
- Fix sticky module conflict with third party themes
- Add web support to Section background
- Fix Posts Block responsive issues
- Fix Tabs and Masonry Blocks breaking in certain conditions
- Fix infinite loop while generating block IDs when used inside Reusable blocks
##### [Version 2.0.1](https://github.com/Codeinwp/otter-blocks/compare/v2.0.0...v2.0.1) (2022-03-10)
- Fix styles not loaded for Reusable Blocks
- Fix Accordion block not centering on Twenty Twenty
- Disable Block Animations for [@media](https://github.com/media) print
- Fix use of undefined constant OTTER_BLOCKS_PATH in Blocks Animation
#### [Version 2.0.0](https://github.com/Codeinwp/otter-blocks/compare/v1.7.5...v2.0.0) (2022-03-08)
- Add Flip Block
- Add Block Conditions Extension
- Add Count Animation Extension
- Add Typing Animation Extension
- Add Sticky Block Extension
- Add Global Defaults Sync
- Add Pricing Section Block
- Upgrade to Block Registration API V2
- Simplify Section's Sizing Controls
- Allow Image/SVG Icons in Icon List
- Allow reset in Section Max Width
- Posts Block Revamp
- Update animate.css to latest version
- Improve Web Vitals
- Use CSS Variables in generated CSS
- Reduce SCSS nesting
- Remove unnecessary post types from Posts block
- Fix empty slider freezing the website
- Fix Widgets screen crashing if used alongside WooCommerce
- Fix fatal error when FS mode isn't set to direct
- Fix Overlay background not working in Section Block
##### [Version 1.7.5](https://github.com/Codeinwp/otter-blocks/compare/v1.7.4...v1.7.5) (2022-02-07)
- Increase Section's Max Width
- Fix vertical alignment not working in Section block
- Improve CSS Animation module
- Fix CSS Animation conflicting with third-party plugins
- Disable CSS Editor for Site Editor
- Fix errors occurring with WordPress 5.9
- Fix child tabs block not working properly
##### [Version 1.7.4](https://github.com/Codeinwp/otter-blocks/compare/v1.7.3...v1.7.4) (2021-12-02)
- Fix Leaflet scripts not loading properly
- Fix blocks causing errors on widgets
- Fix Blocks CSS not working properly
- Fix Blocks Animation causing the debugging error
##### [Version 1.7.3](https://github.com/Codeinwp/otter-blocks/compare/v1.7.2...v1.7.3) (2021-11-18)
- Plus a lot more features from 1.7.2: https://github.com/Codeinwp/otter-blocks/blob/master/CHANGELOG.md#version-172-2021-11-18
##### [Version 1.7.2](https://github.com/Codeinwp/otter-blocks/compare/v1.7.1...v1.7.2) (2021-11-18)
- Add Duplicate/Move/Delete options to Section Block’s Columns
- Add Edit option in Lottie Block
- Optimize JavaScript loading
- Fix Pro/Cons leaving focus in Review Block
- Form Block Improvements
- Advance Heading Improvements
- Add Alignment option to Icon List Block
- Reduce Build Size
- Fix Button Group spacing on Mobile
- Fix edge cases of Widget screen breaking
- Icon List block improvements
##### [Version 1.7.1](https://github.com/Codeinwp/otter-blocks/compare/v1.7.0...v1.7.1) (2021-10-25)
- Development changes
- Development changes
#### [Version 1.7.0](https://github.com/Codeinwp/otter-blocks/compare/v1.6.9...v1.7.0) (2021-10-11)
- Add Masonry Variation to Gallery
- Add Countdown Block
- Add Popup Block
- Add Contact Form Block
- Add Box Shadow extension for Image Block
- Add Review Comparison Table Block for Neve Pro
- Add Block Conditions Extension for Neve Pro
- Add WooCommerce Extension to Review Block for Neve Pro
- Add Add to Cart Block for Neve Pro
- Add Business Hours Block for Neve Pro
- Add WooCommerce Comparison Table Block for Neve Pro
- Use date format specified in general WordPress settings
- Remove duplicate category picker from Posts Block
- Allow Decimal ratings in Product Review Block
- Fix Accordion Block Styles
- Fix blocks not working on Widgets Editor
- Fix wp_enqueue_script() was called incorrectly error
- Fix price not removing in Product Review Block
- Fix Font Awesome Styles loading on all Dynamic Blocks
- Improve Review Block styles for Mobile Devices
- CSS loading improvements
##### [Version 1.6.9](https://github.com/Codeinwp/otter-blocks/compare/v1.6.8...v1.6.9) (2021-07-02)
- Fix links in Review Block
- Fix block defaults not working in Default Section
- Allow Custom sizes in Posts Block
- Add filter to Posts Block's query
- Add Tabs Block
- Add rel attribute to Review Block's Button
- Fix CSS Module breaking the editor
- Add translation support
##### [Version 1.6.8](https://github.com/Codeinwp/otter-blocks/compare/v1.6.7...v1.6.8) (2021-06-11)
* add JS translation compatibility
##### [Version 1.6.7](https://github.com/Codeinwp/otter-blocks/compare/v1.6.6...v1.6.7) (2021-06-11)
* Enhance translation compatibility
##### [Version 1.6.6](https://github.com/Codeinwp/otter-blocks/compare/v1.6.5...v1.6.6) (2021-05-24)
- Fix Product Review Block conflict with WooCommerce
##### [Version 1.6.5](https://github.com/Codeinwp/otter-blocks/compare/v1.6.4...v1.6.5) (2021-05-21)
- Add Product Review Block
- Make blocks AMP-ready
- Fix the post excerpt becoming corrupted when containing multi-byte character
- Fix Section's Overlay Gradient not working
- Fix Icon List reset on refresh
- Add Product Review Block
- Make blocks AMP-ready
- Fix the post excerpt becoming corrupted when containing multi-byte character
- Fix Section's Overlay Gradient not working
- Fix Icon List reset on refresh
##### [Version 1.6.4](https://github.com/Codeinwp/otter-blocks/compare/v1.6.3...v1.6.4) (2021-04-12)
- Fix button not centering
- Fix custom CSS not working on Leaflet Map Block
- Fix Columns width resetting
- Fix Resizer in Columns
##### [Version 1.6.3](https://github.com/Codeinwp/otter-blocks/compare/v1.6.2...v1.6.3) (2021-03-29)
- Fix Columns range crashing in Section Block.
- Fix Progress Blocks not loading on the front-end.
##### [Version 1.6.2](https://github.com/Codeinwp/otter-blocks/compare/v1.6.1...v1.6.2) (2021-03-26)
- Fix Button Groups alignment
- Don't enqueue empty CSS
- Adds new Accordion Block
- CPT support to Posts Block
##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02)
- Fix CSS Extensions causing Reusable Blocks to crash.