forked from VisualComposer/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1651 lines (1391 loc) · 85.3 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
=== Visual Composer Website Builder ===
Contributors: VisualComposer,slavavc,veidenbaums,nikitahl,pavelvisualcomposer,konutis,alperbulut,orkunaybek,mrdollar4444,seahunter,filipsmasolovs,cagdasdag,cozmoslabs
Tags: page builder, landing page, website builder, editor, visual composer
Requires PHP: 5.6
Requires at least: 4.6
Tested up to: 5.8.1
Stable tag: 40.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Website builder for WordPress comes with 500+ elements, templates, addons, and design options: No coding! No shortcodes! Clean code!
== Description ==
Visual Composer is the best drag and drop frontend editor that gives you elements and design tools to create your WordPress site. No coding required!
It’s a brand new website builder – made from scratch! No [shortcodes], no content locking, or performance issues. You get a powerful editor of superb performance to create any page layout you need.
Get the free page builder with hundreds of elements and an easy-to-use interface. Want a full-site editing experience with the Theme Builder - [upgrade to premium](https://visualcomposer.com/pricing/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=gopremium&utm_content=upgrade-to-premium-text-link) (or try our [free demo](https://demo.visualcomposer.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=free-demo-text-link) before you buy).
https://youtu.be/T4c--KVXXbg
Visual Composer is a free, fast, and SEO-friendly builder - all you need to create a website. More than that, it is the most feature-rich free page builder on the market with 50+ free elements, 10+ free landing page templates, and mighty design options with background and parallax effects.
With an easy-to-use live editor, you can create any type of WordPress site:
* Personal site
* Business website
* Portfolio
* Landing page
* Blog
* Online store
Plus, you can always apply Visual Composer to your existing website. Yes, Visual Composer recognizes and works with your existing content.
**TRUE DRAG & DROP WEBSITE BUILDER**
With a drag and drop editor, you can build new layouts or customize existing ones. There is no limit to the variety of layouts. You have complete freedom in creating the most complex website designs.
**No Coding Skills Required**: You don't have to be a professional website developer to make a beautiful site. Visual Composer is designed for you to be able to create landing pages without any coding skills. Simply select a ready-made page template and drag elements across the canvas.
**Instant Content Update**: The live design and inline editing allow you to instantly see all the changes you make to your page. A true *What You See Is What You Get* experience! You can play with the page design until you find the perfect one. Change colors, customize options, and see the result instantly.
**Works With Any WordPress Theme**: Visual Composer works with any WordPress theme. You can change the themes to your liking, it will not affect your content. What's more, the built-in **[Theme Builder](https://visualcomposer.com/features/wordpress-theme-builder/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=theme-builder-text-link)** gives you total freedom to override your theme's default settings.
**VISUAL COMPOSER HUB: 500+ TEMPLATES, ELEMENTS & ADDONS**
Visual Composer Hub, a cloud-based marketplace allows you to download elements, templates, and addons on demand. Visual Composer team ads new content to the library weekly making it an evergreen assets repository. You can add all these assets to your page without leaving the editor.
Discover what's inside the **Visual Composer Hub**:
* **[Content Elements](https://visualcomposer.com/features/content-elements/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=content-elements-text-link)**: Slideshows, Tabs, Video, Testimonials, Buttons, Menu, WooCommerce compatibility, and many more elements. The appearance, styles, and attributes of the elements can be changed as you wish.
* **[Templates](https://visualcomposer.com/features/wordpress-templates/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=templates-text-link)**: There are different category templates available for any web project. Templates for a portfolio and business website, online store, landing page, and others. Simply download ready-made templates, content blocks, sidebars, footers, headers, or sections and replace them with your unique content.
* **Addons**: Extensions allow you to enhance your Visual Composer experience with advanced addons. Global Templates, Import/Export, Gutenberg Block template, **[Popup Builder](https://visualcomposer.com/features/popup-builder/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=popup-builder-text-link)** and others.
* **Integrations**: Stock images and GIFs from **[GIPHY](https://visualcomposer.com/blog/add-gifs-from-giphy-in-wordpress/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=giphy-text-link)** are available straight from the Visual Composer editor. The graphics can be used for both personal and commercial projects.
* **Endless [Design Options](https://visualcomposer.com/features/design-options/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=design-options-text-link)**: Website builder includes powerful design options that allow beginners and experts to create unique page designs. Make custom background effects, take advantage of modern parallax background, control paddings, margins, borders, and radius of any element.
**WORDPRESS THEME BUILDER**
Visual Composer is an all-in-one plugin that lets you make beautiful websites from header to footer. You can create custom page layouts in a code-free way.
[Make unique header, footer, and sidebar templates](https://visualcomposer.com/features/wordpress-theme-builder/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=make-unique-header-footer-sidebar-templates-text-link) to use them throughout your entire WordPress site with the help of **Global Templates**. Additionally, a **Dynamic Content** feature allows you to design templates with dynamic content placeholders (*devs will love it*).
**VISUAL COMPOSER INSIGHTS**
Build better websites by using an in-built qualitative analysis of your page content with Visual Composer Insights - an in-built SEO tool.
[Visual Composer Insights](https://visualcomposer.com/blog/wordpress-content-analysis-tool-insights/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=visual-composer-insights-text-link) is a free extension that analyzes your page content according to multiple scenarios to improve the quality, performance, and SEO of your site. Finally, you don't have to be a developer, designer, or marketer to create a website that boosts your business.
**VISUAL COMPOSER ROLE MANAGER**
With the Visual Composer Role Manager, you can set up and control the accessibility to any feature or element of your site. Ensure that your beautiful design stays the way you want it to be by allowing customers to edit only certain parts of a page or use only certain features. And, with the role manager presets, it has never been easier to apply the access rights. Here are the user roles you can manage:
* Administrator
* Editor
* Author
* Contributor
* Subscriber
* Custom roles (from plugins like Yoast, WooCommerce, etc.)
**POPUP BUILDER FOR WORDPRESS**
Build unlimited popups and save hundreds or even thousands on this effective marketing tool. Built-in [Visual Composer Popup Builder](https://visualcomposer.com/features/popup-builder/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=visual-composer-popup-builder). lets you create beautiful and appealing popups fast and easy. It takes place in the usual drag and drop manner, using all the elements, integrations, and design options available in the Visual Composer Hub.
**MOBILE-FRIENDLY**
Being responsive today is essential. Visual Composer makes sure that your website is [automatically responsive](https://visualcomposer.com/features/responsive-design/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=automatically-responsive-text-link). Nevertheless, you can adjust the look, width, and behavior of your site for every device: mobile, tablet, and desktop.
**COMPATIBILITY ELEMENTS**
Visual Composer is compatible with other popular plugins, offering compatibility elements inside its asset library. This means that all the [Integrations](https://visualcomposer.com/features/integrations/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=integrations-text-link) can be managed directly from the Visual Composer front-end editor:
* WooCommerce
* Contact Form 7
* Gutenberg
* Advanced Custom Fields
* MailChimp for WordPress
* WP Forms
* wpDataTables
* TranslatePress
* and many more.
**DEVELOPERS API**
Visual Composer is not only for front-end users. With its API in front, developers can integrate the editor in WordPress themes, build extensions, and create custom tools for clients.
**Resources for Visual Composer API**:
* [API Documentation](https://visualcomposer.com/help/api/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=api-documentation-text-link)
* [Custom Element & Addon Development](https://visualcomposer.com/blog/visual-composer-api-custom-elements-and-add-ons/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=custom-element-addon-development-text-link)
* [Theme Integration](https://visualcomposer.com/theme-integration/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=theme-integration-text-link) (Free and Premium)
* [Staging Environment](https://visualcomposer.com/blog/visual-composer-on-staging/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=staging-environment-text-link)
**Contributors & Developers**
If you want to contribute to the development of the Visual Composer plugin, visit the [Visual Composer GitHub Repository](https://github.com/VisualComposer/builder) and help with your knowledge.
**PREMIUM SUPPORT**
Visual Composer team provides one-on-one email support that is available to Visual Composer Premium users. However, all Visual Composer users can ask for help in the WordPress.org forum, find answers in our Help Center, or ask for advice from other Visual Composer users in our community.
**Where To Look For Support?**
* Visual Composer [Help Center](https://visualcomposer.com/help/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=help-center-text-link)
* Facebook [Community](https://www.facebook.com/groups/VisualComposers/)
* WordPress.org support section
* Real-person [Dedicated Support](https://visualcomposer.com/support/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=dedicated-support-text-link) (*available for Premium users*)
**LET'S GET YOU ONBOARD**
* Learn about Visual Composer from tutorials on [YouTube](https://www.youtube.com/VisualComposer)
* Join our community on [Slack](http://slack.visualcomposer.com/)
* Follow us on Facebook and join our lovely [community](https://www.facebook.com/groups/VisualComposers)
**>> Discover All The Benefits of [Visual Composer Website Builder](https://visualcomposer.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=visual-composer-website-builder-text-link)**
== Installation ==
Visual Composer can be installed like any other regular WordPress plugin either by uploading a *.zip* file or install it straight from the plugin repository inside the WordPress admin.
Once installed, click 'Activate Plugin' to finish the installation.
**You can now use Visual Composer Website Builder on your site:**
(two ways how to can get started)
* From the Visual Composer Getting Started tab, click 'Create a New Page'
* Go to Pages or Posts - choose Add New with Visual Composer
Some elements and templates are already loaded in your library. To download more free elements, click on 'Get More Elements' from the Add Content window and you will be taken to the Visual Composer Hub.
== Frequently Asked Questions ==
= What is the difference between Visual Composer Website Builder and WPBakery Page Builder? =
Although they are different site builders, both Visual Composer and WPBakery are designed to allow WordPress users to build websites. However, the difference is the performance, functionality, and features that each of these builders offers. Visual Composer Website Builder allows you to build a complete website. Create custom page layouts, design unique headers, footers, and sidebars. For more information, here is a comparison of [Visual Composer Website Builder vs WPBakery Page Builder](https://visualcomposer.com/visual-composer-vs-wpbakery-review/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=free-download&utm_content=visual-composer-website-builder-vs-wpbakery-page-builder-text-link).
= Do I need coding experience? =
No, not at all. Visual Composer is a good fit for both experts and beginners. With an intuitive drag and drop interface and with a range of pre-designed templates and content elements you can convert your imagination into a real website.
= Does Visual Composer Website Builder work with any WordPress theme? =
What does “properly coded theme” means? A theme that follows official WordPress Codex rules and guidelines.
= Can I insert 3rd party shortcodes into Visual Composer Website Builder? =
Yes! Visual Composer Website Builder includes a shortcode element that allows you to add any 3rd party shortcode into your layout.
= Do you have a Premium version available? =
Yes! The Premium version comes with world-class support and access to Visual Composer Hub where you can download additional elements, templates, addons, and integrations.
= What is the difference between the Free and Premium versions? =
Visual Composer Free version is the ultimate page builder to get your web design project started. Visual Composer Premium unlocks a full website builder experience and gives you unlimited access to the Visual Composer Hub (a cloud marketplace of elements, templates, extensions, and integrations).
= Can I edit the Header, Footer, and Sidebar? =
Yes! Header, Footer, Sidebar, and overall theme edit and design options are available in the Visual Composer Website Builder Premium version.
= Can I create a landing page with Visual Composer? =
Yes! The free page builder version comes with a blank page layout option that allows you to create a complete landing page from scratch or by using one of the Visual Composer Hub templates. You can create a landing page on your existing site and it will completely stand out from the rest of your pages - perfect for running your marketing campaigns.
= Is Visual Composer a page builder or website builder? =
It is both! Visual Composer’s free version works like a page builder where you have full control over the content area defined by your WordPress theme. Want to design a full site including headers and footers? Choose Visual Composer premium as it allows you to go beyond the content area and create a full site just like you want it.
= Do you have an online community? =
Yes, we have an awesome online community that you can join to share your expertise, connect with power-users and the Visual Composer core team – slack.visualcomposer.com
== Screenshots ==
1. A friendly, intuitive website builder that gives you design freedom and tools to create a beautiful site.
2. Create any layouts fast and easy with the pixel perfect Visual Composer builder. It helps you structure content in a way that’s exactly how it should be!
3. The Visual Composer Hub is a cloud marketplace of elements, templates and extensions. You can find anything to help build your website in one place with ease!
4. Create a website that will look great on any device with the mobile and desktop optimized WordPress editor.
5. Endless WordPress site design options - build a website just the way you want it with powerful features for beginners and pros.
== Changelog ==
= 40.0 =
*Release Date - 2021-10-14*
### Free:
- New: Templates have groups in the Add Content window
- New: Content area width control (in pixels) added in Visual Composer Dashboard for the Visual Composer layouts
- New: Auto Contrast Check added to Visual Composer Insights for accessibility tests in the editor for the content area
- New: Lazyload option is available sitewide in Visual Composer Dashboard
- Update: Plugin update notifications improved
- Update: Image selector improved for usability
- Compatibility: Visual Composer is compatible with the LearnPress theme
- Compatibility: Visual Composer is compatible with the Storefront theme
- Fix: Drag and drop works properly
- Fix: Shop pages built with Visual Composer have proper styling
- Fix: Gravity Form paragraph field works properly in Visual Composer
- Fix: fixCorruptedElements method works properly
- Fix: Columns work properly after Undo function usage
- Fix: User interface icons displayed properly in the Visual Composer Hub
### Premium:
- New: Post grid elements have a custom excerpt length option
- Update: Visual Composer native color picker added to the Font Manager for better UI
- Update: WooCommerce elements have a lazy load feature
- Update: Price currency type Philippine peso available in templates
- Update: Elements with dropdown have design consistency
- Update: Template widgets naming improved
- Update: Video elements in popups are auto-pausing on popup close
- Compatibility: Visual Composer and WPML compatibility improved
- Fix: Stretched row works properly with fixed parallax effect enabled
- Fix: Post grid elements are styled properly in the Generate Press theme
- Fix: Giphy element works properly on column resizing
- Fix: Gutenberg template block works properly
- Fix: Template name displayed properly in the block and classic widgets
- Fix: Tags archive page displays tags as title
- Fix: WooCommerce Product 3.2 columns works properly in the Storefront theme
- Fix: Hover image element works properly
- Fix: WooCommerce "Add to Cart" notification works properly
= 39.1 =
*Release Date - 2021-09-30*
### Free:
- Fix: Inline styles for elements work properly
= 39.0 =
*Release Date - 2021-09-28*
### Free:
- New: Row layout accept pixel sizes for the fixed column width
- Update: Pure components introduced to speed up editor performance
- Update: Dynamic content elements optimized to speed up editor performance
- Update: Template, block, and preset saving buttons have similar UI/UX
- Update: Esc key closes inline editor mode
- Compatibility: Visual Composer and Essential Grid compatibility improved
- Fix: WPML Translation Management works properly in Visual Composer
- Fix: WordPress default text widget works properly
- Fix: Design Options work properly in the tablet portrait view on Safari
- Fix: Save button works properly on Safari
- Fix: A proper icon is displayed in the Tree View for hidden elements
- Fix: Deleted elements from the Add Content Window can not be added to the page
- Fix: Default YouTube element video is displayed properly
### Premium:
- New: Font Manager to overwrite theme default fonts for Visual Composer layouts and Starter theme. Ability to change H1-H6, paragraph, and blockquote.
- New: Filter option added to all post grid elements for categorizing
- Fix: Template export works properly
- Fix: Substitute element works properly for the Button Group element
- Fix: WP Forms element works properly
- Fix: Toggle container title is displayed properly on mobile devices
- Fix: Toggle container active colors work properly
- Fix: Stretched rows work properly inside the Toggle container
- Fix: Popup Builder works properly when deleting rows
- Fix: Basic menu dropdown is displayed properly
- Fix: Gutenberg editor close button is displayed properly in Visual Composer
= 38.1 =
*Release Date - 2021-08-10*
### Free:
- Update: Initial help updated for the new navigation bar structure
- Fix: Insights are displayed properly
- Fix: Parallax effect works properly
= 38.0 =
*Release Date - 2021-08-04*
### Free:
- New: Visual Composer layouts have Design Options that apply to the whole page
- New: Notification Center to inform you about new features, updates, and more
- New: Visual Composer navigation bar updated for better UI/UX
- Update: License input messages adjusted
- Update: Font loading adjusted for performance
- Update: SQL queries for posts improved for performance
- Update: Parallax accepts negative values for reverse effects
- Update: Visual Composer Insights notification order improved for better UI/UX
- Fix: Emojis are displayed properly in articles created with Visual Composer
- Fix: Link selector works properly for OnClick actions
- Fix: TinyMCE works properly in Visual Composer
- Fix: Lazy load option applies to Design Options properly
- Fix: OnClick 'Zoom' option works properly
- Fix: YouTube video element works properly in mobile Firefox
- Fix: Copying elements from deleted rows work properly
- Fix: Link Selector popup does not close upon text selection
- Fix: List elements are displayed properly in the text editor
- Fix: Utils service method works properly
- Fix: Column resize works properly
- Fix: Autoload cache works properly with different path
- Fix: Template update works properly
- Fix: Simple Image slider works properly
- Compatibility: Visual Composer works properly with WP Export/Import
### Premium:
- Fix: Header controls work properly in Visual Composer Dashboard
- Fix: Post Slider element does not crop featured image
- Fix: Design Options of the Pageable Container element works properly
- Fix: Dynamic Content works properly with ACF
- Fix: Right-Click functionality works properly with Role Manager settings
- Compatibility: Global site header option works properly with WooCommerce Search
= 37.0 =
*Release Date - 2021-06-17*
### Free:
- New: Visual Composer element controls on right-click introduced for better UX
- New: Block template section introduced in the Add Element window
- Update: UI for adding templates improved to be consistent with adding element
- Update: Visual Composer Insights for images updated properly after changes
- Compatibility: Visual Composer and WPJobsManager compatibility improved
- Fix: Single Image element editing works properly when no image is selected
- Fix: Scroll to element option after adding the element works properly
- Fix: “Edit with Visual Composer“ button works properly for custom post types
- Fix: Row layout input has consistent styling
- Fix: Memory usage is normal during migration
- Fix: Row block template saving works properly
- Fix: Reset option works properly in the demo template
### Premium:
- New: Role Manager presets for quick user role management added and contain most used editing scenarios
- New: Edit option introduced for the Global Templates dropdown in the Global Templates element
- Update: Performance improvements for the Tree View and Undo/Redo
- Update: Video Player helpers updated for more information
- Compatibility: Visual Composer and HootKit works properly in the WordPress widget area
- Fix: WordPress admin panel menu works properly in Visual Composer Dashboard
- Fix: Visual Composer Dashboard widget styles have proper styling
- Fix: Featured image controls are not available for user roles with no permission to edit featured images
- Fix: Dynamic content works properly in Post Grid elements
- Fix: Dynamic Advanced Custom Fields work properly
- Fix: Logo slider images work properly
- Fix: Title color attribute works properly in the Button Group element
- Fix: Three color button works properly in the WordPress theme 2021
- Fix: Video Player works properly
- Fix: YouTube videos work properly in the Video Popup element
- Fix: Cover images for the self-hosted videos work properly on iPhone
- Fix: Gravity Forms element works properly after the Gravity Forms update
- Fix: Multisite works properly with Visual Composer installed
- Fix: Basic Menu works properly and does not display glitches when loading
= 36.0 =
*Release Date - 2021-05-25*
### Free:
- New: Visual Composer Dashboard structure updated by including all Visual Composer related content
- New: Template categories introduced for better sorting and managing templates
- New: Lazy load option introduced for the single image element to improve performance
- New: Delay introduced for TinyMCE to improve UI/UX
- Update: Insights panel colors updated for consistent UI
- Update: Image and Video selectors updated for consistent UI
- Update: Background update introduced for the device preview option to improve UI
- Update: 'Created with Visual Composer' badge updated
- Update: Getting started video updated with the latest content included
- Fix: Typo fixed in the Visual Composer Settings tabs
- Fix: Custom responsiveness works properly in row layout options
- Fix: Facebook 'Like' option works properly
- Fix: Visual Composer works properly with Polylang installed
- Fix: The text inline editing option works properly on all WordPress setups
- Fix: The text update in TinyMCE works properly
- Fix: Clicking on page title works properly to allow changing the title of the page
- Fix: Page structure is displayed properly in the parent page settings
- Fix: 3rd party 'Finder' option does not interfere with the work of Visual Composer
- Fix: Unsplash and Giphy images are displayed properly on the hover state in the Visual Composer Dashboard Hub version
- Fix: RawJS element renders properly
- Fix: The drag and drop option works properly in the Tree View
- Fix: WordPress page settings option improved for security
- Fix: Giphy pagination works properly
- Fix: The lightbox option works properly in the Image Gallery elements
- Fix: Attaching image option works properly in the image gallery elements
- Fix: Using keyword to add element adds chosen element
- Fix: Param group attribute position is correct
- Fix: Old version templates work properly
- Fix: Premium teasers work properly
### Premium:
- New: Role Manager add-on extended to control user role access to the Visual Composer features and page edit options
- Fix: The popup option work properly in the Logo Slider
- Fix: Video player with custom URL works properly
- Fix: Accordions work properly on pages with fixed headers enabled
- Fix: Global template saving with a shortcut (Cmd+S/Ctrl+S) works properly
- Fix: Content Slider element works properly
- Fix: Attributes work properly in the Logo Slider elements
- Fix: Premium version feature popups are not displayed for the premium users
- Fix: Featured Image Post Grid has a proper color for backgrounds
- Fix: Typewriter element works properly
= 35.1 =
*Release Date - 2021-03-12*
### Free:
- New: Visual Composer API improvements
- Update: Clicking on a page title opens On-page Settings with a focus on the title
- Update: Row layout input controls updated for better UX and performance
- Update: Layout switcher improved for better UI/UX
- Update: Dynamic view is set as default for mobile devices
- Fix: Backlog strings are translatable
- Fix: Add Element items are ellipsized on the theme TwentyTwentyOne
- Fix: Template removing process displayed with the loading spinner
- Fix: Scrollbar does not overlap on Chrome (Windows)
- Fix: Elements added to the page from the Visual Composer Hub are automatically scrolled to in the layout
- Fix: New installation works properly for all users
- Fix: Image Selector does not overlap TinyMCE controls
- Fix: Editor button colors adjusted for consistency
- Fix: PageEditable nonce verification works properly
- Fix: Visual Composer Hub section in Dashboard is responsive
- Fix: Row margins in Design Options work properly in the theme TwentyTwentyOne
- Fix: Row layout controls and editor row manipulations are synchronized
- Fix: Sorting works properly in the element search
- Fix: Link styles in the editor updated for consistency
- Fix: The tutorial template is available for Authors and Editors
- Fix: Publish button is not disabled for Contributors
- Fix: Mobile views have the same behavior for consistency
### Premium:
- New: Lazy load option introduced for the video element to improve performance
- Update: The download option for Unsplash and Giphy improved by removing extra click to download the image
- Fix: MailChimp element has a correct PHP filename
- Fix: Background image not removed after applying Dynamic Content
- Fix: Links on the image is not removed after disabling Dynamic Content
- Fix: Global template Settings work properly
- Fix: The autoplay option works properly in Tabs
- Fix: Tab slider styles updated
- Fix: Visual Composer Hub addons section has a proper button states
- Fix: Visual Composer custom post types have edit option for Contributors
- Fix: Double Title element has proper styling
- Fix: Link Dropdown Element has only one arrow
= 35.0 =
*Release Date - 2021-03-01*
### Free:
- New: Save as Draft and Published now available under one Publish option in the navigation bar
- New: Plugin review option added to the Visual Composer related section in the WordPress Admin Dashboard
- New: Image selector attribute updated for better UI/UX
- New: Video selector attribute updated for better UI/UX
- New: WPML Translation Management compatibility added
- New: Option to add public badge “Created with Visual Composer“ added to the Visual Composer Dashboard Settings
- New: Element name change functionality added to the Tree View
- Update: Visual Composer API now has a UI component
- Update: Inline editor icon for opening element edit form updated for consistency
- Update: Major icons are highlighted in the initial help screen
- Update: Instagram element improved to work properly after Instagram changes in their API
- Update: Tabs in the Visual Composer On-Page Settings updated for better UI/UX
- Update: Element and template search in the Visual Composer Hub extended to check element and template description
- Update: YouTube element updated by removing deprecated code
- Update: Data sharing offers to share your PHP version, WP version, and active theme
- Update: Templates and presets saving titles are replaced with placeholders
- Update: Editor button colors updated for consistency
- Update: Visual Composer Hub download options work clicking on the whole thumbnail instead of the icon only
- Fix: Data sharing popup consent checkbox works properly
- Fix: Input Select attribute works properly
- Fix: Color picker accepts HEX values
- Fix: Auto-save works properly
- Fix: Demo template can not be saved
- Fix: Layout change does not affect recently downloaded elements
- Fix: Vimeo video controls not displayed when a video is added as a background (not applicable for non-pro videos)
- Fix: Input height is displayed properly across different devices
- Fix: Saving page does not remove a custom page template
- Fix: Popup radio buttons displayed properly in the Blocksy theme
- Fix: Visual Composer Dashboard menu stretched full height
- Fix: Demo template images are displayed properly
- Fix: Disabling the full height option for the row removes unneeded CSS classed
- Fix: Global CSS works properly
- Fix: Element removal option works properly
### Premium:
- Update: Locking all element progress is displayed with the help of loading spinner
- Update: Dynamic link moved to the Link Selector
- Update: Element preset icon color adjusted to fit the UI guidelines
- Update: Option to create a new header added to the On-Page Settings
- Update: Premium support link icon updated in the WordPress Plugin section
- Fix: Saving element as a preset does not trigger multiple notifications
- Fix: Archive page editor has proper blank page when started
- Fix: Maintenance mode add-on works properly when no templates are available
- Fix: WooCommerce Product Feed Manager is fully compatible with Visual Composer
- Fix: Links to My Visual Composer adjusted
- Fix: Tabs work properly on Safari
- Fix: Gravity Forms element works properly
- Fix: Post Slider Block works properly
- Fix: Popup Builder editor works properly with Blocksy theme
- Fix: Unsplash and Giphy search works properly with no search term provided
- Fix: Banner element works properly
= 34.1 =
*Release Date - 2021-02-15*
### Free:
- Fix: Visual Composer works properly with PHP 7.0
- Fix: Yoast SEO and Visual Composer works properly
= 34.0 =
*Release Date - 2021-02-08*
### Free:
- Update: Free license activation removed to instantly access Visual Composer Hub
- Update: Premium information popups removed for addons
- Update: Information about premium features added to the Visual Composer Dashboard
- Update: Information about the premium feature “Element Presets“ added
- Fix: Premium information is displayed properly for dynamic content
- Fix: Edit option with Visual Composer is displayed properly in Gutenberg
- Fix: Categories are displayed properly in the On-Page Settings
- Fix: Featured image works properly in the On-Page Settings
- Fix: Featured image background color displayed properly
- Fix: Visual Composer Hub search field works properly
- Fix: Visual Composer menu in WordPress admin is displayed properly
- Fix: Device previews have proper margins
- Compatibility: Woocommerce Square works properly with Visual Composer
- Compatibility: Visual Composer works properly with PHP8
### Premium:
- Fix: Premium information popup not triggered after addon downloads
- Fix: Accordion elements work properly
- Fix: “On first page load“ popup option works properly
= 33.0 =
*Release Date - 2021-01-19*
### Free:
- New: Option to set "Desktop" as the default state for the "Responsive View" control.
- New: Settings for default Responsive View device added to the Dashboard Settings
- New: Interface updated with new branding colors
- New: Information about Premium layouts added
- New: Information about Premium Hub content added
- Fix: WordPress parent categories work properly
- Fix: WordPress excerpt field works properly
- Fix: WordPress excerpt description converted into the tooltip
- Fix: Notification added for template removal notice
- Fix: WordPress categories and tags can be removed
- Fix: Separator element thickness works properly
- Fix: Editor and device menus do not conflict
- Fix: Permalink for posts and pages works properly
- Fix: Visual Composer Dashboard buttons have proper IDs
### Premium:
- Fix: Woo Commerce Product Category element works properly
- Fix: Dynamic content author description is correct
- Fix: Popup export and import works properly
= 32.0 =
*Release Date - 2020-12-22*
### Free:
- New: Double click option added to open element edit form or activate the inline editor
- New: WordPress page and post settings added to the On-Page Settings for quick access (author, featured image, categories, tags, excerpts, discussions)
- New: Option to delete downloaded elements and templates added to the Add Content window
- New: Option to share editor usage data anonymously added to help plugin developers
- Update: Auto-complete attribute improved for better performance and UX
- Update: Device mockups are added to the responsive device preview
- Update: Information about available shortcut added on mouse hover for the editor controls
- Update: Tree View mode improved for better performance
- Update: Plugin path check added to the System Status page
- Update: Messages updated on the element, template, and add-on downloads
- Fix: Line height works properly in the TinyMCE editor
- Fix: Drag and Drop works properly for columns
- Fix: Version notification is displayed properly in the Getting Started screen
- Fix: Visual Composer Hub search works properly
- Fix: Twitter element works properly on the published pages
- Fix: Empty rows work properly in responsive view
- Fix: Assets are replaced properly after initial reset
- Fix: Templates with hidden rows work properly
- Fix: YouTube background works properly in Design Options
### Premium:
- Update: Notification mechanism improved for the add-ons that require the editor reload to be activated after download
- Update: Header and Footer settings UX improved in the Visual Composer Dashboard
- Fix: Sandwich menu works properly in the Basic Menu element
- Fix: Layout icons are displayed properly in the Archive page editor for Twenty Twenty theme
- Fix: Image Gallery with Icons element works properly
- Fix: Timeline with Icon elements' inline editor works properly
- Fix: Mailchimp element works properly
- Fix: Maintenance mode page creation works properly
= 31.1 =
*Release Date - 2020-11-25*
#### Free:
- Fix: The stretching option works properly for rows and inner rows
- Fix: Custom elements are displayed properly in the Add Content window
= 31.0 =
*Release Date - 2020-11-17*
#### Free:
- New: A tutorial template has been added for beginners to learn Visual Composer
- New: Add Element and Add Template windows are merged into one window for a cleaner and better user interface
- New: Element grouping in Add Element window introduced
- New: Most Used elements section in Add Element window introduced
- New: Help Icons are added to the Visual Composer interface for a quick reference
- New: Editor help screen has been added for the first-time users to help to understand the user interface
- New: Option to share anonymous plugin usage statistics for the plugin improvement has been introduced
- Update: License activation and getting started flow has been updated for a better user experience
- Update: Row Layout is the first section in the Row edit window for a better user experience
- Update: Google Fonts library has been updated to include all the latest font families
- Update: Column resizing control interface has been improved
- Update: The license tab is always available for all users in Visual Composer Dashboard
- Update: Blank page wizard has been removed when creating a new page or post for a quicker start
- Update: Theme layout is made as default layout when creating a new page or post
- Update: Navigation bar icons are displayed properly on smaller devices
- Update: All free elements are available in Visual Composer Hub
- Update: Plugin titles and descriptions adjusted for a better interface understanding
- Update: Visual Composer Hub button URLs and titles updated for a better user interface
- Fix: Editing page with 3rd party scripts included works properly
- Fix: Insights title analysis works properly
- Fix: Insights alt tag analysis works properly
- Fix: Divider element works properly in Twenty Twenty theme
- Fix: Add Media option works properly
- Fix: Delete button in the Tree View mode works properly
- Fix: Images are displayed properly on retina displays
- Fix: Color picker shows the default value
- Fix: .entry-content is not overwritten by WordPress themes
- Fix: Scroll to element option works properly when editing element in the Tree View
- Fix: Scroll to element and template option works properly when adding a new element or template
- Fix: Replace element option is available for nested elements
- Fix: Visual Composer Dashboard works properly on Safari
#### Premium:
- New: Option to quickly access WordPress menu management has been added to the menu source dropdown
- New: A placeholder for menu elements has been introduced
- New: Compatibility with Ajax Search Pro added for the Archive page editor
- New: Compatibility with Woo Discount Rules added
- Update: Performance improvements for pageable container elements
- Update: Giphy tab is available in Media Library for all gif elements and TinyMCE
- Fix: Ninja Forms element works properly
- Fix: DynamicWPQuery pagination for post grids works properly
- Fix: Element presets work properly
- Fix: Template export and import option works properly
- Fix: Inner elements work properly within the param group
- Fix: Row margins works properly in header and footer editor
- Fix: Dropdowns with dynamic values work properly
- Fix: Sandwich menu works properly in the Basic menu element
- Fix: Menu elements are displayed properly within templates
- Fix: Imported templates do not generate warnings
- Fix: Phone Mockup element works properly in Twenty Twenty theme
- Fix: ACF image field works properly when added as a background image
= 30.1 =
*Release Date - 2020-09-16*
#### Free:
- Fix: Animation Delay works properly
#### Premium:
- Fix: Prevent empty <code><p></p></code> tag adding in header and footer layouts
= 30.0 =
*Release Date - 2020-09-15*
#### Free:
- Update: Row layout input is simplified for better UX
- Fix: All element presets are displayed in the Add Element window
- Fix: Sassy Social Plugin works properly with Visual Composer
- Fix: Custom responsiveness values can be added properly
- Fix: Toggle attributes have different IDs to avoid conflicts
- Fix: Custom JavaScript is rendered properly
- Fix: Default font option in TinyMCE fonts dropdown works properly
- Fix: Submenu works without glitches in the Visual Composer Dashboard
- Fix: Templates with advanced row layout renders properly
- Fix: Visual Composer Insights updated properly
- Fix: Media Library works properly in the editor
- Fix: Image placeholders are displayed properly
#### Premium:
- New: Giphy compatibility is introduced in the Visual Composer Hub to download gif animations right in the editor
- New: Giphy tab is introduced in Media Library for gif elements
- New: Giphy element is added to the Visual Composer Hub to insert gif animations
- New: Gif Animation element is added to the Visual Composer Hub to insert gif animations
- New: Mono Social Icons element added to the Visual Composer Hub
- New: Post Grid With Hover Button element is added to the Visual Composer Hub
- New: Double Title element is added to the Visual Composer Hub
- Update: Accordion elements can be closed by clicking on the titles
- Fix: Video element is not muted on Safari
- Fix: Schema has been removed from all post grid elements
- Fix: Dynamic Content works properly with the page scope
- Fix: Close popup option in the Link Selector can be used on all pages
- Fix: Popups work on pages not created in Visual Composer
- Fix: Z-index works properly in headers
- Fix: Global footer HTML works properly in the Preview mode
- Fix: Header and Footer settings work properly with WPML
- Fix: Popup works properly with inner elements triggering it
- Fix: Popup Builder works properly after refreshing the page
- Fix: Pages with enabled popup scroll properly
- Fix: Gutenberg element works properly with the latest WordPress installed
- Fix: Simple Contact Form elements' Submit button does not trigger Oops screen
- Fix: EventOn elements' category filter works properly
- Fix: All popup templates are displayed in the popup dropdown
- Fix: the_content filter works properly with Header, Footer, Sidebar editors
= 29.0 =
*Release Date - 2020-07-23*
#### Free:
- New: Visual Composer Insights assistant for helping to build better sites launched
- Update: User feedback survey updated
- Update: Naming consistency improved in the user interface
- Update: Saved templates appear at the top of the Templates list
- Fix: Template source key works properly
- Fix: Elements don’t disappear when changing Row Layout
- Fix: Getting Started menu in WP Admin Dashboard displayed properly for Contributors role
- Fix: Asset files are not removed after cloning the page
- Fix: Loading spinner works properly in Visual Composer Hub
- Fix: Single Image lightbox works properly
- Fix: Yoast SEO display proper page status
- Fix: Woo Commerce elements have a proper element height
- Fix: Visual Composer Dashboard logo displayed properly
- Fix: Static listener for enqueue actions works properly
- Fix: Notifications are displayed in a proper location
- Fix: Button element styles are consistent across the page
- Fix: Icons are stacking properly in the Tree View
#### Premium:
- Update: Element lock UI/UX updated for better visibility
- Fix: Featured image works properly in Dynamic Content
- Fix: Site-wide popup works properly
- Fix: Food and Drink element has proper spacing
- Fix: Loading spinner works properly in Dynamic Content
- Fix: Logo Slider element works properly
- Fix: Dynamic Archive in search results page works properly
- Fix: Social Profile element Instagram icon works properly
- Fix: Popup Builder option for returning to WP Dashboard works properly
- Fix: Popup Builder settings for 'On first page load' work properly
= 28.0 =
*Release Date - 2020-06-10*
#### Free:
- New: Visual Composer Dashboard added under the WordPress Admin Dashboard
- Update: Visual Composer navigation bar design changed
- Update: Link to My Visual Composer Licenses section added for activation
- Update: Editor notification display duration increased for better UX
- Fix: ContentURL works properly
- Fix: Instagram image element does not update on every change
- Fix: Localizations work properly
- Fix: Backslash is not removed in Custom JS
- Fix: Templates with multiple images work properly
- Fix: Deleting templates work properly
#### Premium:
- New: Popup settings for display frequency added
- Fix: Simple Contact Form element works properly in the page footer
- Fix: Gutenberg element does display block sidebar
- Fix: wp_print_scripts and Header, Footer, Sidebar editor does not conflict
- Fix: Video Player element works properly on iOS
- Fix: Custom post type limits work properly in Post Grid elements
- Fix: Tabs with Slide works properly on replacement
- Fix: tabs with Slide works properly with full-width rows
- Fix: Background images work properly in Design Options attributes
= 27.1 =
*Release Date - 2020-05-13*
#### Free:
- Fix: Page preview works properly
= 27.0 =
*Release Date - 2020-05-12*
#### Free:
- New: Visual Composer News widget introduced in the WP Admin Dashboard
- Update: New and easier Visual Composer Hub activation
- Update: Deactivation feedback popup has display limits
- Update: Images from the templates are added to the Media Library once downloaded from Visual Composer Hub
- Fix: Drag and drop works properly on iPads
- Fix: Blank page with layout changes can be saved properly
- Fix: Source CSS works properly after plugin update
- Fix: Twitter Button works properly with Dynamic content
- Fix: LocalJS works properly
- Fix: Single Image caption works properly
- Fix: Page Settings are not saved after refresh
- Fix: Layout is displayed properly in the responsive view
- Fix: Gutenberg element UI is displayed properly
- Fix: Source CSS does not contain Global CSS
- Fix: Dynamic fields work properly
- Fix: Column resize works properly
#### Premium:
- New: Element lock option to restrict non-Administrator roles to edit elements. Available in Role Manager addon in Visual Composer Hub.
- New: Visual Composer Hub addon section redesigned for better UX
- New: Advanced Design Options added to the Popup Builder root element (Popup Container)
- New: Option to close the popup via Link Selector option
- Update: Addon download notification updated
- Update: Popup Builder code optimized for performance
- Fix: Gutenberg element has Visual Composer templates block
- Fix: Header, Footer, Sidebar works properly with WPML
- Fix: Visual Composer works properly in Woo Commerce Cart page
- Fix: WordPress admin bar renders properly with custom header applied to the post/page
- Fix: Global Template CSS and JS works properly
= 26.0 =
*Release Date - 2020-04-01*
#### Free:
- Update: Copying element with Element ID display warning that Element ID is not copied
- Update: Visual Composer Settings menu structure is updated for better navigation (in WordPress Admin Dashboard)
- Update: Global CSS applies to pages not created with Visual Composer
- Fix: Non-working shortcodes do not impact the work of the Frontend editor
- Fix: Unsplash lock icon displayed properly on local
- Fix: Rows has correct positioning on iPhone devices
#### Premium:
- New: Popup Builder that allows creating popup templates
- New: Popup sitewide settings to trigger popups on all site (on load, cookie, exit-intent)
- New: Popup page settings to trigger popups on a specific page (on load, exit-intent, element scroll)
- New: Link Selector enhanced with popup triggering controls
- New: Custom feedback popup for Premium users
- New: New dynamic content values added to support Archive Page Editor
- Update: Layer Slider element renamed to Kreatura Slider
- Fix: Active menu class works properly
- Fix: Layout assets loaded properly on Archive pages
- Fix: Search element works properly after SiteURL change
- Fix: Enqueue scripts loaded properly in custom headers and footers
- Fix: Dynamic content images contain an alt attribute
- Fix: Post Grid With Box element works properly on Twenty Twenty theme
- Fix: Simple Contact Form element does not display warnings
- Fix: Animation with fullscreen video works properly
= 25.0 =
*Release Date - 2020-03-03*
#### Free:
- New: Simplified element controls for easy getting started
- Fix: Columns are added properly on a blank page
- Fix: Row layout displays proper values in the edit form
- Fix: Activation on OVH hosting works properly
- Fix: Animation does not create glitches upon adding
- Fix: <code><pre></code> tags work properly in TinyMCE
- Fix: Drag and Drop works properly
- Fix: Yoast integration works properly
#### Premium:
- New: Element Presets addon added to the Visual Composer Hub with an option to save an element with custom parameters, rows and sections can be saved as a template
- New: Option to set custom templates for categories, tags, and author pages
- New: Option to set custom templates for the search results page
- Element: Portfolio Post Grid added to the Visual Composer Hub
- Fix: Premium activation has a proper link to the Premium pricing
- Fix: Premium license key is displayed with a mask for privacy
- Fix: Dynamic content fields work properly in Global Templates
- Fix: Theme editor for custom header and footer work properly with WPML installed
= 24.0 =
*Release Date - 2020-01-14*
#### Free:
- New: Delay option added to CSS Animations in Design Options
- Fix: Google Fonts search in TinyMCE size is correct
- Fix: Blank page bottom space size reduced
- Fix: Post and page permalinks work properly
- Fix: Editor type change works properly
- Fix: Inline controls have proper styling
- Fix: Global CSS is not removed
- Fix: Content saving works properly
#### Premium:
- New: New Account my.visualcomposer.com launched for license and subscription management
- New: New Premium activation mechanism launched with the easier activation process
- New: Archive Page Editor to create custom archive page templates
- Update: Unsplash API updated
- Element: Faq Group element added
- Element: Link Dropdown element added
- Element: Star Testimonials element added
- Element: Shadow Pricing Table element added
- Element: Toggle Container element added
- Element: Content Slider element added
- Fix: Basic menu element has no extra space when collapsed
- Fix: Menu element size is calculated correctly
- Fix: Basic menu displayed properly in Safari
- Fix: Gutenberg editor compatibility improved
- Fix: Tabs with custom ids have proper links
- Fix: Multiple dropdown attribute works properly
- Fix: Template import works properly even if elements are missing
- Fix: Imported header can be added to the site
- Fix: Image slider works properly within accordions
- Fix: PublicJS files are not loaded twice
= 23.0 =
*Release Date - 2019-11-25*
#### Free:
- New: Google Fonts search and preview in TinyMCE editor
- Update: Settings panel width reduced in size to see the settings and content
- Fix: Using a proper wp-admin URL for staging sites
- Fix: Admin panel notices displayed properly
- Fix: Fontawesome categories and search works properly
- Fix: Background image radius works properly
- Fix: Animation effect works properly in Firefox
#### Premium:
- New: Dynamic Content is available in a single image link selector
- Update: Option to edit the selected template in a Theme Template page
- Update: New premium activation flow with license input
- Fix: Dynamic content with HTML works properly in TinyMCE
- Fix: WooCommerce variable product page works properly
- Fix: Toolset custom fields displayed properly in Dynamic Content
- Fix: Dynamic Content works properly in Faq elements
- Fix: Mouse follow animation works properly in Preview mode
- Element: Star ranking element to display customer feedback
- Fix: Tilt parallax effect works properly after template import
= 22.0 =
*Release Date - 2019-10-18*
#### Free:
- Update: Settings window displayed in full width for a better user experience
- Update: Text domain updated to “visualcomposer” for proper translations
- Update: Custom element order updated and displayed after default elements
- Fix: Shortcode element works properly
- Fix: Settings save works properly
- Fix: Raw JS element works properly
- Fix: Element update works properly
- Fix: Save button display proper state upon save
#### Premium:
- New: Tilt parallax effects added to a row, column, and section Design Options
- New: Mouse follow parallax background added to a row, column, and section Design Options
- New: Dynamic content works with Toolset plugin
- New: Post Slider element available in Visual Composer Hub
- Update: Parallax controls moved to the separate section
- Update: Dynamic content works properly with Yoast SEO
- Update: Post grid elements can be replaced
- Fix: Dynamic content dropdown works properly
- Fix: Template export works properly
- Fix: Icons in message box display properly
- Fix: Post Grid with Box element works properly
= 21.0 =
*Release Date - 2019-10-01*
#### Free:
- Update: Parallax settings moved from Design Options to the separate section
- Update: Cache is cleared for the most popular plugins and hostings on the editor save
- Update: Unsplash featured image preview available for the free version users
- Fix: Gravity Forms, ACF, and WooCommerce works properly with Visual Composer
#### Premium:
- New: Dynamic Content is available in Link Selector
- Fix: Header and Footer settings display/hide properly
= 20.0 =
*Release Date - 2019-09-26*
#### Free:
- New: Plugin upload to WordPress.org plugin repository
- New: Templates are added to the editor page with smooth loading
- Update: Icon library sets updated
- Update: License updated from GPLv2 to GPLv3
- Update: Video autoplay options updated in the video elements
- Fix: System Status message works properly in WordPress Dashboard
- Fix: All Google Fonts work properly
- Fix: Column width works properly on iOS
- Fix: Free template downloading works properly
- Fix: Yoast SEO analyzes content properly
#### Premium:
- New: Maintenance mode controls to set site under maintenance
- New: Dynamic Content option is available for advanced elements with parameter groups
- New: Dynamic Content works with ACF in Global Templates
- Update: Dynamic Content works with RTL
- Fix: SoundCloud element Design Options works properly
- Fix: Visual Composer Widget element and Global Templates work without compatibility issues
- Fix: Sandwich menu square style displayed properly
- Fix: Simple Image Slider works properly
- Fix: Post grid elements work properly in the editor
- Fix: Post Grid buttons work properly with Dynamic Content
= 19.0 =
*Release Date - 2019-08-28*
- New: Dynamic Content UI/UX improvements and popup window
- New: Dynamic Content works for the param group attributes for complex elements
- New: Dynamic Content works with Advanced Custom Fields (ACF)
- New: All Dynamic Content fields are available in Global Templates
- New: Visual Composer automatically adjusts links after site migration