forked from elementor/elementor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1748 lines (1515 loc) · 110 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
=== Elementor Page Builder ===
Contributors: elemntor, KingYes, ariel.k, jzaltzberg, mati1000, pojosh, bainternet, ramiy, yehudah
Tags: page builder, editor, landing page, drag-and-drop, elementor, visual editor, wysiwyg, design, maintenance mode, coming soon, under construction, website builder, landing page builder, front-end builder
Requires at least: 4.7
Tested up to: 5.0
Requires PHP: 5.4
Stable tag: 2.3.4
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
The most advanced frontend drag & drop page builder. Create high-end, pixel perfect websites at record speeds. Any theme, any page, any design.
== Description ==
https://www.youtube.com/watch?v=kB4U67tiQLA
It's about time for a live page builder, with no limits of design. A page builder that delivers high-end page designs and advanced capabilities, never before seen on WordPress.
It's time for **[Elementor Page Builder](https://elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme)**.
= Faster. Much faster. =
Instant reaction was a key feature we wanted to achieve. And we did. Instant drag & drop page builder, instant live edit, instant page load. The speed of Elementor is not matched by any other page builder, free or paid. This makes the interface fun and easy to work with, as well as reduces the time it takes to design.
= Live design. Truly live. =
Never again work on the backend and guess what the frontend will look like. With Elementor page builder, you edit the page and simultaneously see exactly how it looks like. Elementor features live design & inline editing, so the whole process of writing and designing is done directly on the page, with no need to press update or go to preview mode. It also works perfectly with or without Gutenberg.
= Surprises you won’t see anywhere else. =
With Elementor's unique features, you can create websites that have that certain 'designer touch'. Among our page builder features are: Box Shadows, Background Overlays, Hover Effects, Headline Effects, Animations, Shape Dividers, Gradient Backgrounds and much more.
= Pre-Designed Templates & Blocks =
Choose from 100+ of beautiful full page [WordPress templates](https://library.elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme) and customize them to make them your own. You can also build your page by choosing from 300+ Blocks.
Blocks are pre-designed section templates that can be easily combined into any page. Blocks include a variety of categories: services, testimonials, call to action and more. Save and reuse Elementor templates on different pages, or export them to a different website with a click.
= Mobile First. Mobile Editing. =
Elementor Page Builder comes with an exclusive toolset, that lets you create truly a responsive website in a whole new and visual way. From different font size, padding and margin per device, to reverse column ordering, this is the most powerful mobile page builder for creating perfect responsive websites.
= Undo / Redo & Revision History. =
Our page builder includes undo and redo for any action you make. Click on Ctrl / Cmd + Z, or browse through the complete list of actions. Want to go back ever further? Switch to Revisions to view a complete list of all earlier saved versions of the page.
= Canvas. A Blank Page Template for Landing Pages. =
Design your entire page in the page builder. No header, no footer, just Elementor. This is perfect for landing pages and coming soon pages. Canvas works on any theme, and lets you get rid of the header area so you get a blank template to work on.
= Built-in Maintenance Mode & Under Construction. =
Need to get your site offline for maintenance? Use Elementor page builder's built in Maintenance Mode & Coming Soon feature to show your visitors an under construction / coming soon page.
= Try Elementor Pro. The Best page Builder for WordPress. =
[Elementor Pro](https://elementor.com/pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme) vastly improves your design workflow and lets you design faster and better than ever. With Elementor Pro, everything is done visually and without code.
Making changes to your theme shouldn't be so hard. Endless coding, dealing with developers, switching themes. The [Theme Builder](https://elementor.com/theme-builder/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme) in Elementor Pro turns the entire process of creating WordPress websites 100% visual including your site's header, footer, single post and archive page design.
There are many other [features](https://elementor.com/features/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme) to help you build better websites:
* Visual and intuitive form builder
* Marketing automation and CRM integrations
* Custom fonts
* Role manager
* Blog post layout widget
* Image & video sliders
* WooCommerce
* Global widgets
* Custom CSS
* Animated headlines
* And much more.
Join the elite web professionals who enjoy [Elementor Pro](https://elementor.com/pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme)!
= 29 free widgets and counting =
We packed 29 of the most useful widgets into our page builder. True, that's way more than we had to offer, but we wanted to spare no widget from you, so you can reach the top of your design capabilities.
- **Heading**. Add eye-catching headlines.
- **Image**. Control the size, opacity and other settings of images.
- **Text Editor**. A WYSIWYG text editor, just like the WordPress editor.
- **Video**. Add YouTube \ Vimeo to your page.
- **Button**. Controlling every aspect of the button design.
- **Image Box**. A box that includes image, headline and text.
- **Testimonials**. Customer testimonials that show social proof.
- **Icon**. Place one or more of 600+ icons available.
- **Icon Box**. Works the same as the image box, only with icons.
- **Social Icons**. Icons to your social pages like Facebook / Twitter.
- **Image Gallery**. Displays your images in an aligned grid.
- **Image Carousel**. A rotating carousel or slider of chosen images.
- **Icon List**. A bullet list with any chosen icon and text.
- **Counter**. Show stats and numbers in an escalating manner.
- **Progress Bar**. Include an escalating progress bar.
- **Tabs**. Vertical or horizontal tabs that display different pieces of content.
- **Accordion**. A collapsable display of content.
- **Toggle**. Like Accordion, for FAQ pages.
- **Star Rating**. Add some social proof with a styled star rating.
- **Alert**. A colored alert box to draw the attention of the visitor.
- **HTML**. Insert code into the page.
- **Shortcode**. Easily insert shortcodes from any plugin into the page.
- **Menu Anchor**. Link any menu to this anchor.
- **Sidebar**. Add any sidebar into the page.
- **Google Maps**. Embed maps into the page.
- **SoundCloud**. Add audio bits from SoundCloud.
- **Divider**. A line that divides different elements in the page.
- **Spacer**. A space that divides the various elements.
- **Columns**. Create inner columns within the column.
- **And counting...**
= Multilingual & RTL supported. =
We've integrated RTL and multi language support within the framework of our page builder, so you get a translated panel out of the box, as well as RTL typography support, and developer options to add even more languages.
= Developer API. =
Elementor page builder is free and open source. It's the perfect page builder plugin to be extended and integrated further. It was created and developed with the developer in mind, and we have already seen some truly remarkable addons already developed.
To help you get started and learn just how to integrate with Elementor, we have created the [Official Elementor Developer Resources](https://developers.elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme) and the [Code Reference](https://code.elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme).
= Translations =
- [English (Australia)](https://translate.wordpress.org/locale/en-au/default/wp-plugins/elementor) - (en_AU)
- [English (UK)](https://translate.wordpress.org/locale/en-gb/default/wp-plugins/elementor) - (en_GB)
- [English (Canada)](https://translate.wordpress.org/locale/en-ca/default/wp-plugins/elementor) - (en_CA)
- [French](https://translate.wordpress.org/locale/fr/default/wp-plugins/elementor) - (fr_FR)
- [French (Belgium)](https://translate.wordpress.org/locale/fr-be/default/wp-plugins/elementor) - (fr_BE)
- [German](https://translate.wordpress.org/locale/de/default/wp-plugins/elementor) - (de_DE)
- [Italian](https://translate.wordpress.org/locale/it/default/wp-plugins/elementor) - (it_IT)
- [Spanish (Spain)](https://translate.wordpress.org/locale/es/default/wp-plugins/elementor) - (es_ES)
- [Spanish (Mexico)](https://translate.wordpress.org/locale/es-mx/default/wp-plugins/elementor) - (es_MX)
- [Japanese](https://translate.wordpress.org/locale/ja/default/wp-plugins/elementor) - (ja)
- [Portuguese (Portugal)](https://translate.wordpress.org/locale/pt/default/wp-plugins/elementor) - (pt_PT)
- [Portuguese (Brazil)](https://translate.wordpress.org/locale/pt-br/default/wp-plugins/elementor) - (pt_BR)
- [Swedish](https://translate.wordpress.org/locale/sv/default/wp-plugins/elementor) - (sv_SE)
- [Dutch](https://translate.wordpress.org/locale/nl/default/wp-plugins/elementor) - (nl_NL)
- [Danish](https://translate.wordpress.org/locale/da/default/wp-plugins/elementor) - (da_DK)
- [Polish](https://translate.wordpress.org/locale/pl/default/wp-plugins/elementor) - (pl_PL)
- [Italian](https://translate.wordpress.org/locale/it/default/wp-plugins/elementor) - (it_IT)
- [Chinese (China)](https://translate.wordpress.org/locale/zh-cn/default/wp-plugins/elementor) - (zh_CN)
- [Chinese (Taiwan)](https://translate.wordpress.org/locale/zh-tw/default/wp-plugins/elementor) - (zh_TW)
- [Persian](https://translate.wordpress.org/locale/fa/default/wp-plugins/elementor) - (fa_IR)
- [Hebrew](https://translate.wordpress.org/locale/he/default/wp-plugins/elementor) - (he_IL)
- [Russian](https://translate.wordpress.org/locale/ru/default/wp-plugins/elementor) - (ru_RU)
- [Romanian](https://translate.wordpress.org/locale/ro/default/wp-plugins/elementor) - (ro_RO)
- [Bulgarian](https://translate.wordpress.org/locale/bg/default/wp-plugins/elementor) - (bg_BG)
- [Greek](https://translate.wordpress.org/locale/el/default/wp-plugins/elementor) - (el)
- [Catalan](https://translate.wordpress.org/locale/ca/default/wp-plugins/elementor) - (ca)
- [Czech](https://translate.wordpress.org/locale/cs/default/wp-plugins/elementor) - (cs_CZ)
- [Hungarian](https://translate.wordpress.org/locale/hu/default/wp-plugins/elementor) - (hu_HU)
- [Croatian](https://translate.wordpress.org/locale/hr/default/wp-plugins/elementor) - (hr)
- [Finnish](https://translate.wordpress.org/locale/fi/default/wp-plugins/elementor) - (fi)
- [Arabic](https://translate.wordpress.org/locale/ar/default/wp-plugins/elementor) - (ar)
- [Afrikaans](https://translate.wordpress.org/locale/af/default/wp-plugins/elementor) - (af)
- [Ukrainian](https://translate.wordpress.org/locale/uk/default/wp-plugins/elementor) - (uk)
= Be a contributor =
If you want to contribute, go to our [Elementor GitHub Repository](https://github.com/pojome/elementor) and see where you can help.
You can also add a new language via [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/elementor). We've built a short guide explaining [how to translate and localize the plugin](https://go.elementor.com/translate/).
= Documentation and Support =
- For documentation and tutorials go to our [Documentation](https://docs.elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme).
- If you have any more questions, visit our support on the [Plugin's Forum](https://wordpress.org/support/plugin/elementor).
- For more information about features, FAQs and documentation, check out our website at [Elementor Page Builder](https://elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme).
= Liked Elementor? =
- Join our [Facebook Group](https://www.facebook.com/groups/Elementors/).
- Learn from our tutorials on [Youtube Channel](https://www.youtube.com/c/elementor).
- Or rate us on [WordPress](https://wordpress.org/support/plugin/elementor/reviews/?filter=5/#new-post) :)
== Installation ==
= Minimum Requirements =
* WordPress 4.6 or greater
* PHP version 5.4 or greater
* MySQL version 5.0 or greater
= We recommend your host supports: =
* PHP version 7.0 or greater
* MySQL version 5.6 or greater
* WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)
https://www.youtube.com/watch?v=Ypn6fltn_7s
= Installation =
1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the `wp-content/plugins/` directory of your WordPress installation.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Go to Pages > Add New
4. Press the 'Edit with Elementor' button.
5. Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.
For documentation and tutorials visit our [Knowledge Base](https://docs.elementor.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme).
== Frequently Asked Questions ==
**With Elementor, do I still need a theme?**
Yes. Think of it like this: a theme is like the frame of the picture, and Elementor is the tool to paint the picture inside the frame. You still need a theme to design a nice header and footer.
**Is Elementor compatible with Posts and Custom Post Types?**
It sure is! You can set which post types will enable Elementor in the settings page.
**Can I use other plugin widgets inside Elementor?**
Sure can! Plugin widgets that appear in the WordPress widgets menu will also appear inside Elementor automatically. Just drag and drop them onto the page.
**Do I need to know how to code to use Elementor?**
Absolutely not! Elementor is a live frontend page builder, that lets you reach a high end design with no need to write even a line of code or CSS.
**Will Elementor work with RTL or other languages?**
Yeah! Elementor enables to seamlessly build RTL pages as well as other translated pages in any language. You can read more about [translation and localization](https://go.elementor.com/translate/).
**My site is working with WordPress 2.6, will Elementor work for me?**
No. Elementor supports WordPress 4.6 or greater, and is compatible with PHP 5.4 or greater. We recommend your host supports PHP version 7.0 or greater and MySQL version 5.6 or greater.
== Screenshots ==
1. **Drag & Drop.** Our instant drag & drop lets you easily place every element anywhere on the page.
2. **Visual Resize Control.** Customize the various elements of the page. Resizing images, changing column sizes and much more.
3. **Truly Live Edit.** Changes on the page are displayed in realtime. No need to press update or preview.
4. **Template Library.** Save your pages or sections as templates, so you can easily reuse them again, or choose one of our beautiful pre-designed templates.
5. **Responsive Design.** Create custom settings for desktop, tablet & mobile by switching between devices.
6. **Revision History.** Switch between earlier versions of your page design, so your design process is backed up, every step of the way.
7. **Shape Divider.** Choose from a wide array of shape dividers and separate your sections in endless ways, that until now were simply not possible.
== Changelog ==
= 2.3.4 - 2018-11-29 =
* Tweak: Make sure "Edit with Elementor" action link is the last link in My Templates
* Fix: CSS parsing for non-existing controls ([#6296](https://github.com/pojome/elementor/issues/6296))
* Fix: Shows only editable documents in Finder
= 2.3.3 - 2018-11-28 =
* New: Added `elementor/frontend/{$element_type}/should_render` filter
* Tweak: Added a new `render_html_attributes` method
* Tweak: Added placeholder support for `date-time` control
* Tweak: Added ability to set a default value in a control `selectors` settings ([#6241](https://github.com/pojome/elementor/issues/6241))
* Tweak: Open links in new tab on `Ctrl + Enter` ([#6258](https://github.com/pojome/elementor/issues/6258))
* Tweak: Set the correct Dynamic tag categories for Self Hosted video
* Fix: Video lightbox won't open in some configurations
* Fix: Self-hosted video lightbox width
* Fix: Removed invalid `href` attribute in Tabs widget ([#6261](https://github.com/pojome/elementor/issues/6261))
* Fix: Restored element / widget hooks priority ([#6189](https://github.com/pojome/elementor/issues/6189))
* Fix: Drag the direct inner element only
* Fix: Show unsupported templates on My Templates list
* Fix: Make sure the document type exists in documents manager
* Fix: Set default for `slides to scroll` in Image Carousel widget
= 2.3.2 - 2018-11-17 =
* Tweak: Added `vw` unit to base control
* Tweak: Added WP Plugins and Users links to Finder
* Tweak: Updated Swiper progress style to new version
* Fix: Missing "View Page" and "Exit to Dashboard" in editor menu
* Fix: Background video position in edge cases
* Fix: Incorrect keyboard shortcut in Hotkeys cheatsheet
* Fix: Fatal error for 3rd party plugins ([#6192](https://github.com/pojome/elementor/issues/6192))
= 2.3.1 - 2018-11-12 =
* Fix: Print empty elements but not empty widgets ([#6134](https://github.com/pojome/elementor/issues/6134))
* Fix: Removed `figcaption` tag when no caption is set ([#6134](https://github.com/pojome/elementor/issues/6134))
= 2.3.0 - 2018-11-12 =
* New: Introducing Finder - The Easiest Way to Switch Between Pages ([#292](https://github.com/pojome/elementor/issues/292))
* New: Added Keyboard Shortcuts modal
* New: Introducing Star Rating widget
* Tweak: Added Deviantart, freeCodeCamp and GitLab to Social Icons widget ([#5820](https://github.com/pojome/elementor/issues/5820), [#5816](https://github.com/pojome/elementor/issues/5816))
* Tweak: Show preview fonts select on scroll ([#5207](https://github.com/pojome/elementor/issues/5207), [#3499](https://github.com/pojome/elementor/issues/3499))
* Tweak: Added compatibility for WordPress v5.0 Beta ([#6019](https://github.com/pojome/elementor/issues/6019))
* Tweak: Added filter to rename external CSS files ([#5968](https://github.com/pojome/elementor/issues/5968))
* Tweak: Added dynamic option for caption in the Image widget ([#5770](https://github.com/pojome/elementor/issues/5770))
* Tweak: Updated YouTube related videos control due to YouTube's API changes ([#5984](https://github.com/pojome/elementor/issues/5984), [#5939](https://github.com/pojome/elementor/issues/5939))
* Tweak: Added a general `hook elementor/frontend/after_render` to element-base
* Tweak: Added `elementor/element/before_attribute_render` hook before attributes are rendered
* Tweak: Added `elementor/element/after_attribute_render` hook after attributes are rendered
* Tweak: New `elementor/editor/init` action
* Tweak: A new `get_post_type_title` method for document
* Tweak: Added `Ctrl/Cmd + E` shortcut to open Finder modal
* Tweak: Added `Ctrl/Cmd + ?` shortcut to open all keyboard shortcuts modal
* Tweak: Added `Esc` shortcut for opening the settings menu
* Tweak: Update Eicons v3.9.2
* Fix: Added default width for SVG image to support edge cases ([#5987](https://github.com/pojome/elementor/issues/5987))
* Fix: Better WP Widget hooks support ([#5844](https://github.com/pojome/elementor/issues/5844))
* Fix: Exclude image link from lightbox when the link has 'download' attribute ([#5996](https://github.com/pojome/elementor/issues/5996))
* Fix: Background Gradient not working inside Repeater control ([#5914](https://github.com/pojome/elementor/issues/5914))
* Fix: Added support for future post status ([#5681](https://github.com/pojome/elementor/issues/5681), [#6000](https://github.com/pojome/elementor/issues/6000))
* Fix: Missing string translations ([#5989](https://github.com/pojome/elementor/issues/5989))
* Fix: Lightbox images links detection ([#6103](https://github.com/pojome/elementor/issues/6103))
* Fix: Animation class removed from Lightbox closing ([#5911](https://github.com/pojome/elementor/issues/5911))
* Fix: Allow plugins to set current page as Login Page for Maintenance Mode
* Fix: Added navigation between tabs via tab keyboard for better accessibility
* Fix: Use Thumbnail if selected size is missing
* Fix: A new method to handle with multiple image custom sizes
* Fix: Import template by WP CLI
* Fix: Height of bar without content in Progress Bar widget
* Fix: Added compatibility with a new embed API of YouTube
* Fix: Don't render wrapper of element if the content is empty
* Deprecated: `Source_Local::TYPE_META_KEY` is no longer supported
* Deprecated: `Document::save_type()` is replaced by `Document::save_template_type()`
= 2.2.7 - 2018-10-24 =
* Tweak: Update Google Fonts list with more than 20 new fonts ([Topic](https://wordpress.org/support/topic/please-update-google-fonts-library-with-the-latest-font-for-free-version/))
* Fix: Admin Notice not dismissing in some server configurations ([#5927](https://github.com/pojome/elementor/issues/5927))
* Fix: Image link not respecting the image size in the Image widget ([#5897](https://github.com/pojome/elementor/issues/5897))
= 2.2.6 - 2018-10-22 =
* Tweak: Added `get_render_attributes` method to `Element_Base` ([#5878](https://github.com/pojome/elementor/issues/5878))
* Tweak: Sets the minimum width of the content area as `300px`
* Tweak: Darken Elementor Loader icon color
* Fix: Field labels with multiple rows style glitch ([#4295](https://github.com/pojome/elementor/issues/4295))
= 2.2.5 - 2018-10-07 =
* Tweak: System Info now recognizes MariaDB versions
* Tweak: Allow document to override widgets panel settings
* Fix: Admin Notice not dismissing when JS disabled ([#5832](https://github.com/pojome/elementor/issues/5832))
* Fix: System Info Uncaught Error on edge cases
= 2.2.4 - 2018-09-20 =
* Tweak: Added Poster option for Self Hosted in Video widget
* Fix: Revert Gutenberg Image Block compatibility until stable version ([#5763](https://github.com/pojome/elementor/issues/5763))
= 2.2.3 - 2018-09-17 =
* Tweak: Improved browser compatibility with Elementor grid
* Fix: Toggle Widget first toggle always open on load
* Fix: Changed Dailymotion placeholder in Video widget
= 2.2.2 - 2018-09-16 =
* Tweak: Improved IE compatibility mechanism
* Tweak: Added `remove_all_actions( 'after_wp_tiny_mce' )` hook for better compatibility with 3rd party plugins ([#5686](https://github.com/pojome/elementor/issues/5686))
* Fix: Content styling missing when no icon for Toggle widget ([#5735](https://github.com/pojome/elementor/issues/5735))
* Fix: Redirect issue on activation via Ajax
* Fix: Excluded `Actions` label from ordering in Template library modal
* Fix: Avoid setting empty title for elements in Navigator
* Fix: Compatibility for Gutenberg Image Block
= 2.2.1 - 2018-09-03 =
* Fix: Auto scrolling when clicking on long element ([#5591](https://github.com/pojome/elementor/issues/5591))
* Fix: Increased number input width besides slider control ([#5521](https://github.com/pojome/elementor/issues/5521))
* Fix: Typography line-height default unit for all devices ([#5527](https://github.com/pojome/elementor/issues/5527))
* Fix: Added Navigator compatibility for Role Manager ([#5599](https://github.com/pojome/elementor/issues/5599))
* Fix: Clear cache via native WordPress methods to support object cache plugins ([#4179](https://github.com/pojome/elementor/issues/4179))
* Fix: E loader RTL style glitch
* Fix: History undo after adding a section
* Fix: Styling issue with Testimonial widget image
* Fix: Panel elements search error when the user is in `content only` mode
* Fix: Better Navigator support for safari versions
= 2.2.0 - 2018-08-28 =
* New: Introducing Navigator Panel ([#1165](https://github.com/pojome/elementor/issues/1165))
* New: Added Autocomplete URL functionality for Internal Linking ([#255](https://github.com/pojome/elementor/issues/255))
* New: Added `Cmd/Ctrl + I` hotkey for the Navigator
* New: Added `Cmd/Ctrl + Shift + V` hotkey for paste style
* New: Added "Getting Started" page after new installation
* New: Added reverse columns for tablet screen resolution ([#2070](https://github.com/pojome/elementor/issues/2070))
* Tweak: Changed the name of Columns widget to Inner Section to reduce confusion
* Tweak: Added option to restore Editing Handles ([#4981](https://github.com/pojome/elementor/issues/4981))
* Tweak: Remember Editor panel width in localStorage ([#2414](https://github.com/pojome/elementor/issues/2414))
* Tweak: Added official color option on hover state in Social Icons Widget ([#2032](https://github.com/pojome/elementor/issues/2032))
* Tweak: New user interface for CSS Filters control
* Tweak: Added `Hue` filter to CSS Filters control
* Tweak: Added a Lazy Load option for the Video widget ([#5189](https://github.com/pojome/elementor/issues/5189))
* Tweak: Added Mixcloud icon to Social Icons widget ([#5417](https://github.com/pojome/elementor/issues/5417))
* Tweak: Added an additional aspect ratio (21:9) in Video widget
* Tweak: Added edit capabilities in the responsive mode
* Tweak: Removed default transparency on hover button ([#4406](https://github.com/pojome/elementor/issues/4406))
* Tweak: Redesign `E` loader
* Tweak: Added `elementor/frontend/before_render` hook to `element-base`
* Fix: Reverse column bug in responsive columns ([#5421](https://github.com/pojome/elementor/issues/5421))
* Fix: Compatibility for IE11 by adding IE CSS via JS ([#5510](https://github.com/pojome/elementor/issues/5510), [#5530](https://github.com/pojome/elementor/issues/5530))
* Fix: IE11 bug in case of `min-height` mixed with `align-items: center`
* Fix: Resize the columns via the `Column Width` after moving the section ([#5393](https://github.com/pojome/elementor/issues/5393))
* Fix: Different videos with the same image showing the same video
* Fix: Inline editing in Progress Bar widget
= 2.1.8 - 2018-08-19 =
* Fix: Prevent columns from overflowing the grid area in Firefox browser ([#5442](https://github.com/pojome/elementor/issues/5442))
* Fix: Style glitch in the panel separator
= 2.1.7 - 2018-08-15 =
* Fix: Avoid copying custom CSS ID when pasting style ([#5416](https://github.com/pojome/elementor/issues/5416))
* Fix: Responsive CSS for minimal grid utility ([#5375](https://github.com/pojome/elementor/issues/5375))
* Fix: Make Elementor Canvas compatible with iPhone X landscape orientation
= 2.1.6 - 2018-07-31 =
* Fix: Removed reference to source map file in Swiper minified file
* Fix: Element handle style glitch in mobile view
* Fix: Delete element with hotkey after text editing
* Fix: Avoid auto focus on the widget panel search field after deleting an element
= 2.1.5 - 2018-07-26 =
* Tweak: Added `Ctrl/Cmd + Y` for redo action ([#5090](https://github.com/pojome/elementor/issues/5090))
* Tweak: Clear WP cache in upgrade steps
* Fix: Corrected conditions for start/end times with loop in Video widget
* Fix: Padding for first active control in section
* Fix: Loader styling for some languages
* Fix: RTL style for Choose control
* Fix: Possible memory leak by parsing and sanitizing data and settings only when it's necessary
* Fix: Fixed text selection detection in FireFox
* Fix: `on-paste` check for Choose control
* Fix: `fixed` positions for Color Picker
* Fix: Removed empty space from `elementor/document/urls/edit` hook name ([#5216](https://github.com/pojome/elementor/issues/5216))
* Fix: Dynamic tags support in Shortcode widget ([#5214](https://github.com/pojome/elementor/issues/5214))
= 2.1.4 - 2018-07-18 =
* Tweak: Show modified date instead of publish date on Dashboard widget ([#4169](https://github.com/pojome/elementor/issues/4169))
* Fix: Selector for CSS Filters control in column
* Fix: CSS Filters for self hosted video
* Fix: Avoid creating unnecessary CSS for widgets
* Fix: Added backward compatibility for deprecated controls
* Fix: Color Picker control value change detection
* Fix: Avoid multiple ready trigger in preview
* Fix: Save default page template
= 2.1.3 - 2018-07-16 =
* Tweak: Added CSS filter control for Map, Video, Section and Column
* Tweak: Added Inspector option in Tools page
* Tweak: Added Inspector log for Canvas & Full Width templates
* Tweak: The preview is now loading via plain URL to avoid errors in some server configurations
* Tweak: Added `print_elements_with_wrapper` method to allow a document to overwrite it's wrapper
* Tweak: Added action hook `elementor/template-library/after_get_source_data`
* Fix: Page template missing after import ([#4498](https://github.com/pojome/elementor/issues/4498))
* Fix: Maintenance Mode override theme template
* Fix: Removed focus and active states from Hover Animations
* Fix: Prevent submit forms in the preview
* Fix: Disable history tracking when restoring a revision
* Fix: Empty history changes after restoring a revision
* Fix: Paste style on control with groups
* Fix: Avoid overwrite `_wp_page_template` in edge cases
= 2.1.2 - 2018-07-08 =
* Tweak: Set active/inactive category by `'active' => false` (default is `true`)
* Tweak: Added forms input style compatibility for some themes
* Fix: XML Demo Import compatibility for admin based imports ([#4947](https://github.com/pojome/elementor/issues/4947))
* Fix: Set correct `post_id` when call `enqueue_scripts` from preview mode
* Fix: Conditions not working on dynamic backgrounds
* Fix: Paste of multiple content in Add Section Area
* Fix: Set lower priority to `template_include` hook to override 3rd party plugins, e.g. WooCommerce
* Fix: Hide Save Widget as Global button for old versions
* Fix: Added RTL style for section with handles inside
* Deprecated: Restore `get_page` method as hard deprecated ([#4870](https://github.com/pojome/elementor/issues/4870))
= 2.1.1 - 2018-07-03 =
* Tweak: Compatibility Gutenberg classic editor
* Fix: Compatibility for PHP < 5.6
= 2.1.0 - 2018-07-03 =
* New: Introducing Elementor Context Menu
* New: Copy/Paste elements ([#4151](https://github.com/pojome/elementor/issues/4151))
* New: Copy/Paste element style ([#1479](https://github.com/pojome/elementor/issues/1479))
* New: Copy/Paste between pages
* New: Reset element style
* New: Added `copy_all_content` option
* New: Change mobile & tablet breakpoints ([#78](https://github.com/pojome/elementor/issues/78))
* New: Introducing Elementor WP-CLI integration ([#2161](https://github.com/pojome/elementor/issues/2161))
* New: Added collapsable panel categories ([#3805](https://github.com/pojome/elementor/issues/3805))
* New: Added Self hosted videos with HTML5 for Video widget ([#3313](https://github.com/pojome/elementor/issues/3313))
* New: Added Dailymotion provider for Video widget ([#2285](https://github.com/pojome/elementor/issues/2285))
* New: Added start/end controls for Video widget ([#3565](https://github.com/pojome/elementor/issues/3565))
* New: Added new icons to Social Icons widget: Android & Thumbtack ([#4235](https://github.com/pojome/elementor/issues/4235), [#4486](https://github.com/pojome/elementor/issues/4486))
* New: Hotkey: Ctrl / Cmd + C = Copy
* New: Hotkey: Ctrl / Cmd + V = Paste
* Tweak: Added CSS Filter group control ([#3260](https://github.com/pojome/elementor/issues/3260))
* Tweak: Added CSS Filters to Image & Image Box widgets
* Tweak: Added compatibility with Gutenberg 3.0.+ ([#2631](https://github.com/pojome/elementor/issues/2631))
* Tweak: Added CSS ID for Button widget ([#4535](https://github.com/pojome/elementor/issues/4535))
* Tweak: Added keywords to all widgets for more accurate filtering
* Tweak: Replace hover section with tabs Icon & Icon Box widgets
* Tweak: Moved `delete all content` to the page level right click
* Tweak: When converting content with only a shortcode to Elementor, a shortcode widget used instead of Text Editor widget (#4616)
* Tweak: Updated Swiper library to v4.3.3 ([#4170](https://github.com/pojome/elementor/issues/4170))
* Tweak: Added `elementor/shapes/additional_shapes` filter hook to allow custom shape dividers (#4759)
* Tweak: Added video support to media control ([#4066](https://github.com/pojome/elementor/issues/4066))
* Tweak: Dropped Support for WP v4.6, now supporting WP v4.7+
* Fix: The `wpColorPicker` will not be updated after emptying the value
* Fix: Added fallback for injection position when the injection control does not exist
* Fix: Focus state behavior in the Repeater control ([#4596](https://github.com/pojome/elementor/issues/4596))
* Deprecated: `Repeater::get_fields()` is replaced by `Repeater::get_controls()`
* Deprecated: `Element_Base::get_parent()` is replaced by `Element_Base::get_data( 'parent' )`
* Deprecated: `get_class_controls` is no longer supported
* Deprecated: `\Elementor\settings\page\manager::get_page()` is now removed ([#4870](https://github.com/pojome/elementor/issues/4870))
= 2.0.16 - 2018-06-12 =
* Fix: Dynamic Tag CSS not working on columns & widgets ([#4662](https://github.com/pojome/elementor/issues/4662))
* Fix: Hide title now also hides Post Title widget
* Fix: Trigger Elementor ready only once
= 2.0.15 - 2018-06-05 =
* Fix: Background video in Chrome v67+
* Fix: CSS glitch in local library modal
* Fix: CSS glitch with dynamic buttons in a repeater
* Fix: Divider control on top of controls popover
* Fix: Conditions check for `in` & `!in`
* Fix: Prefix class when the value is numeric
= 2.0.14 - 2018-05-29 =
* Fix: Missing Dynamic Image Background properties on front-end ([#4577](https://github.com/pojome/elementor/issues/4577))
* Fix: Avoid page settings global `$post` being overwritten by 3rd party plugins ([#4563](https://github.com/pojome/elementor/issues/4563))
* Fix: Editor won’t load for users without publishing capabilities
* Fix: Only show Caption style section for Image widget if needed
= 2.0.13 - 2018-05-28 =
* New: Dynamic Image Backgrounds ([#3971](https://github.com/pojome/elementor/issues/3971))
* Tweak: Updated Dialog Manager v4.3.2
* Tweak: Better accessibility for Back to Editor button
* Tweak: Confusing error message ([#4546](https://github.com/pojome/elementor/issues/4546))
* Fix: Panel buttons style glitch in edge cases
* Fix: PHP notice in Polylang compatibility
* Fix: Editor won't load for users without publishing capabilities
* Fix: Media queries ordering in CSS file for mixed min and max break points
* Fix: Improved video background loading method
= 2.0.12 - 2018-05-15 =
* Tweak: Added new method `add_body_class`
* Tweak: Set library filter by the document
* Tweak: Allow 3rd party developers to register documents on init
* Fix: Set attach uploaded images to the current post
* Fix: Scroll not working in the library modal ([#4394](https://github.com/pojome/elementor/issues/4394))
* Fix: Blocks dropdown menu escapes container on scroll ([#3947](https://github.com/pojome/elementor/issues/3947))
= 2.0.11 - 2018-05-09 =
* Fix: Stronger selector for heading widget color, to avoid section style override ([#4266](https://github.com/pojome/elementor/issues/4266))
* Fix: style missing when role manager in content only mode
= 2.0.10 - 2018-05-08 =
* Fix: Added icon for Dynamic Tag without settings
* Fix: Added offset for anchor scroll section is sticky ([#4323](https://github.com/pojome/elementor/issues/4323))
* Fix: Title changing on auto-save for various languages
* Fix: Cannot scroll in the library modal ([#4325](https://github.com/pojome/elementor/issues/4325))
= 2.0.9 - 2018-05-01 =
* Tweak: Added ability to add Dynamic Tags from 3rd party applications
* Tweak: Added ability to add custom classes to the wrapper for extending widgets
* Tweak: Using full version of Select2.js in the admin
* Tweak: Update Eicons v3.3
* Fix: My Template tabs are not translatable ([#4221](https://github.com/pojome/elementor/issues/4221))
* Fix: Added compatibility for domain mapping with filter tag ([#4307](https://github.com/pojome/elementor/issues/4307))
* Fix: Popover closes after clicking on select2 search container ([#4310](https://github.com/pojome/elementor/issues/4310))
* Fix: Wrapping Dynamic Tag in the editor
* Fix: Removed unnecessary condition from Transition Duration control
* Fix: Removed listening to parent model on Repeater control
* Fix: Controls styling in repeater
* Fix: Ensure the frontend scripts are enqueued once in the editor preview
= 2.0.8 - 2018-04-23 =
* Tweak: Added action hook for caching plugins when clearing CSS files `do_action( 'elementor/css-file/clear_cache' );` ([#4179](https://github.com/pojome/elementor/issues/4179))
* Tweak: Added Page Templates support only for layout pages
* Fix: Smooth scrolling not working ([#4168](https://github.com/pojome/elementor/issues/4168), [#4125](https://github.com/pojome/elementor/issues/4125))
* Fix: Stretch section for archive pages
* Fix: Icon vertical alignment in icon list widget
= 2.0.7 - 2018-04-18 =
* Tweak: Rename filter `elementor/get_document/post_id` to `elementor/documents/get/post_id`
* Tweak: Added Divider control for Icon List widget on inline skin
* Tweak: Added CSS classes per document in Preview
* Tweak: Added option to avoid export data by adding `export=false` to control args
* Fix: Support for editing images in WP Media Modal ([#3062](https://github.com/pojome/elementor/issues/3062))
* Fix: Responsive inline alignment for Icon List widget
* Fix: Added higher priority to support Google Fonts in locations
* Fix: Import templates with Dynamic data
* Fix: Editing buttons missing when preview set as archive
* Fix: Export document settings for all template types
= 2.0.6 - 2018-04-15 =
* New: Image widget - added new control for Image width
* Tweak: Added support for dynamic video via ACF
* Tweak: Reorder admin columns in My Templates
* Tweak: Update Eicons v3.2.2
* Tweak: Added `elementor/get_document/post_id` filter for `get document` - compatibility for translation plugins
* Tweak: Print container classes per document
* Tweak: Added `elementor-edit-area-preview` and `elementor-edit-area-active` classes
* Tweak: Removed wrapper for dynamic data
* Fix: Per device Visibility for editor with multiple Elementor areas
* Fix: CSS glitch for URL input with dynamic
* Fix: Dynamic Show Before/After only when value is not empty
= 2.0.5 - 2018-04-11 =
* Fix: Avoid merge for incorrect page settings data
* Fix: Style tab on document settings not saving on autosave
* Fix: Duplicate icons by updated Eicons library
= 2.0.4 - 2018-04-09 =
* Tweak: Update Google Fonts list with more than 30 new fonts
* Tweak: Updated Eicons to v3.2.0
* Fix: Page template doesn't work in draft status ([#3706](https://github.com/pojome/elementor/issues/3706))
* Fix: Make sure that document settings works only on existing posts ([#3993](https://github.com/pojome/elementor/issues/3993), [Topic](https://wordpress.org/support/topic/php-fatal-error-after-last-update/))
* Fix: Removed some duplicate strings
* Fix: Undefined index when save editor using old method
* Fix: Use ` ` to add spaces before/after for tags with HTML ([#3826](https://github.com/pojome/elementor/issues/3826))
= 2.0.3 - 2018-03-29 =
* Tweak: Added Knowledge Base link to WordPress admin menu
* Tweak: Improved performance in the editor using internal caching
* Fix: Avoid WordPress override page template in auto-save status ([Topic](https://wordpress.org/support/topic/save-draft-will-revert-page-layout-into-default-instead-of-elementor-canvas/))
* Fix: Set element ID before sanitizing data
= 2.0.2 - 2018-03-28 =
* Fix: Title changing on auto-save
* Fix: Page templates reverts to default on preview ([#3933](https://github.com/pojome/elementor/issues/3933))
* Fix: Editor won't load when a custom image size is used ([#3926](https://github.com/pojome/elementor/issues/3926))
* Fix: WordPress Widgets not loading saved settings ([#3930](https://github.com/pojome/elementor/issues/3930))
= 2.0.1 - 2018-03-27 =
* Fix: Removed promotion in the Role Manager area ([#3903](https://github.com/pojome/elementor/issues/3903))
* Fix: Improved responsive style for My Template modal ([#3914](https://github.com/pojome/elementor/issues/3914))
* Fix: Issue with conditional repeater field ([#3886](https://github.com/pojome/elementor/issues/3886), [#3865](https://github.com/pojome/elementor/issues/3865))
* Fix: The notifications toast goes down when you change the page layout
* Fix: Custom delimiter char for frontend template in the Counter widget
* Fix: Import template from WP Admin
= 2.0.0 - 2018-03-26 =
* New: Added new library tab for pre-design "Blocks"
* New: Added new page template "Elementor Full Width"
* New: Document Type method to register new template types ([#3409](https://github.com/pojome/elementor/issues/3409))
* New: Added new social icons for 500px, Steam and StumbleUpon ([#3106](https://github.com/pojome/elementor/issues/3106), [#3636](https://github.com/pojome/elementor/issues/3636))
* Tweak: Dropped Support WP 4.5, now supporting WP 4.6 and higher
* Tweak: New settings interface for Role Manager
* Tweak: Reintroduce divider control for UI panel ([Developer API](https://developers.elementor.com/elementor-controls/divider-control/))
* Tweak: Added inline view for icon-list widget ([#1624](https://github.com/pojome/elementor/issues/1624))
* Tweak: Added "Featured Image" control to document settings ([#3429](https://github.com/pojome/elementor/issues/3429))
* Tweak: Added custom thousand separator in Counter widget ([#3459](https://github.com/pojome/elementor/issues/3459))
* Tweak: Added "Image Size" control to the "Video" widget overlay image ([#3488](https://github.com/pojome/elementor/issues/3488))
* Tweak: Added "Image Size" control to the "Image Box" widget ([#3251](https://github.com/pojome/elementor/issues/3251))
* Tweak: Added "Image Size" control to the "Testimonial" widget ([#3472](https://github.com/pojome/elementor/issues/3472))
* Tweak: Added "Link" control to the "Testimonial" widget ([#3480](https://github.com/pojome/elementor/issues/3480))
* Tweak: Added "Caption Spacing" control to the "Image" widget ([#3452](https://github.com/pojome/elementor/issues/3452))
* Tweak: Added responsive control to the text padding in the "Button" widget
* Tweak: Added compatibility for the future release of Elementor
* Tweak: Added `Groove` style to the "Border" control
* Tweak: Decreasing column minimum width to 2%
* Tweak: Decreasing section minimum height in edit mode
* Tweak: Match HTML tags for the section and the column ([#3471](https://github.com/pojome/elementor/issues/3471))
* Tweak: Renamed the `clear_page` section in the document settings
* Tweak: Renamed the `general-elements` widgets category to `general` ([#3729](https://github.com/pojome/elementor/issues/3729))
* Tweak: Remember the last library tab and search/filters that was open
* Tweak: Replace the select control with a switcher control in the Video widget "Play Icon" control ([#3262](https://github.com/pojome/elementor/issues/3262))
* Tweak: Video widget accessibility - added `role="button"` attribute to the Play button ([#3270](https://github.com/pojome/elementor/issues/3270))
* Tweak: Button widget accessibility - added `role="button"` attribute ([#3271](https://github.com/pojome/elementor/issues/3271))
* Tweak: Icon widget accessibility - added `aria-hidden` attribute to the `i` tag ([#3272](https://github.com/pojome/elementor/issues/3272))
* Tweak: Icon Box widget accessibility - added `aria-hidden` attribute to the `i` tag ([#3273](https://github.com/pojome/elementor/issues/3273))
* Tweak: Google Maps widget accessibility - added `aria-label` attribute to the `iframe` tag ([#3274](https://github.com/pojome/elementor/issues/3274))
* Tweak: Moved `placeholder` and `title` settings from base control settings into individual controls that use them ([#3795](https://github.com/pojome/elementor/issues/3795))
* Tweak: Updated the "Icon Box" widget to handle cases where no icon is set
* Tweak: Updated the way widget categories are registered in Elementor ([#3729](https://github.com/pojome/elementor/issues/3729))
* Tweak: Slick.js library Updated to v1.8.1 ([#3538](https://github.com/pojome/elementor/issues/3538))
* Tweak: Updated Eicons to v3.0.0
* Tweak: Updated Select2 to v4.0.5
* Fix: Document settings now saved as revisions on auto save ([#3510](https://github.com/pojome/elementor/issues/3510))
* Fix: Show preset section in the right side for RTL
= 1.9.8 - 2018-03-12 =
* Fix: Activate publish button if there is an auto-save version
* Fix: Server error message missing in edge cases
* Fix: Updated dialog library ([#3668](https://github.com/pojome/elementor/issues/3668))
* Fix: Text Decoration option in Button Widget ([#3701](https://github.com/pojome/elementor/issues/3701))
* Fix: Added `autopause=0` in order to allow multiple autoplay in Vimeo video
* Fix: Added missing translation string to control in the Image Carousel widget
= 1.9.7 - 2018-02-27 =
* Tweak: `Element_Base::get_style_depends()` method is now overwritable ([#3494](https://github.com/pojome/elementor/issues/3494))
* Fix: "Enter" key triggers Elementor mode instead of default submit action ([#3556](https://github.com/pojome/elementor/issues/3556))
* Fix: Stop showing Connection Lost notification when editing widgets
* Fix: Counter widget - Allow spacing between prefix and suffix
= 1.9.6 - 2018-02-21 =
* Fix: When selecting a color with alpha, the value is not fully visible ([#3320](https://github.com/pojome/elementor/issues/3320))
* Fix: "Create new Page" button in dashboard widget ([#3491](https://github.com/pojome/elementor/issues/3491))
* Fix: `safe_copy_elementor_meta` for editor revisions
* Fix: Clear filters when syncing library
* Fix: Background attachment fixed only on desktop
= 1.9.5 - 2018-02-14 =
* Fix: Added reset for background video when the parent has set `text-align: center;`
* Fix: Print global and post CSS files after all 3rd party plugins styles
* Fix: Avoid setting editor changed-flag on auto-saving
* Fix: Stretch section fallback to body when selector not found or the container doesn't exist
= 1.9.4 - 2018-02-07 =
* Tweak: Added draft posts to Elementor dashboard widget ([#3379](https://github.com/pojome/elementor/issues/3379))
* Tweak: Removed CodeMirror script for WP Custom HTML widget to improve performance
* Fix: Fonts not loaded in edit mode for widget template ([#3352](https://github.com/pojome/elementor/issues/3352))
* Fix: Prevent template library modal close on actions in edge cases
* Fix: Set save button as disabled if there is nothing to save
* Fix: Added publish to editor translations
* Fix: Added a flex-basis patch for better support in Firefox browser
* Fix: Image Box heading link now works without an image ([#2854](https://github.com/pojome/elementor/issues/2854))
= 1.9.3 - 2018-01-21 =
* Fix: Enqueue style/script if when not needed ([#3094](https://github.com/pojome/elementor/issues/3094))
* Fix: Added compatibility for Safari browser accessibility
* Fix: Error message in saver
* Fix: Elementor missing WP editor content ([#3139](https://github.com/pojome/elementor/issues/3139))
* Fix: Changes lost on revisions panel tab destroy ([#3242](https://github.com/pojome/elementor/issues/3242))
= 1.9.2 - 2018-01-16 =
* Tweak: Improved querying for revisions to reduce load time on posts with lots of revisions
* Tweak: Added new notifications when connection with the server is lost and on server errors
* Fix: Autosave now show only Elementor data ([#3144](https://github.com/pojome/elementor/issues/3144))
* Fix: Show correct post content in autosave
* Fix: Preview Changes button now uses `wp_preview_url()`
* Fix: Typography settings not showing correctly in some cases ([#3145](https://github.com/pojome/elementor/issues/3145))
* Fix: Group control with conditions ([#3182](https://github.com/pojome/elementor/issues/3182))
* Fix: Import template in some configurations by checking if `ZipArchive` class is exists
* Fix: Tooltip flickering in the responsive mode button ([#3151](https://github.com/pojome/elementor/issues/3151))
= 1.9.1 - 2018-01-10 =
* Fix: Conflict between responsive control and group control popup ([#3130](https://github.com/pojome/elementor/issues/3130))
* Fix: Color picker handle lag
* Fix: Native WordPress widgets stopped working
= 1.9.0 - 2018-01-09 =
* New: Added Autosave capability for editor
* New: Added save as draft option ([#2824](https://github.com/pojome/elementor/issues/2824))
* New: Brand new Template Library
* New: Added filter & sorting (new, trend & popular) to Template Library ([#1711](https://github.com/pojome/elementor/issues/1711))
* New: Added import & sync tools to Template Library ([#2402](https://github.com/pojome/elementor/issues/2402))
* New: Added search form to Template Library ([#2499](https://github.com/pojome/elementor/issues/2499))
* New: Added my favorites option to the Template Library
* New: Added sorting (name, type, author & date) to My Templates Library
* New: Added new social icons for Meetup, RSS & Skype ([#2703](https://github.com/pojome/elementor/issues/2703), [#2701](https://github.com/pojome/elementor/issues/2701), [#3090](https://github.com/pojome/elementor/issues/3090))
* New: Added Overview dashboard widget
* Tweak: Added privacy control to video widget ([#2741](https://github.com/pojome/elementor/issues/2741))
* Tweak: Added new controls for Icons, Spacing & Padding to Toggle widget ([#2836](https://github.com/pojome/elementor/issues/2836))
* Tweak: Added new controls for Icons & Padding to Accordion widget ([#2836](https://github.com/pojome/elementor/issues/2836))
* Tweak: Added responsive space between control to Icon List widget
* Tweak: Rename "Page Settings" panel to "Document Settings"
* Tweak: Moved My Library to top of admin menu ([#2843](https://github.com/pojome/elementor/issues/2843))
* Tweak: Re-design menu of editor panel
* Tweak: Replaced `jquery-simple-dtpicker` with `flatpickr` JS library ([#2095](https://github.com/pojome/elementor/issues/2095))
* Tweak: Reduced panel clutter by allowing group control to be displayed as a popup
* Tweak: Added Gutenberg compatibility - "Add New Elementor" and "Back to Classic" edit screen
* Tweak: Added excerpt control to the Document Settings if the post type supports excerpts ([#2837](https://github.com/pojome/elementor/issues/2837))
* Tweak: Added `text-decoration` to Typography control
* Tweak: All functions, action hooks and filter hooks have been documented
* Tweak: Implementing inline editing functionality in various Elementor widgets
* Tweak: Accessible widget search - add label for screen readers in the search box ([#2835](https://github.com/pojome/elementor/issues/2835))
* Tweak: Improved Editor accessibility - replace `title` attributes with `aria-label` ([#2861](https://github.com/pojome/elementor/issues/2861))
* Tweak: Progress Bar widget accessibility - set correct `role` and added new `aria` attributes ([#2861](https://github.com/pojome/elementor/issues/2861))
* Tweak: Alert widget accessibility - make the "Dismiss" button accessible ([#3108](https://github.com/pojome/elementor/issues/3108))
* Tweak: Tabs widget accessibility - added `id`, `role` and `aria` attributes ([#2913](https://github.com/pojome/elementor/issues/2913))
* Tweak: Toggle widget accessibility - added `id`, `role` and `aria` attributes ([#2836](https://github.com/pojome/elementor/issues/2836))
* Tweak: Accordion widget accessibility - added `id`, `role` and `aria` attributes ([#2836](https://github.com/pojome/elementor/issues/2836))
* Tweak: Social Icons widget accessibility - added labels for screen readers
* Tweak: Added Browser support notification for unsupported browsers
* Tweak: Depended styles, various elements can set stylesheet dependencies ([#1636](https://github.com/pojome/elementor/issues/1636))
* Tweak: Added option to set control as required by `required => true`
* Fix: Added `wptexturize` filter to match WordPress native text formatting
* Fix: Alignment issue with Icon widget
= 1.8.12 - 2018-01-03 =
* Tweak: Added style compatibility for multiple select field
* Tweak: Added trim extra spaces in WP editor
* Fix: WC session not defined in editor
= 1.8.11 - 2017-12-19 =
* Tweak: Support W3C validation when using multiple Google Fonts ([Topic](https://wordpress.org/support/topic/bad-character-while-embedding-google-fonts/))
* Tweak: Eicons v2.9.0 Updated
* Fix: TinyMCE inside repeater missing content after sort canceled ([#2952](https://github.com/pojome/elementor/issues/2952))
* Fix: Alpha color picker added `#` to default value ([#2978](https://github.com/pojome/elementor/issues/2978))
* Fix: Wrong parameter for multiple conditions with nested relations
* Fix: Init heartbeat only after preview has been loaded successfully to prevent unexpected behavior in edge cases
= 1.8.10 - 2017-12-13 =
* Tweak: Allow support for multiple conditions with relations
* Fix: Waypoint in order to support default options and trigger once
* Fix: Entrance animation near the bottom of the page ([#2114](https://github.com/pojome/elementor/issues/2114), [#2060](https://github.com/pojome/elementor/issues/2060))
* Fix: Avoid delete current revision preview, check it's a valid revision
* Fix: Change post-status in page settings
= 1.8.9 - 2017-12-06 =
* Security Fix! - Prevent potential privilege escalation in page settings & history
* Fix: Allow Contributors to preview library templates
* Fix: Font Awesome icons are italicized ([#2873](https://github.com/pojome/elementor/issues/2873))
* Fix: CSS autoprefixer for minified files (now supports last 10 versions of browsers)
* Fix: Import template in Safari browser
* Fix: Post config for none singular pages
* Fix: Re-Render WYSIWYG control inside repeater on sort changed ([#2897](https://github.com/pojome/elementor/issues/2897), [#2450](https://github.com/pojome/elementor/issues/2450), [#2324](https://github.com/pojome/elementor/issues/2324))
* Fix: Eicons CSS re-compiled ([#2878](https://github.com/pojome/elementor/issues/2878))
= 1.8.8 - 2017-11-30 =
* Tweak: Eicons v2.8.0 Updated
* Security Fix! - Prevent potential privilege escalation in template library
= 1.8.7 - 2017-11-29 =
* Tweak: Eicons v2.7.0 updated
* Fix: Added per post type "edit_post" capability mapping in the editor ([#2846](https://github.com/pojome/elementor/issues/2846))
* Fix: Bump color picker script version to v2.0 to force a browser cached version refresh ([#2550](https://github.com/pojome/elementor/issues/2550))
= 1.8.6 - 2017-11-26 =
* Fix: Changed minimum editing capability to `edit_posts` ([#2791](https://github.com/pojome/elementor/issues/2791))
* Fix: Disable `white-space: pre-wrap` in advanced editing mode ([#2776](https://github.com/pojome/elementor/issues/2776))
* Fix: Check publish capabilities in the page settings
* Fix: Fixed line break in webkit in cases when there are no active nodes.
* Fix: Import/export template in some server configurations.
= 1.8.5 - 2017-11-19 =
* Fix: Compatibility with the WordPress 4.9 native widgets ([#2763](https://github.com/pojome/elementor/issues/2763))
* Fix: Removed related videos from background video in some cases ([#2372](https://github.com/pojome/elementor/issues/2372))
* Fix: Element inside similar element conflict ([#2760](https://github.com/pojome/elementor/issues/2760))
* Fix: Responsive alignment in Icon List widget
= 1.8.4 - 2017-11-14 =
* Fix: Accordion open/close icon ([#2740](https://github.com/pojome/elementor/issues/2740))
* Fix: Color control does not allow more than 7 characters ([#2737](https://github.com/pojome/elementor/issues/2737))
* Fix: Button wrap on Safari browser
* Fix: Print duplicate styles when Print Method set to Internal Embedding
= 1.8.3 - 2017-11-11 =
* Fix: Added nonce to export template action ([Topic](https://wordpress.org/support/topic/importation-error-in-library-elementor-8-2/))
* Fix: Native WordPress widgets stopped working ([#2732](https://github.com/pojome/elementor/issues/2732))
= 1.8.2 - 2017-11-09 =
* Fix: Added nonce to export template action ([#2722](https://github.com/pojome/elementor/issues/2722))
* Fix: Changes nonce key for third party plugins
= 1.8.1 - 2017-11-09 =
* Fix: Bug loading Editor templates in some server configurations ([#2712](https://github.com/pojome/elementor/issues/2712))
* Fix: Added parameter to overwrite control recursively ([#2702](https://github.com/pojome/elementor/issues/2702))
* Fix: Patched nonce validation for all library actions
* Fix: Glitch with Tabs widget on touch screen
* Fix: Glitch with Button wrap on small screens
= 1.8.0 - 2017-11-07 =
* New: Inline Editing added to all text, textarea & TinyMCE controls ([#437](https://github.com/pojome/elementor/issues/437))
* New: Added auto complete for code editor (Custom CSS & HTML widget) ([#2416](https://github.com/pojome/elementor/issues/2416))
* New: Added more icons to Social Icons widget: Telegram & OK ([#2670](https://github.com/pojome/elementor/issues/2670))
* New: Set focus to search bar when you click on widget button in the panel ([#2333](https://github.com/pojome/elementor/issues/2333))
* Tweak: Added `soft wrap` for code editor
* Tweak: Better accessibility for Tabs, Toggle & Accordion widgets
* Tweak: Added option to disable the widget on-change rendering
* Tweak: Improved error dialogs for better handling cases when the editor fails to load.
* Tweak: Rename Global Colors & Fonts to Default Colors and Default Fonts for better clarify
* Tweak: Update Google Fonts list with more than 10 new fonts
* Tweak: Eicons v2.5.0 updated
* Tweak: Added an "Elementor" post state for post table
* Tweak: Added responsive control for Icon Box (Space & Size)
* Tweak: Added compatibility and support for WP Color in WordPress 4.9 ([#2550](https://github.com/pojome/elementor/issues/2550))
* Tweak: Better nonce handling/renewing to avoid timeouts
* Tweak: Added compatibility for the future release of Elementor
* Fix: Icon List widget alignment with RTL
* Fix: Render element on unknown control changed
* Fix: Conflict `elementor-clickable` element with editor lightbox
* Fix: Handle download media/gallery inside repeater control for export/import
= 1.7.12 - 2017-10-24 =
* Fix: Stay in the same tab settings after saving
* Fix: Refresh heartbeat token when nonce is expired
* Fix: Space for mobile in Image Box widget ([#2586](https://github.com/pojome/elementor/issues/2586))
* Fix: Added visual indication for disabled swiper nav arrow button
* Fix: Color picker alignment for extended panel ([#2548](https://github.com/pojome/elementor/issues/2548))
= 1.7.11 - 2017-10-04 =
* Fix: `options is undefined` error when using select2
= 1.7.10 - 2017-10-03 =
* Fix: Extend of Icon control for Social Icons widget
= 1.7.9 - 2017-10-03 =
* Fix: Bug loading editor in Windows server
= 1.7.8 - 2017-10-03 =
* Fix: Font and Icon controls that got effected by previous update
= 1.7.7 - 2017-10-03 =
* Tweak: If current value is not in the options show it as `Unknown value` for Select2 control
* Fix: Import all template types by WordPress Importer
* Fix: Pagination color default for carousels
* Fix: Bug loading editor in some server configurations
= 1.7.6 - 2017-09-26 =
* Tweak: Changed video lightbox width for tablet to 100%
* Tweak: Changed Vimeo placeholder for the Video widget
* Tweak: Added `vh` unit support for control base
* Fix: Prevent showing of placeholder image in video lightbox
* Fix: Show Swiper arrows navigation in the center
* Fix: Set a centered image preview for media control in the panel
* Fix: Removed `sourceMappingURL` reference to prevent an error with the Safari browser
= 1.7.5 - 2017-09-24 =
* Tweak: Clear CSS Meta after change print method
* Tweak: Set default style for UI controls in all sliders and carousels
* Fix: Added compatibility for WordPress 4.8.2 & 4.7.6
* Fix: Sync Library tool for manual updating
= 1.7.4 - 2017-09-18 =
* Tweak: Added compatibility for the future release of Elementor
* Fix: Space widgets applied on the last element ([#2331](https://github.com/pojome/elementor/issues/2331))
* Fix: Internal CSS for Template Library embed ([#2394](https://github.com/pojome/elementor/issues/2394))
= 1.7.3 - 2017-09-11 =
* Tweak: Added responsive size for icon list widget ([#2302](https://github.com/pojome/elementor/issues/2302))
* Tweak: Added keyboard control for lightbox slideshow ([#2270](https://github.com/pojome/elementor/issues/2270))
* Tweak: Updated E-Icons font v2.4.2
* Fix: Changed image carousel breakpoints ([#2341](https://github.com/pojome/elementor/issues/2341))
* Fix: Handles editor view for Divi theme ([#2342](https://github.com/pojome/elementor/issues/2342))
* Fix: Live editing to the page settings custom CSS ([#2363](https://github.com/pojome/elementor/issues/2363))
= 1.7.2 - 2017-09-05 =
* Tweak: Added compatibility for the future release of Elementor
* Tweak: Added API option for developers to insert controls between preexisting controls
* Tweak: Added compatibility with Yoast SEO plugin
* Fix: Added compatibility for Multisite installation with Domain Mapping ([#2280](https://github.com/pojome/elementor/issues/2280))
* Fix: Disappearing widgets when you undo remove section ([#2301](https://github.com/pojome/elementor/issues/2301))
= 1.7.1 - 2017-08-29 =
* Tweak: Removed some filters for better performance
* Fix: Allow import `.zip` mime type to the library for some browsers / servers
* Fix: Save checking for the history log
* Fix: Change default template in page settings
= 1.7.0 - 2017-08-28 =
* New: History actions in the editor ([#266](https://github.com/pojome/elementor/issues/266))
* New: Hotkey: Ctrl / Cmd + Z = Undo
* New: Hotkey: Ctrl / Cmd + Shift + Z = Redo
* New: Hotkey: Ctrl / Cmd + D = Duplicate
* New: Hotkey: Delete = Delete element
* New: Added more icons to Social Icons widget: Weibo & WeChat
* Tweak: Added color control for UI elements in the lightbox
* Tweak: Allow to exclude devices in responsive control
* Tweak: Added compatibility for Table of Contents Plus plugin ([#2248](https://github.com/pojome/elementor/issues/2248))
* Fix: Added compatibility for Multisite installation with Domain Mapping
* Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts
* Fix: Sometimes content in Repeater control disappears
* Fix: Conflict rollback to the last version when beta testing mode enabled
* Fix: Conflict with Polylang plugin ([#2124](https://github.com/pojome/elementor/issues/2124))
* Fix: Allow fullscreen in the editor preview for video player
= 1.6.5 - 2017-08-20 =
* Tweak: Added compatibility for the future release of Elementor Pro
* Fix: Set font size inherit for Heading widget ([#2098](https://github.com/pojome/elementor/issues/2098))
* Fix: Anchor links smooth scrolling not working when admin bar is disabled ([#2210](https://github.com/pojome/elementor/issues/2210))
= 1.6.4 - 2017-08-06 =
* Tweak: Allow to close lightbox when clicking outside of the element
* Fix: Added font family inherit for input placeholder
* Fix: Reload none-saved changes on editor reload
* Fix: Added compatibility for WPMU DEV's Domain Mapping plugin ([#2120](https://github.com/pojome/elementor/issues/2120))
= 1.6.3 - 2017-08-09 =
* Fix: Lightbox for Image Carousel ([#2135](https://github.com/pojome/elementor/issues/2135))
* Fix: Allow to dismiss message asking to share anonymous usage data ([#2136](https://github.com/pojome/elementor/issues/2136))
* Fix: Conflict with Advanced TinyMCE plugin ([Topic](https://wordpress.org/support/topic/tinymce-unbreakable-space-not-display/))
= 1.6.2 - 2017-08-03 =
* Fix: More compatibility for some server configuration ([#2119](https://github.com/pojome/elementor/issues/2119))
* Fix: Added lightbox control for image gallery widget ([#2121](https://github.com/pojome/elementor/issues/2121))
* Fix: Conflict with TablePress and other plugins that add buttons to TinyMCE ([Topic](https://wordpress.org/support/topic/cant-view-editor-in-1-6-after-update/))
= 1.6.1 - 2017-08-02 =
* Fix: Conflict with Contact Form module by Jetpack ([#2125](https://github.com/pojome/elementor/issues/2125))
* Fix: Conflict with Popup Maker plugin
* Fix: Updated previous stable version for rollback
* Fix: Checking if the content area not found before anything else
* Fix: Condition hidden for section control didn't work well
* Fix: Reset border for iFrame in video lightbox ([#2121](https://github.com/pojome/elementor/issues/2121))
= 1.6.0 - 2017-08-02 =
* [Read more in the release post](https://elementor.com/v160-image-lightbox/)
* New: Added native Lightbox for images and galleries ([#218](https://github.com/pojome/elementor/issues/218))
* New: Added Text Shadow control ([#1696](https://github.com/pojome/elementor/issues/1696)) ([Developer API](https://github.com/pojome/elementor/blob/master/docs/content/controls/_text-shadow.md))
* New: Added Text Shadow option for Heading widget ([#1940](https://github.com/pojome/elementor/issues/1940))
* New: Added bulk import / export for template library ([#1241](https://github.com/pojome/elementor/issues/1241))
* New: Added `elementor/widgets/wordpress/widget_args` filter to customize WP widget markup ([#2052](https://github.com/pojome/elementor/issues/2052))
* Tweak: The editor loading now in the wp-admin area instead of the front-end
* Tweak: Replaced editor icons from FontAwesome to Eicons for beautiful sharpness
* Tweak: Added library access to all users with `edit_pages` capability
* Tweak: Loading scripts from the preview for more accurate front-end simulation and fix some issues
* Tweak: Replaced textarea input with WYSIWYG control for Testimonial widget ([#1321](https://github.com/pojome/elementor/issues/1321))
* Tweak: Changed default play icon for Video widget
* Tweak: First step to move Autoloader classes method
* Tweak: Switcher control `label_on` and `label_off` is not required anymore ([Developer API](https://github.com/pojome/elementor/blob/master/docs/content/controls/_switcher.md))
* Tweak: Style settings now also in the editor (under > menu > general settings)
* Tweak: Changed the colors of editor loading screen to positive design
* Tweak: Added Mute option for YouTube in Video widget ([#1897](https://github.com/pojome/elementor/issues/1897))
* Twaek! - Added compatibility for Polylang plugin ([#1959](https://github.com/pojome/elementor/issues/1959))
* Fix: Unknown text input in Group Controls ([#1926](https://github.com/pojome/elementor/issues/1926))
* Fix: Show edit with Elementor button on admin bar in regular posts
* Fix: Inherit style for select field from field
* Fix: Conflict with ManageWP on Multisite ([#1600](https://github.com/pojome/elementor/issues/1600), [#1456](https://github.com/pojome/elementor/issues/1456))
* Deprecated: `elementor/controls/get_available_tabs_controls` filter, please use `\Elementor\Controls_Manager::add_tab( $tab_name, $tab_title )` instead of
= 1.5.5 - 2017-07-18 =
* Fix: Page Settings data gets corrupted on revision save ([#2031](https://github.com/pojome/elementor/issues/2031))
= 1.5.4 - 2017-07-17 =
* Tweak: Re-organized SCSS files for the editor panel
* Tweak: Added example how to remove some styles from front-end ([#1992](https://github.com/pojome/elementor/issues/1992))
* Tweak: Added `do_action( 'elementor/preview/enqueue_scripts' );` for loading scripts in the preview only
* Tweak: Added `panel/widgets/{WIDGET_TYPE}/controls/wp_widget/loaded` JS action to handle WP widget controls ([#1886](https://github.com/pojome/elementor/issues/1886))
* Tweak: Changed Image placeholder
* Tweak: Return `checkbox` control as deprecated in v1.5 ([#2003](https://github.com/pojome/elementor/issues/2003))
* Fix: Changed carousel breakpoints for better responsiveness (Based on [#1785](https://github.com/pojome/elementor/issues/2003))
* Fix: After v1.5 some default unit in mobile editing set as pixel instead of the original default
* Fix: Removed `wptexturize` from Elementor content to avoid some plugins wrong texturize
= 1.5.3 - 2017-07-09 =
* Tweak: Google Fonts list updated with 17 new fonts
* Tweak: Added responsive control for min-height in Column widget
* Tweak: Added default value for HTML Tags
* Tweak: Added editor compatibility for some themes
* Fix: Added `latin-ext` subset in Font control for Polish language
* Fix: Updated control condition on Skin
* Fix: Glitch CSS in video iFrame
* Fix: Hover effect opacity transition
* Fix: Column background overlay condition in front-end
* Fix: Shape divider width units for tablet and mobile ([#1817](https://github.com/pojome/elementor/issues/1817))
* Fix: Video Background position center of section ([#1925](https://github.com/pojome/elementor/issues/1925))