readme.txt 260 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477
  1. === Elementor Website Builder ===
  2. Contributors: elemntor
  3. 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
  4. Requires at least: 5.0
  5. Tested up to: 6.1
  6. Requires PHP: 7.0
  7. Stable tag: 3.9.2
  8. License: GPLv3
  9. License URI: https://www.gnu.org/licenses/gpl-3.0.html
  10. The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!
  11. == Description ==
  12. https://www.youtube.com/watch?v=lBu9TKg7dFM
  13. = THE #1 WEB CREATION PLATFORM, POWERING OVER 10M WEBSITES WORLDWIDE. =
  14. Elementor is the leading website building platform for WordPress, enabling web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join a vast community of web creators from all around the world who deliver exceptional websites using Elementor.
  15. [Check out Elementor Website Builder](https://go.elementor.com/wp-repo-description-tab-homepage-check-out-elementor-website-builder/).
  16. = ONE PLATFORM, UNLIMITED WEB CREATIONS =
  17. Whether you’re looking to achieve pixel-perfect designs, scale and accelerate your website creation process, or increase lead generation, Elementor has what you need to create any type of website.
  18. With an instant, live design and inline editing drag-and-drop Editor, you can create your website while seeing exactly how it would look. Elementor’s open-source solution comes with dozens of out-of-the-box widgets and features for you to use. Additionally, you can integrate with other marketing services or extend Elementor’s capabilities even more with the [Developers Docs](https://go.elementor.com/wp-repo-description-tab-developers-developers-docs/).
  19. To edit elements from your Theme, including its Header, Footer, Single Post, and Archive Page, check out our [Pro features](https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/).
  20. = PIXEL-PERFECT DESIGNS =
  21. With Elementor’s robust design features, you can create unique, show-stopping websites. Adjust every element's spacing, positioning, padding, and margins exactly as you want it, down to the very last pixel. Elevate your website’s design with over 40 widgets and features like Box Shadow, Background Overlays, Hover Effects, Headline Effects, Animations, Gradient Backgrounds, CSS Transform, Mask Options, Shape Dividers, Coming Soon Mode, and many more.
  22. To view a complete list of Elementor’s features, visit the [feature page](https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/).
  23. = FULL WEBSITE KITS AND TEMPLATE LIBRARY =
  24. Save valuable time, jumpstart your website creation process, or find inspiration with our designer-made website kits and templates. Apply a [Full Website Kit](https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/) to get a website in a snap, including the Homepage, Service Page, and more. Use the library to import Single Pages, Blocks, or Popup templates to your website. You can also create and export your own templates and import them to another website to create reusable website blueprints and accelerate your website creation process.
  25. = FULLY RESPONSIVE =
  26. Seamlessly adjust the content and presentation of your website to every device. With [Custom Breakpoints](https://go.elementor.com/wp-repo-description-tab-pro-features-custom-breakpoints/), you can deliver the most optimized experience for each visitor, whether they’re viewing your website on Desktop, Mobile, Tablet, Wide Screen, and more.
  27. = ACCELERATED CREATION WORKFLOW =
  28. Streamline your workflow and introduce efficient methodologies to accelerate your website creation process. Leverage global fonts and colors for consistency throughout your website. Drag media files directly from your desktop into the editor, mark widgets as favorites, create a blueprint of your website so you can reuse it, and more.
  29. Take your professional workflow to the next level with [Dynamic Content](https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/).
  30. = FAST LOADING WEBSITES =
  31. Enjoy fast-loading websites that rank well on Google search. Enhance your website performance using built-in features, and benefit from Elementor's ongoing performance improvements, such as reduced CSS and JS files, lazy loading, and more. To learn more, check out our [performance page](https://go.elementor.com/wp-repo-description-tab-performance-performance-page/).
  32. = PROMOTING ACCESSIBILITY =
  33. Elementor is built with Accessibility in mind and offers tools and enhancements to help you provide a better experience for all users. These include HTML 5 semantic, full keyboard navigation menu, ongoing accessibility improvement of features, widget, and more
  34. = SUPPORTED BY A STRONG COMMUNITY =
  35. Join a thriving global community that helps each other achieve their goals. Get answers to your questions, solve problems with other members, share knowledge, and so much more. Join the community discussions, meetups, enjoy hundreds of YouTube videos, articles, and tutorials made by members worldwide.
  36. - [Facebook Community](https://go.elementor.com/wp-repo-description-tab-facebook-group/) - with over 120K members, who are constantly offering support, advice, feedback, and tutorials about new features and how to achieve complex website scenarios.
  37. - [Dozens of Elementor](https://go.elementor.com/wp-repo-description-tab-addons-dozens-of-elementor-addons/) Addons - a multitude of addons that extends Elementor’s solution with over 900 addons, so you can achieve nearly every capability you can think of, no matter how niche it is.
  38. - [Experts Community](https://go.elementor.com/wp-repo-description-tab-experts-experts-community/) - the Elementor experts market is the place for you to find and hire an Expert, or become an Expert and offer your services to clients.
  39. - [Community Hub](https://go.elementor.com/wp-repo-description-tab-community-hub-community-hub/) - connect with other community members, get informed about new releases and updates in the developer's edition.
  40. - [Github Community](https://go.elementor.com/wp-repo-description-tab-github-repo/) - get information about all the latest releases, request features, or report a bug.
  41. = OVER 40+ FREE WIDGETS AND COUNTING =
  42. Elementor includes a variety of 40+ free widgets for you to build professional and engaging websites:
  43. - **Heading**. Add eye-catching headlines.
  44. - **Image**. Control the size, opacity and other settings of images.
  45. - **Text Editor**. A WYSIWYG text editor, just like the WordPress editor.
  46. - **Video**. Add YouTube, Vimeo, Dailymotion or self-hosted videos to your page.
  47. - **Button**. Controlling every aspect of the button design.
  48. - **Image Box**. A box that includes image, headline and text.
  49. - **Testimonials**. Customer testimonials that show social proof.
  50. - **Icon**. Place one or more of 600+ icons available.
  51. - **Icon Box**. Include an icon, headline, and text with one widget.
  52. - **Social Icons**. Link to your social pages with the relevant icon like Facebook/Twitter.
  53. - **Image Gallery**. Displays your images in an aligned grid.
  54. - **Image Carousel**. Create a rotating carousel or slider for chosen images.
  55. - **Icon List**. Use any icon to create a bullet list.
  56. - **Counter**. Show stats and numbers in an escalating manner.
  57. - **Progress Bar**. Include an escalating progress bar.
  58. - **Tabs**. Display different pieces of content in vertical or horizontal tabs.
  59. - **Accordion**. Display content in multiple collapsable sections.
  60. - **Toggle**. Use the Toggle to hide or display content, like FAQ.
  61. - **Star Rating**. Allow your visitors to rate you on your website.
  62. - **Alert**. Include a colored alert box to draw visitor’s attention.
  63. - **HTML**. Insert code into the page.
  64. - **Shortcode**. Easily insert shortcodes from any plugin into the page.
  65. - **Menu Anchor**. Link any menu to this anchor.
  66. - **Read More**. Set the `Read More` cut-off for the excerpt in archive pages.
  67. - **Sidebar**. Add any sidebar into the page.
  68. - **Google Maps**. Embed maps into the page.
  69. - **SoundCloud**. Add audio bits from SoundCloud.
  70. - **Divider**. Separate content with a designed divider.
  71. - **Spacer**. Add space between elements.
  72. - **Columns**. Create inner columns within the column.
  73. - **Text Path**. Attach your text to a path..
  74. - **And counting...**
  75. = Developer API =
  76. As an open-source platform, developers can extend Elementor’s capabilities and explore various resources to get started. This includes a [developer's website](https://go.elementor.com/wp-repo-description-tab-developers-developers-website/), [Developers Docs](https://go.elementor.com/wp-repo-description-tab-developers-developers-docs-2/), [Developers Blog](https://go.elementor.com/wp-repo-description-tab-developers-developers-blog/), [GitHub](https://go.elementor.com/wp-repo-description-tab-github-repo/), [Add-on Developers Newsletter](https://go.elementor.com/wp-repo-description-tab-newsletter-addon-newsletter/), the [Community Hub’s development room](https://go.elementor.com/wp-repo-description-tab-community-hub-community-hubs-development-room/), and more.
  77. = TRANSLATED TO 59+ LANGUAGES, INCLUDES RTL SUPPORT =
  78. Elementor supports multiple languages and typographies and is RTL compatible, so you get an Editor and Panel that supports [over 59 languages](https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/) out of the box. Elementor is also compatible with WPML, Polylang, TranslatePress, Weglot, and more.
  79. If you would like to contribute, you can add a new language via translate.wordpress.org. We’ve built a short guide explaining [how to translate and localize the plugin](https://go.elementor.com/wp-repo-description-tab-help-center-translate/).
  80. = TAKE IT TO THE NEXT LEVEL WITH ELEMENTOR PRO =
  81. Create immersive web experiences while saving time and resources, keeping costs manageable with [Elementor Pro](https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/). Get access to +90 professional widgets, features, and tools to create comprehensive website experiences.
  82. Elementor Pro’s features include:
  83. - [Exclusive Pro Kits and Templates](https://go.elementor.com/wp-repo-description-tab-library-exclusive-pro-kits-and-templates/)
  84. - [Advanced Motion Effects](https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/)
  85. - [Industry-leading Theme Builder](https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/)
  86. - [WooCommerce Builder](https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/)
  87. - [Professional Form Builder and Submission Log](https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/)
  88. - [Popup Builder](https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/)
  89. - [Dynamic Content](https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content-2/)
  90. - Marketing automation and CRM integrations
  91. - Scroll Snap
  92. - Custom fonts & icons
  93. - Role manager
  94. - Blog post layout widget
  95. - Image & video sliders
  96. - Global widgets
  97. - Custom CSS
  98. - Custom Code
  99. - 90+ Professional widgets
  100. - And many more.
  101. Join the elite web creators who enjoy [Elementor Pro](https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro-2/)!
  102. = SECURITY AND COMPLIANCE =
  103. Elementor is ISO 27001 certified and has a dedicated team of security professionals that implements industry best practices for maximum security and compliance 24/7.
  104. There is also a managed security [Bug Bounty program](https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/), utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.
  105. = ELEMENTOR RESOURCES AND SUPPORT =
  106. - To learn how to get started with Elementor, or view tutorials about new features, go to the [Elementor Academy](https://go.elementor.com/wp-repo-description-tab-academy-elementor-academy/) or the [Help Center](https://go.elementor.com/wp-repo-description-tab-help-center-help-center/).
  107. - If you have any more questions or need support, visit the support on the [Plugin’s forum](https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-forum/). Elementor Pro users can also reach out to a dedicated support channel for premium 24/7 support.
  108. - For more information about Elementor and Elementor Pro features, visit [Elementor Website Builder](https://go.elementor.com/wp-repo-description-tab-homepage-elementor-website-builder/).
  109. = Liked Elementor? =
  110. - Join our [Facebook Group](https://go.elementor.com/wp-repo-description-tab-facebook-group/).
  111. - Learn from our tutorials on [YouTube Channel](https://go.elementor.com/wp-repo-description-tab-youtube-channel/).
  112. - Or rate us on [WordPress](https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-review/) :)
  113. == Installation ==
  114. = Minimum Requirements =
  115. * WordPress 5.0 or greater
  116. * PHP version 7.0 or greater
  117. * MySQL version 5.0 or greater
  118. = We recommend your host supports: =
  119. * PHP version 7.0 or greater
  120. * MySQL version 5.6 or greater
  121. * WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)
  122. https://www.youtube.com/watch?v=Ypn6fltn_7s
  123. = Installation =
  124. 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.
  125. 2. Activate the plugin through the 'Plugins' menu in WordPress.
  126. 3. Go to Pages > Add New
  127. 4. Press the 'Edit with Elementor' button.
  128. 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.
  129. For documentation and tutorials visit our [Knowledge Base](https://elementor.com/help/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme).
  130. == Frequently Asked Questions ==
  131. **How do I install Elementor?**
  132. To install the free version of Elementor, follow the steps below:
  133. From your WordPress dashboard -> Go to Plugins -> Click on 'Add new'-> In the Search field, enter Elementor and choose Elementor website builder.
  134. Press install -> After installation, click Activate.
  135. **Does Elementor work with all the themes?**
  136. Elementor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor's [Hello Theme](https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/), a lightweight blank canvas, to enjoy full flexibility when using Elementor, and optimize your experience.
  137. **Is Elementor compatible with Gutenberg?**
  138. Elementor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.
  139. **Can I create an online store?**
  140. Yes, with the Elementor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.
  141. **Does it work with other WordPress plugins? **
  142. It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor.
  143. **Do I need to know how to code?**
  144. No! Elementor provides you with all the widgets and features that you need to build a proffesional website without using code.
  145. **Do i need to know how to design?**
  146. No, you can choose between professionaly designed kits and templates that fit toevery industry and have all you need to create your own profesional website.
  147. **Will elementor slow down my website?**
  148. As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of Elementor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.
  149. **Is my site secure with Elementor?**
  150. The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.
  151. There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.
  152. **Can I buy templates separately?**
  153. Of course, you can use any template that supports Elementor.
  154. **Is Elementor compatible with Post and Custom Post Types?**
  155. Of course! You can set which post types will enable Elementor in the settings page.
  156. **What is the difference between Elementor's free Plugin and Elementor Pro**
  157. Elementor’s Free version allows you to explore our revolutionary drag & drop live editor, basic widgets and templates. Elementor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.
  158. **How can I become a Contributor**
  159. If you want to contribute, go to our [Elementor GitHub Repository](https://github.com/elementor/elementor) and see where you can help.
  160. You can also add a new language via [translate.wordpress.org](https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/). We’ve built a short guide explaining [how to translate and localize the plugin](https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/).
  161. == Screenshots ==
  162. 1. **Visual Drag and Drop Editor** Our instant drag and drop lets you easily place every element anywhere on the page and create pixel perfect designs.
  163. 2. **Full Design System** Speed up your workflow and ensure consistency across your site with settings you define once, use globally, and change anytime - no coding required.
  164. 3. **Motion Effects** Add transitions and animations to your website elements/designs to create a unique user experience.
  165. 4. **Kit Library** Choose from a variety of designer-made website kits created to fit any industry. Add content, customize it, and make it your own.
  166. 5. **Templates Library** Save your pages or sections as templates, so you can easily reuse them again or choose one of our beautiful pre-designed templates.
  167. 6. **Responsive Design** Fully edit your websites and customize the behavior on desktop, tablet & mobile to maximize the experience by switching between devices and breaking points.
  168. == Changelog ==
  169. See Elementor Developer Edition versions changelog [here](https://go.elementor.com/dev-changelog/)
  170. = 3.9.2 - 2022-12-21 =
  171. * Fix: Images not loading in Template widget inside the Editor when using Lazy Load Background Images experiment ([#20635](https://github.com/elementor/elementor/issues/20635))
  172. * Fix: Wrong share URL for XING network ([#13112](https://github.com/elementor/elementor/issues/13112))
  173. * Fix: Browser ignores space in mail share URL ([#10803](https://github.com/elementor/elementor/issues/10803))
  174. * Fix: Responsive values are not saving as part of Save as Default functionality
  175. = 3.9.1 - 2022-12-14 =
  176. * Fix: Copy-Paste Style prevents saving the page when Repeater controls exist in "non-content" tabs ([#19895](https://github.com/elementor/elementor/issues/19895), [#20637](https://github.com/elementor/elementor/issues/20637))
  177. * Fix: Font looks blurry in the Admin Top Bar (props [@CodeExplore](https://github.com/CodeExplore))
  178. * Fix: The not active tab in the media modal is missing
  179. * Fix: Background Overlay is not uploading in Container when using the Lazy Load experiment
  180. = 3.9.0 - 2022-12-06 =
  181. * New: Introducing Save as Default as a Beta experiment - Create your default settings for every element for better consistency
  182. * New: Introducing Background images Lazy Load as an Alpha experiment
  183. * Tweak: Separate "Default" and "None" values in Border Type control ([#11565](https://github.com/elementor/elementor/issues/11565), [#13328](https://github.com/elementor/elementor/issues/13328), [#11723](https://github.com/elementor/elementor/issues/11723))
  184. * Tweak: Added `dnt` param to Vimeo embed background and Video widget ([#13797](https://github.com/elementor/elementor/issues/13797), [#13631](https://github.com/elementor/elementor/issues/13631))
  185. * Tweak: Added Transform section to Advanced tab in Flexbox Container ([#18648](https://github.com/elementor/elementor/issues/18648), [#18268](https://github.com/elementor/elementor/issues/18268))
  186. * Tweak: Added responsive control for Border Radius in Button widget ([#18914](https://github.com/elementor/elementor/issues/18914))
  187. * Tweak: Added responsive control to opacity of background overlay image in Sections and Containers ([#19659](https://github.com/elementor/elementor/issues/19659))
  188. * Tweak: Removed extra SQL queries on every page for better performance ([#12162](https://github.com/elementor/elementor/issues/12162))
  189. * Tweak: Added background color option to the video background control ([#4353](https://github.com/elementor/elementor/issues/4353))
  190. * Tweak: Added responsive control for caption to Image, Image Gallery and Image Carousel widgets (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  191. * Tweak: Added responsive control to icon border radius in Icon and Social Icons widgets (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  192. * Tweak: Added `em` unit to Word Spacing control in Text Path widget (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  193. * Tweak: Added responsive control to image border radius in Image Carousel, Basic Gallery and Testimonial widgets (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  194. * Tweak: Make Elementor compatible with WebP uploads via Performance Lab plugin
  195. * Tweak: Added `em` units to border radius control in various elements
  196. * Tweak: Upgraded the `autoprefixer` package to better minify CSS files
  197. * Tweak: Added more units options to Border Width control in various elements
  198. * Tweak: Adjusted Dark Mode in Navigator when using Container
  199. * Tweak: Added `rel=preconnect` tag to Google Fonts to improve performance
  200. * Tweak: Added escape translation strings for safe use in HTML output
  201. * Tweak: Removed redundant labels from group controls
  202. * Tweak: Added new margin controls to Post and Page Settings
  203. * Tweak: Allow saving and reloading a page while in-place editing of documents
  204. * Tweak: Added compatibility for Yoast Duplicate Post plugin
  205. * Tweak: Added new hook action when element handler ready
  206. * Fix: Predefined container structure with default padding is not working ([#19990](https://github.com/elementor/elementor/issues/19990))
  207. * Fix: Repeater controls in `non-content` tabs cause JS errors when running Copy-Paste Style ([#19895](https://github.com/elementor/elementor/issues/19895))
  208. * Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container
  209. * Fix: Align items controls are not working as expected in container when using Spacer widget with custom width
  210. * Fix: Pasting an element into the Preview Container throws a JS error in console
  211. * Fix: Can't drag widgets into a Column after it's being emptied
  212. * Fix: First container handle is not centered on an RTL language
  213. = 3.8.1 - 2022-11-13 =
  214. * Fix: PHP error notice appears while saving in Site Settings when using PHP8.0+ ([#20062](https://github.com/elementor/elementor/issues/20062), props [@gerasimovdaniel](https://github.com/gerasimovdaniel))
  215. = 3.8.0 - 2022-10-30 =
  216. * New: Revert your Website to its Previous Condition - Allow removing the last imported Kit
  217. * New: The container experiment is now officially set as beta
  218. * Tweak: Increase inputs in Replace URL tool to support long URLs ([#19559](https://github.com/elementor/elementor/issues/19559))
  219. * Tweak: Added Dynamic Tags for Global Colors ([#15135](https://github.com/elementor/elementor/issues/15135))
  220. * Tweak: Improved performance of Inline Fonts Icons experiment ([#19447](https://github.com/elementor/elementor/issues/19447))
  221. * Tweak: Improved browser responsiveness during Elementor's initialization process ([#15228](https://github.com/elementor/elementor/issues/15228), props [@FlyingDR](https://github.com/FlyingDR))
  222. * Tweak: Added Responsive control to Text Align in Columns and Sections ([#13199](https://github.com/elementor/elementor/issues/13199), props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  223. * Tweak: Added size units to Letter Spacing in Typography modal ([#19726](https://github.com/elementor/elementor/issues/19726))
  224. * Tweak: Added more size units to Size and Spacing controls Icon and Icon box widgets ([#19496](https://github.com/elementor/elementor/issues/19496))
  225. * Tweak: Added labels to font weight numeric values ([#18761](https://github.com/elementor/elementor/issues/18761))
  226. * Tweak: Added `rem` unit to gap between elements control in Container widget ([#18261](https://github.com/elementor/elementor/issues/18261))
  227. * Tweak: Added clarification for the `a` tag to the container element (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  228. * Tweak: Added text stroke to number in Counter widget (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  229. * Tweak: Added text stroke to title in Counter widget (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  230. * Tweak: Added text stroke to text in Divider widget (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  231. * Tweak: Added `em` unit for border radius to layout elements (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  232. * Tweak: Added text stroke to title in Image Box widget (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  233. * Tweak: Added more size units to Spacing and Image Size in Testimonial and Image Box widgets (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  234. * Tweak: Replaced `e-container` class name to `e-con` in Container
  235. * Tweak: Replaced `e-container--width-boxed` class name to `e-con-boxed` in Container
  236. * Tweak: Replaced `e-container--width-full` class name to `e-con-full` in Container
  237. * Tweak: Replaced `e-container__inner` class name to `e-con-inner` in Container
  238. * Tweak: Custom links in menu items should be relative to the site address when importing a Kit
  239. * Tweak: Import/Export CLI and UI mechanisms were merged into a unified service
  240. * Tweak: Improved the UX of dependencies between experiments
  241. * Tweak: Changed Full-width and Boxed content width functionality in Container
  242. * Tweak: Changed default Google fonts loading method to "Swap" on new sites
  243. * Tweak: Changed default direction for Featured sorting to ASC in Kit Library
  244. * Tweak: Added migrate script to handle retro PHP8 type error on image custom size
  245. * Tweak: Re-organized SCSS files for the Container
  246. * Tweak: Changed default Content Width when adding a new Container from right click context-menu
  247. * Fix: `isolation: isolate` property causing z-index issues in various scenarios when using Container ([#19834](https://github.com/elementor/elementor/issues/19834), [#19845](https://github.com/elementor/elementor/issues/19845), [#19705](https://github.com/elementor/elementor/issues/19705), [#20011](https://github.com/elementor/elementor/issues/20011))
  248. * Fix: Responsive controls with responsive conditions whose values are arrays (Base Multiple) did not apply in the frontend for non-desktop devices ([#19924](https://github.com/elementor/elementor/issues/19924), [#19917](https://github.com/elementor/elementor/issues/19917), [#19922](https://github.com/elementor/elementor/issues/19922), [#19894](https://github.com/elementor/elementor/issues/19894), [#19930](https://github.com/elementor/elementor/issues/19930), [#20001](https://github.com/elementor/elementor/issues/20001))
  249. * Fix: Importer WordPress root write permissions check causes import failures ([#17255](https://github.com/elementor/elementor/issues/17255))
  250. * Fix: Removed unnecessary default `max-width` and `flex-grow` settings in various widgets when using Container ([#19891](https://github.com/elementor/elementor/issues/19891))
  251. * Fix: Transitions functionality is not working as expected in Container ([#19913](https://github.com/elementor/elementor/issues/19913))
  252. * Fix: Progress Bar layout is not presented as expected when direction is set to row in Container
  253. * Fix: Insert library button is clickable while inserting a template
  254. * Fix: Go pro link UI glitch in export kit tool
  255. * Fix: Export kit doesn't work in a Multisite Network
  256. * Fix: WooCommerce products and categories are not imported as expected when assigned to a menu
  257. * Fix: CSS minified files not generated on build
  258. * Fix: Editor controls color issues in dark mode scheme
  259. = 3.7.8 - 2022-10-02 =
  260. * Fix: Using responsive control values in selectors and selector values causes a fatal error ([#19894](https://github.com/elementor/elementor/issues/19894))
  261. * Fix: Error message appears after connecting account and refreshing in a promotion screen
  262. * Fix: UI glitch when searching for non-existing terms in Template Library
  263. = 3.7.7 - 2022-09-20 =
  264. * Tweak: Removed the option to create a custom logo in Site Settings ([#19823](https://github.com/elementor/elementor/issues/19823))
  265. * Fix: Custom X Position of background image doesn't work for non-desktop devices ([#19487](https://github.com/elementor/elementor/issues/19487), [#19662](https://github.com/elementor/elementor/issues/19662), [#19669](https://github.com/elementor/elementor/issues/19669), [#19527](https://github.com/elementor/elementor/issues/19527))
  266. * Fix: Connect & activate to Elementor account issue with various WordPress site languages
  267. = 3.7.6 - 2022-09-15 =
  268. * Fix: Replaced link for better clarity in Site Settings
  269. = 3.7.5 - 2022-09-14 =
  270. * Tweak: Added an option to create a custom logo with AI Logo Maker by Fiverr in Site Settings
  271. * Fix: Background Image Custom Position and Size controls are not visible for Mobile and Tablet devices ([#19487](https://github.com/elementor/elementor/issues/19487), [#19669](https://github.com/elementor/elementor/issues/19669), [#19662](https://github.com/elementor/elementor/issues/19662))
  272. * Fix: Custom Width on Tablet and Mobile devices generates wrong values when Desktop is set to default ([#19487](https://github.com/elementor/elementor/issues/19487), [#19669](https://github.com/elementor/elementor/issues/19669), [#19662](https://github.com/elementor/elementor/issues/19662), [#19528](https://github.com/elementor/elementor/issues/19528), [#19542](https://github.com/elementor/elementor/issues/19542))
  273. * Fix: Empty state placeholder is not displayed in various widgets ([#19446](https://github.com/elementor/elementor/issues/19446))
  274. * Fix: When pasting a widget on a page the widget is being pasted into a Section when the Container experiment is active ([#19452](https://github.com/elementor/elementor/issues/19452))
  275. * Fix: Custom Image Size generates a fatal error after updating to PHP 8+
  276. * Fix: `is_current_user_can_edit` not working correctly when `$post_id` missing
  277. = 3.7.4 - 2022-08-31 =
  278. * Tweak: Removed redundant code in various widgets that includes images ([#12268](https://github.com/elementor/elementor/issues/12268), props [@ibndawood](https://github.com/ibndawood))
  279. * Fix: Error message appears on front if WooCommerce is activated ([#19553](https://github.com/elementor/elementor/issues/19553))
  280. * Fix: Web CLI requires jQuery to avoid errors when jQuery is loaded in the footer (props [@nicomollet](https://github.com/nicomollet))
  281. = 3.7.3 - 2022-08-29 =
  282. * Fix: Errors in deprecation module prevent Elementor editor to load ([#19390](https://github.com/elementor/elementor/issues/19390), [#19562](https://github.com/elementor/elementor/issues/19562))
  283. * Fix: `add_link_attributes` function does not overwrite all in foreach loop item link attributes ([#11498](https://github.com/elementor/elementor/issues/11498), props [@sol1](https://github.com/afoster))
  284. * Tweak: Removed the clickable logo link in Theme Builder
  285. = 3.7.2 - 2022-08-21 =
  286. * Fix: Motion Effects applied to a Column in any global Theme Builder template prevent Elementor editor to load ([#19390](https://github.com/elementor/elementor/issues/19390))
  287. * Fix: Experiments - Learn more button does not open the Help center in the notice ([#19448](https://github.com/elementor/elementor/issues/19448))
  288. * Fix: Widget width is not working as expected on frontend in Container element ([#19398](https://github.com/elementor/elementor/issues/19398))
  289. * Fix: Horizontal scrolling appears in the edit area when viewing it with different devices ([#19049](https://github.com/elementor/elementor/issues/19049))
  290. * Fix: Default Flex Grow affects the layout when the Container element is set to direction Colum in Divider widget ([#19325](https://github.com/elementor/elementor/issues/19325))
  291. * Fix: Background Fallback image is hiding the background video in Container element ([#19413](https://github.com/elementor/elementor/issues/19413))
  292. * Fix: Previously edited with Elementor posts were imported with irrelevant content in Export/Import tool
  293. * Fix: Width and Elements gap values are not working as expected in various responsive devices in Container widget
  294. = 3.7.1 - 2022-08-14 =
  295. * Fix: Controls do not implement a value of 0 ([#19410](https://github.com/elementor/elementor/issues/19410), [#19391](https://github.com/elementor/elementor/issues/19391), [#19393](https://github.com/elementor/elementor/issues/19393), [#19386](https://github.com/elementor/elementor/issues/19386))
  296. * Fix: Dynamic fields are missing in any number input field ([#19419](https://github.com/elementor/elementor/issues/19419))
  297. * Fix: Close window button isn't working in Theme Builder
  298. * Fix: Breakpoints manager shouldn't run deprecated hook
  299. = 3.7.0 - 2022-08-08 =
  300. * New: Use the user language in the Elementor Editor regardless of the Site's language ([#5148](https://github.com/elementor/elementor/issues/5148))
  301. * New: "Exit To…" location setting when exiting the Editor
  302. * Tweak: Added filters to allow modifying upload temp paths in Uploads Manager ([#18565](https://github.com/elementor/elementor/issues/18565), props [@patrick-leb](https://github.com/patrick-leb))
  303. * Tweak: Added `EM` unit for border-radius controls in some widgets (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  304. * Tweak: Added `EM` unit to Border radius controls in general widget settings and global styles (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  305. * Tweak: Added thousand separators to Counter widget (props [@rb-ar](https://github.com/rb-ar))
  306. * Tweak: Allow manual insertion of negative values to numeric inputs for better UX
  307. * Tweak: Added the option for number scrubbing in numeric controls for better UX
  308. * Tweak: Custom size control rejects non-numeric characters in Image widget
  309. * Tweak: Added custom icons selection to Alert widget
  310. * Tweak: Added custom icons selection to Video widget
  311. * Tweak: Added custom icons selection to Image Carousel widget
  312. * Tweak: Rearrange the Container panel for better controls discoverability and usability
  313. * Tweak: Updated HTML wrapper `a` tag note in Container element
  314. * Tweak: Added "Add New Container" right-click option to Container element
  315. * Tweak: Added new Layout section to elements panel
  316. * Tweak: Updated content and labels on Container element for better usability
  317. * Tweak: Implemented Nested Elements capability infrastructure
  318. * Tweak: Added the Revisions link to Import/Export intro screen
  319. * Tweak: Open the admin dashboard "Go Pro" link in a new tab
  320. * Tweak: Open the Theme Builder "Go Pro" link in new tab
  321. * Tweak: Added `$info-wc-primary-text` CSS variable for better compatibility
  322. * Tweak: Merged similar translation strings for better i18n
  323. * Tweak: Increase server memory in order to prevent stuck spinner on Editor load
  324. * Tweak: Added `EM` unit to Elements Gap in Container widget
  325. * Tweak: Added default padding values to Container Element
  326. * Tweak: Added site-wide containers padding option to Site Settings
  327. * Tweak: Kit Types filtering was removed from Kits Library sidebar
  328. * Tweak: Modified some Experiments descriptive texts
  329. * Tweak: Promoted "Improved CSS Loading" experiment to RC status
  330. * Tweak: Promoted "Improved Asset Loading" experiment to Stable status
  331. * Tweak: Promoted "Additional Custom Breakpoints" experiment to Stable status
  332. * Tweak: Added promotion for performance experiments
  333. * Tweak: Added an outline instead of underline to Tabs widget for better accessibility
  334. * Tweak: PHP 5.6 is deprecated
  335. * Tweak: Added a hook to get manifest data in the import CLI command
  336. * Fix: Responsive conditional controls depends on Desktop value only ([#16290](https://github.com/elementor/elementor/issues/16290), [#18054](https://github.com/elementor/elementor/issues/18054), [#11618](https://github.com/elementor/elementor/issues/11618))
  337. * Fix: Gradient control doesn't work on frontend when using Global colors ([#13288](https://github.com/elementor/elementor/issues/13288))
  338. * Fix: Direction control stays unselected when choosing Column based structure from the pre-designed container structures ([#18390](https://github.com/elementor/elementor/issues/18390))
  339. * Fix: Columns control stays unselected when choosing a column structure from the pre-designed container structures ([#18390](https://github.com/elementor/elementor/issues/18390))
  340. * Fix: Overlay background is not visible when using a background video or Slideshow in Container ([#18433](https://github.com/elementor/elementor/issues/18433), [#18391](https://github.com/elementor/elementor/issues/18391))
  341. * Fix: Horizontal scroll appears when using direction Column in Container element ([#18662](https://github.com/elementor/elementor/issues/18662))
  342. * Fix: Advanced padding doesn't work as expected in Container element ([#18314](https://github.com/elementor/elementor/issues/18314), [#18414](https://github.com/elementor/elementor/issues/18414))
  343. * Fix: Responsive state doesn't work correctly in Container ([#18551](https://github.com/elementor/elementor/issues/18551))
  344. * Fix: Widgets disappear when the direction is set to a column in Container ([#18880](https://github.com/elementor/elementor/issues/18880))
  345. * Fix: Only the first 100 sites are processed by default usage of `get_sites()` (props [@vdwijngaert](https://github.com/vdwijngaert), [#18639](https://github.com/elementor/elementor/issues/18639))
  346. * Fix: Typo in the onboarding flow ([#19104](https://github.com/elementor/elementor/issues/19104))
  347. * Fix: Missing escaping translation to Onboarding module (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  348. * Fix: Missing escaping for translation strings in some group controls (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  349. * Fix: Editor freezes when changing control value in edge cases in Container element
  350. * Fix: Element placed at end instead of original position when dragged into a Container
  351. * Fix: `max-width` is causing grow and shrink properties issues in Container element
  352. * Fix: Structure presets are in the wrong direction on RTL websites in Container element
  353. * Fix: Spacer widget is not working as expected when placed inside a Container element
  354. * Fix: Divider widget is not working as expected when placed inside a Container element
  355. * Fix: User can drag a parent container into its child container in Container element
  356. * Fix: Widgets overlapping on mobile devices when using Container element
  357. * Fix: Widget width is not working as expected In Container
  358. * Fix: Container outputs redundant CSS lines
  359. * Fix: Notice Bar can't be closed in the editor
  360. * Fix: Overlay of populated image control appears in dark mode when the Editor is set to light mode
  361. * Fix: Pasting a term in the widget search bar doesn't show the results
  362. * Fix: Custom icons disappear on frontend if the pack name contains numbers
  363. * Fix: Custom fonts disappear if the name contains numbers only
  364. * Fix: Select2 controls gets a value of `null` when cleared in single value mode
  365. * Fix: PHP Error is being thrown when fetching System Info for Experiments that don't have a title
  366. * Fix: PHP warnings are thrown in System info when using PHP 8.1
  367. * Fix: Word spacing in Global Font Typography affects all texts on the site
  368. * Fix: Gradient background doesn't work in the Editor using global colors in Site Settings
  369. * Fix: Thumbnail files are not deleted when deleting the main image/attachment
  370. * Fix: Go pro link is too wide in Export kit tool
  371. * Fix: Import Kit wizard doesn't close the app when triggered from the Kit Library
  372. * Fix: Shortcode doesn't work in popups or templates
  373. * Fix: Style is broken after changing site URL when using "Improved CSS Loading" experiment
  374. * Fix: Missing translations in responsive controls
  375. * Fix: Added missing documentation for deprecated `Control_Icon` class
  376. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-7-planned-deprecations/)
  377. = 3.6.8 - 2022-07-27 =
  378. * Fix: Align-self set to stretch is not working as expected in Container ([#17052](https://github.com/elementor/elementor/issues/17052))
  379. * Fix: Bad request error is being thrown when trying to import a template
  380. * Fix: License status is not being updated immediately after license renewal
  381. = 3.6.7 - 2022-07-03 =
  382. * Tweak: Optimized file handling for better security policies
  383. * Fix: Modified controls sanitization to enforce better security policies in Text Editor widget
  384. * Fix: Modified controls sanitization to enforce better security policies in Anchor widget
  385. = 3.6.6 - 2022-06-08 =
  386. * Tweak: Added "Skip & Deactivate" button in plugin deactivation survey
  387. * Tweak: Removed data sharing checkbox in onboarding flow
  388. * Tweak: Added a promotion to Notes feature in the Editor panel
  389. * Fix: Critical error appeared in external apps when no page is selected as homepage in WordPress Reading Settings
  390. * Fix: Font Awesome 5 migration process is not optimal in Elementor tools screen
  391. = 3.6.5 - 2022-04-27 =
  392. * Fix: PHP Error is thrown in System Info report for experiments that don't have a title
  393. * Fix: Optimized template file uploads for better security enforcement
  394. = 3.6.4 - 2022-04-13 =
  395. * Fix: Optimized controls sanitization to enforce better security policies in Onboarding wizard
  396. = 3.6.3 - 2022-04-12 =
  397. * Tweak: Verify if SVG file exists before updating `_elementor_inline_svg` (props [@filipecsweb](https://github.com/filipecsweb), [#18155](https://github.com/elementor/elementor/issues/18155))
  398. * Tweak: Added "Uploading" screen to the Pro upload process in Onboarding wizard
  399. * Tweak: Added a notice for when Elementor Pro is installed successfully in Onboarding wizard
  400. * Fix: JS error is thrown after installing Elementor Pro in the Onboarding wizard
  401. * Fix: Wrong return type in `Skin Base get_instance_value()` method's PHPDoc
  402. * Fix: "Create my account" should lead to "Sign Up" instead of "Login" in Onboarding wizard
  403. * Fix: Allow file uploads based on the user capability to enforce better security policies in Onboarding wizard
  404. = 3.6.2 - 2022-04-04 =
  405. * Tweak: Added plugins support to the CLI Kit import process
  406. * Tweak: Updated strings for several screens in Onboarding wizard
  407. * Tweak: Added structure preset to include both row and column directions in Container element
  408. * Fix: Alignment control doesn’t affect additional custom breakpoints in Icon List widget ([#16291](https://github.com/elementor/elementor/issues/16291))
  409. * Fix: Carousel widgets do not being displayed correctly when placed in a Container element ([#18298](https://github.com/elementor/elementor/issues/16291))
  410. * Fix: Import flow fails when trying to import unregistered taxonomies
  411. * Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices
  412. * Fix: Inner Container element gets duplicated when dragging it from the handle
  413. * Fix: Trying to D&D widgets into a Container will make the dragged element position in an incorrect location when using column direction
  414. * Fix: When copying and pasting a Container, it's being pasted in a Section
  415. * Fix: When converting a section with `z-index` the value is active but can't be edited using the interface
  416. = 3.6.1 - 2022-03-23 =
  417. * Fix: Editor fails to load due to 3rd party deprecation conflicts ([#18235](https://github.com/elementor/elementor/issues/18235))
  418. = 3.6.0 - 2022-03-22 =
  419. * New: Introducing Flexbox Container element as an alpha status experiment
  420. * Tweak: Removed `elementor-section-wrap` by adding it to the DOM experiment ([#16950](https://github.com/elementor/elementor/issues/16950), [#10633](https://github.com/elementor/elementor/issues/10633))
  421. * Tweak: Updated Google Fonts list ([#13501](https://github.com/elementor/elementor/issues/13501), [#17930](https://github.com/elementor/elementor/issues/17930), [#16516](https://github.com/elementor/elementor/issues/16516))
  422. * Tweak: Allowed rearranging global colors and fonts ([#12203](https://github.com/elementor/elementor/issues/12203))
  423. * Tweak: Adding Responsive option to Text Stroke ([#17212](https://github.com/elementor/elementor/issues/17212))
  424. * Tweak: Added responsive capability to Icon Position control in Icon Box widget ([#3040](https://github.com/elementor/elementor/issues/3040))
  425. * Tweak: Added an option to Export and Import WP repository plugins as part of the Kit content
  426. * Tweak: Added an option to Export and Import specific Custom post types as part of the Kit content
  427. * Tweak: Updated `eicons` library to v5.15.0
  428. * Tweak: Added an option to change the color of the navigation dots in Image Carousel widget
  429. * Tweak: Added the Revisions link to Import / Export tools screen
  430. * Tweak: Added an indication when a widget is added to the Favorites section
  431. * Tweak: Added a deprecation notice for PHP 5.6 in WP dashboard
  432. * Tweak Added previous active Kit reference to the site options
  433. * Tweak: Added Kit reference to its imported items
  434. * Tweak: Added `Difference`, `Exclusion` and `Hue` to Column and Section blend mode options
  435. * Tweak: Add border options in Image Box widget
  436. * Tweak: Removed legacy style tab in Elementor dashboard settings screen
  437. * Tweak: Prompt the user permission to allow unfiltered file uploads in Import Template flow
  438. * Tweak: Promoted some experiments to Stable status
  439. * Tweak: Navigator appears by default when loading the editor for the first time
  440. * Tweak: Made typography weight strings translatable
  441. * Tweak: Adjusted the inline icon control for design flexibility
  442. * Tweak: Adjusted the Document settings import prompt texts to be more friendly
  443. * Tweak: Added Kit Library to the Finder
  444. * Tweak: Adding Import Export to the Finder
  445. * Tweak: Added WordPress menus to Export / Import Kit flow
  446. * Tweak: Added Lazy load option to Image Carousel widget
  447. * Tweak: Added Lazy load option to Background Slideshow
  448. * Tweak: Added informative summary screen to Export / Import Kit flow
  449. * Tweak: Added focus state and description on the play icon in Video widget
  450. * Tweak: Added dynamic tag controls to Menu Anchor widget
  451. * Tweak: Added dynamic tag controls to Image Carousel widget
  452. * Tweak: Added dynamic tag controls to Icon Box widget
  453. * Tweak: Added dynamic tag controls to HTML widget
  454. * Tweak: Added a reusable button trait
  455. * Fix: Sticky caused scrolling issues after clicking an element that expands the page height ([#17821](https://github.com/elementor/elementor/issues/17821), [#17839](https://github.com/elementor/elementor/issues/17839), [#18069](https://github.com/elementor/elementor/issues/18069))
  456. * Fix: Missing escaping for WordPress dashboard strings (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  457. * Fix: Widescreen breakpoint values affect other devices in the Editor preview in some cases
  458. * Fix: Dynamic references are not being reassigned in Export / Import Kit flow
  459. * Fix: System info file displays inaccurate WP memory limit
  460. * Fix: Widget appears empty while using PHP 8.1 in Posts and Posts archive widgets
  461. * Fix: Lower custom breakpoints didn't inherit upper breakpoints values in frontend
  462. * Fix: JS Error is thrown when switching between documents in some cases
  463. * Fix: CLI Import command caused the import process to fail
  464. * Fix: JS error is thrown when clearing select2 control
  465. * Fix: Dev Edition notice appears inside the Form Submission window
  466. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-6-planned-deprecations/)
  467. = 3.5.6 - 2022-02-28 =
  468. * Fix: Favorite WooCommerce widgets causes fatal error when WooCommerce is deactivated ([#17641](https://github.com/elementor/elementor/issues/17641))
  469. * Fix: Video inserted with privacy mode are not playing in the Video widget lightbox ([#17749](https://github.com/elementor/elementor/issues/17749))
  470. * Fix: Global widgets search didn't work properly ([#17270](https://github.com/elementor/elementor/issues/17270))
  471. * Fix: `remove_responsive_control()` doesn't remove controls for Additional Custom breakpoints which generates PHP errors
  472. * Fix: Lightbox video icon color control not working when Inline Font Icons experiment is active
  473. * Fix: Hardened the Lightbox action module sanitization to prevent potential security issues
  474. = 3.5.5 - 2022-02-03 =
  475. * Tweak: Changed Developer Edition promotional notice triggers
  476. * Tweak: Added a filter to allow modifying the imported Kit temp directory path
  477. * Fix: When trying to import a Kit and getting a general error the try-again action is incorrect
  478. * Fix: Hardened the Lightbox action module sanitization to prevent potential security issues
  479. = 3.5.4 - 2022-01-23 =
  480. * Tweak: Update `e-icons` library to `v5.14.0`
  481. * Fix: Can't edit the page if Favorite Widgets are in use in edge cases ([#17364](https://github.com/elementor/elementor/issues/17364))
  482. * Fix: `onError` throws an error because of bad parameters in Debug Util ([#14571](https://github.com/elementor/elementor/issues/14571))
  483. * Fix: Swiper Util accepts only `jQuery` instances as the container parameter ([#17262](https://github.com/elementor/elementor/issues/17262))
  484. * Fix: "Page template" string presented as "Library Page" in Finder results
  485. * Fix: SVG icons are not being imported properly in Template Library
  486. * Fix: Dynamic Tag switcher disappear in RTL
  487. = 3.5.3 - 2021-12-28 =
  488. * Fix: Global Widgets appears with the default widget style and not with the styling of the Global widget([#17296](https://github.com/elementor/elementor/issues/17296))
  489. = 3.5.2 - 2021-12-22 =
  490. * Fix: Responsive Reverse Columns control are not working properly ([#17240](https://github.com/elementor/elementor/issues/17240), [#17174](https://github.com/elementor/elementor/issues/17174))
  491. * Fix: Favorite widgets are being reset after page reload ([#17219](https://github.com/elementor/elementor/issues/17219))
  492. * Fix: Inner Section can’t be dragged into a column ([#17249](https://github.com/elementor/elementor/issues/17249))
  493. * Fix: Elements are pasted in reverse order when copying and pasting multiple elements
  494. = 3.5.1 - 2021-12-20 =
  495. * Tweak: Reverted Experiments auto deactivation in Safe Mode ([#17195](https://github.com/elementor/elementor/issues/17195))
  496. * Fix: Experiments are not working when Safe mode is enabled ([#17195](https://github.com/elementor/elementor/issues/17195))
  497. * Fix: Editing handles `z-index` issue ([#17187](https://github.com/elementor/elementor/issues/17187))
  498. * Fix: Missing wrapper section when Inner Section widget is dragged directly to the drag area ([#17187](https://github.com/elementor/elementor/issues/17187))
  499. * Fix: SVG and JSON files were not being uploaded when Dragged from Desktop ([#17194](https://github.com/elementor/elementor/issues/17194))
  500. * Fix: Several functions are being executed when not supposed to in all WordPress Dashboard screens
  501. = 3.5.0 - 2021-12-14 =
  502. * New: Introducing CSS Transform - rotate, scale, skew, offset and flip any element ([#12451](https://github.com/elementor/elementor/issues/12451))
  503. * New: Meet Multi-Select for page elements - improve your workflow process by making bulk actions ([#8006](https://github.com/elementor/elementor/issues/8006), [#879](https://github.com/elementor/elementor/issues/879))
  504. * New: Meet Favorite widgets section - save your most useful widgets for easier accessibility ([#2184](https://github.com/elementor/elementor/issues/2184), [#11443](https://github.com/elementor/elementor/issues/11443))
  505. * New: Added Text Stroke control - highlight titles with colorful outlines to in Heading, Icon Box, Tabs, Accordion, and Text path widgets ([#11158](https://github.com/elementor/elementor/issues/11158))
  506. * Experiment: Hide native WordPress widgets from panel search results - remove unwanted widgets from the widgets panel
  507. * Tweak: Adjusted Inline Font Icons experiment to work with `eicons` library and save up to 110KB of asset loading ([#8572](https://github.com/elementor/elementor/issues/8572), [#11361](https://github.com/elementor/elementor/issues/11361))
  508. * Tweak: Detect and present contextual errors messages in the Import/Export flow for better troubleshooting ([#15630](https://github.com/elementor/elementor/issues/15630), [#15715](https://github.com/elementor/elementor/issues/15715))
  509. * Tweak: Added Elementor license plan filter to Kit Library ([#16075](https://github.com/elementor/elementor/issues/16075))
  510. * Tweak: Added Reverse columns option to Additional Custom Breakpoints Experiment ([#16322](https://github.com/elementor/elementor/issues/16322), [#12925](https://github.com/elementor/elementor/issues/12925))
  511. * Tweak: Adjusted widgets to work with Inline-CSS Experiment and Additional Custom Breakpoints experiment ([#16126](https://github.com/elementor/elementor/issues/16126))
  512. * Tweak: Added the option to search by tag names in the Kit Library ([#16075](https://github.com/elementor/elementor/issues/16075))
  513. * Tweak: Added a quick Apply Kit modal option in the Kit Library
  514. * Tweak: Updated Experiments screen structure for better experiments discoverabilty
  515. * Tweak: Added Word Spacing control to typography group control
  516. * Tweak: Added Pro promotion screen for Custom Code feature
  517. * Tweak: Removed the Archive Posts and Archive Title widgets from widgets panel search results in non Archive templates
  518. * Tweak: Prompt the user permission to allow unfiltered file uploads in the Import Kit flow
  519. * Tweak: Optimized Kit library index page performance
  520. * Tweak: Improved performance of `WP_Query` by adding `no_found_rows=true` parameter
  521. * Tweak: Improved performance of loading the "My templates" while loading the Templates library
  522. * Tweak: Minimum height wasn't defined to all responsive devices
  523. * Tweak: Experiments status added to the system info for better debugging
  524. * Tweak: Safe mode now deactivates Elementor Experiments
  525. * Tweak: UI improvement for cascaded responsive control units
  526. * Tweak: Updated Dialog library to `4.9.0`
  527. * Tweak: Added a unified components registration for widgets, controls, form actions, dynamic tags, and finder categories
  528. * Tweak: Disabled the option to change the desktop height and width fields in the responsive bar
  529. * Tweak: Redundant inline CSS code was removed with the use of `eicons`
  530. * Tweak: Implemented Redux framework for future features support
  531. * Tweak: Allow "Edit Buttons" options to be extended by 3rd party developers
  532. * Tweak: `Editor/Documents` moved to `/editor/components` folder
  533. * Tweak: Added a filter to Context Menu Groups
  534. * Fix: Hamburger button didn't open on mobile in Nav menu widget ([#16682](https://github.com/elementor/elementor/issues/16682))
  535. * Fix: Adding multiple repeater controls in one section craetes a onflict ([#13117](https://github.com/elementor/elementor/issues/13117))
  536. * Fix: Finder incorrectly identifies pages created through Finder as a Post type instead of Page type ([#12502](https://github.com/elementor/elementor/issues/12502))
  537. * Fix: Unexpected behavior if `ctrl` + mouse click was used on mac ([#5228](https://github.com/elementor/elementor/issues/5228))
  538. * Fix: Edit header handles don't show up if the `z-index` of the header section is over 99 ([#16214](https://github.com/elementor/elementor/issues/16214))
  539. * Fix: Slides per view can't be set to default if there is a widescreen value in the Testimonial Carousel widget ([#16210](https://github.com/elementor/elementor/issues/16210))
  540. * Fix: Dividers not vertically centered in Icon List widget ([#16431](https://github.com/elementor/elementor/issues/16431))
  541. * Fix: Text typography control is missing in Text Path widget ([#16805](https://github.com/elementor/elementor/issues/16805))
  542. * Fix: Column padding affected absolute positioned elements ([#16572](https://github.com/elementor/elementor/issues/16572))
  543. * Fix: Some controls disappear in responsive devices when Additional Custom Breakpoint experiment is active ([#16608](https://github.com/elementor/elementor/issues/16608))
  544. * Fix: Menu Anchor widget didn't scroll to the appropriate ID if Scroll Snap is active ([#17035](https://github.com/elementor/elementor/issues/17035))
  545. * Fix: SVG sanitizer is failing if there is a line break after `</svg>`
  546. * Fix: Image Carousel widget ignored padding and margin inside columns
  547. * Fix: Theme Builder close button not functioning if the page was refreshed
  548. * Fix: Pro widget promotional popover CTA text was incorrect when Elementor Pro is activated but not connected
  549. * Fix: Section editing handle is not accessible when Section is placed below a Header
  550. * Fix: Run DB calculations only on sites that are required to
  551. * Fix: UI glitch in Google maps widgets
  552. * Fix: CLI 'library import' deletes the original imported file when importing a template
  553. * Fix: Updated Admin Top Bar font for Non-English languages
  554. * Fix: Elementor top bar is not presented in License page
  555. * Fix: Template name changed if a dash mark was used in the Import process
  556. * Fix: Empty state background was missing from the Media controls
  557. * Fix: Apply Kit option threw an error when used with PHP 8.0
  558. * Fix: Sticky option threw an error and cause the editor not to work
  559. * Fix: UI glitch in "Get beta updates" modal
  560. * Fix: Scroll snap caused UI glitches and threw undefined error on Archive pages
  561. * Fix: Vertical align control disappeared if used in a custom position on a custom breakpoint
  562. * Fix: Choose controls in RTL sites were inverted
  563. * Fix: Elementor notices were being displayed in the plugin update screen
  564. * Fix: Z-index control overrides negative values
  565. * Fix: Text Path widget causes redundant file system calls
  566. * Deprecated: `get_add_new_landing_page_url` (props [@HeyMehedi](https://github.com/HeyMehedi))
  567. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-5-planned-deprecations/)
  568. = 3.4.8 - 2021-11-16 =
  569. * Fix: Font Awesome 4 support option is set to Yes in new websites
  570. * Fix: CSS Printing method option is set to Internal Embedding in new websites
  571. * Fix: Hardened Lightbox capabilities to enforce better security policies
  572. * Fix: After downgrading from a version with Container experiment active a PHP error is thrown
  573. = 3.4.7 - 2021-10-31 =
  574. * Tweak: Added role restriction to Version control feature
  575. * Fix: Private Vimeo videos are not loading in Video widget ([#16741](https://github.com/elementor/elementor/issues/16741))
  576. * Fix: Custom width responsive control disappeared until section init in the common Positioning section
  577. * Fix: PayPal button widget is not functioning in future Pro versions
  578. * Fix: Unwanted HTML escaping in Pro features promotion
  579. = 3.4.6 - 2021-10-19 =
  580. * Tweak: Updated `eicons` library to 5.13.0
  581. * Fix: Custom SVG is not supported in some servers environments in Text Path widget
  582. * Fix: Lottie animations are not imported in Template import process
  583. * Fix: Can't connect to Library via CLI
  584. * Fix: Scroll event listener is not optimized in Counter widget
  585. = 3.4.5 - 2021-10-12 =
  586. * Tweak: Updated featured video in the WordPress repository plugin page
  587. * Tweak: Added support for future features compatibility
  588. * Fix: Additional breakpoints responsive CSS classes clash when Optimized DOM Output experiment is inactive [#16322](https://github.com/elementor/elementor/issues/16322)
  589. * Fix: Escaped several translation strings for better security (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  590. * Fix: Slides per view and slides to scroll controls disappeared when using multiple breakpoints in Testimonial Carousel widget
  591. * Fix: Padding not applied properly with absolute positioned widgets when the Optimized DOM Output experiment is active
  592. * Fix: Missing padding in the widgets panel layout
  593. = 3.4.4 - 2021-09-13 =
  594. * Fix: Custom popover responsive controls breaks when used in responsive breakpoints view when Additional Breakpoints experiment is active ([#16312](https://github.com/elementor/elementor/issues/16312))
  595. * Fix: Data Updater causes fatal error due to DB corruption ([#16100](https://github.com/elementor/elementor/issues/16100))
  596. * Fix: Page settings layout description strings were inaccurate
  597. * Fix: Specific image sizes causes the first image to load in large dimensions on load in Image Carousel widget
  598. = 3.4.3 - 2021-08-29 =
  599. * Tweak: Added "Justified" option in Typography text alignment in Column & Section elements ([#11480](https://github.com/elementor/elementor/issues/11480))
  600. * Tweak: Enlarged cards view in the Kit Library for better visibility
  601. * Tweak: Changed Kit Library tab title
  602. * Fix: Landing pages experiment causes 404 errors with attachment pages ([#15943](https://github.com/elementor/elementor/issues/15943))
  603. * Fix: Can't upload SVG files using Elementor ([#16084](https://github.com/elementor/elementor/issues/16084), [#16119](https://github.com/elementor/elementor/issues/16119), [#16088](https://github.com/elementor/elementor/issues/16088))
  604. * Fix: `wp_kses_post` strips `srcset` attribute from images ([#16111](https://github.com/elementor/elementor/issues/16111))
  605. * Fix: Inline CSS is parsed to an invalid characters ([#16140](https://github.com/elementor/elementor/issues/16140))
  606. * Fix: Animated elements disappear before entering the viewport ([#2806](https://github.com/elementor/elementor/issues/2806))
  607. * Fix: Autoplay not working for Vimeo videos in Lightbox ([#16068](https://github.com/elementor/elementor/issues/16068))
  608. * Fix: HTML captions are stripped in Image carousel widget ([#16073](https://github.com/elementor/elementor/issues/16073))
  609. * Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active
  610. * Fix: Responsive values are not being reflected in Slider controls
  611. * Fix: Elementor Top Admin Bar loads in WordPress dashboard when the experiment is active
  612. * Fix: Prevent Admin Top Bar to conflict with WordPress customizer
  613. * Fix: Can't change alignment of icons when Font Awesome Inline experiment is active in Icon List widget
  614. * Fix: Import deeplink redirect loses target screen parameters when user needs to log in
  615. * Deprecated: Removed all usages of `Elementor\Utils::get_create_new_post_url()`
  616. = 3.4.2 - 2021-08-19 =
  617. * Fix: Responsive Site settings are not being applied on frontend when Additional Custom Breakpoints is active ([#16055](https://github.com/elementor/elementor/issues/16055), [#16033](https://github.com/elementor/elementor/issues/16033))
  618. * Fix: Global colors are applied even when they are disabled on Frontend ([#16037](https://github.com/elementor/elementor/issues/16037))
  619. * Fix: Conditional controls missing when using Dynamic tags ([#16050](https://github.com/elementor/elementor/issues/16050))
  620. * Fix: Motion Effects popover is not visible ([#16044](https://github.com/elementor/elementor/issues/16044))
  621. * Fix: Control conditions are not being executed when has capital letter in the control slug ([#16003](https://github.com/elementor/elementor/issues/16003))
  622. = 3.4.1 - 2021-08-18 =
  623. * Tweak: Missing post types in Site Parts overview screen in Kit Library ([#15249](https://github.com/elementor/elementor/issues/15249))
  624. * Tweak: Added source=generic parameter when connecting through the top bar
  625. * Tweak: Added Inline SVG support to the generic video Play icon
  626. * Fix: Control conditions are not being executed when has dash in the control slug ([#16003](https://github.com/elementor/elementor/issues/16003))
  627. * Fix: Gradient control doesn't work on frontend when using Global Colors ([#13288](https://github.com/elementor/elementor/issues/13288))
  628. * Fix: Placeholder values of Column width control shouldn't cascade to Mobile device
  629. * Fix: Alignment control doesn't work in responsive view in Testimonial widget
  630. * Fix: Certain responsive controls pass the desktop default to other devices accidentally
  631. * Fix: Alignment control doesn't work with Additional Custom Breakpoints in Button widget
  632. * Fix: SVG Icon is not being displayed in the Basic Gallery widget
  633. * Fix: Activation bug for IDN domains
  634. = 3.4.0 - 2021-08-17 =
  635. * New: Introducing Additional Custom Breakpoints - Pixel Perfect Design for up to 7 Devices ([#2043](https://github.com/elementor/elementor/issues/2043), [#15488](https://github.com/elementor/elementor/issues/15488), [#15782](https://github.com/elementor/elementor/issues/15782))
  636. * Experiment: Font Awesome Inline SVG for Optimized performance ([#11772](https://github.com/elementor/elementor/issues/11772))
  637. * Tweak: Responsive values visibility in Elementor controls ([#3356](https://github.com/elementor/elementor/issues/3356))
  638. * Tweak: Improved asset loading performance by serving lighter JS files ([#8572](https://github.com/elementor/elementor/issues/8572))
  639. * Tweak: Scale controls were added to responsive mode UI ([#15485](https://github.com/elementor/elementor/issues/15485))
  640. * Tweak: Responsive devices order was changed ([#14662](https://github.com/elementor/elementor/issues/14662), [#2043](https://github.com/elementor/elementor/issues/2043))
  641. * Tweak: Excluded Elementor Templates from WordPress default sitemap ([#14578](https://github.com/elementor/elementor/issues/14578), [Topic](https://wordpress.org/support/topic/how-to-stop-elementor-templates-appearing-in-wp-sitemap/))
  642. * Tweak: Responsive capability was added to Alignment control in Testimonial widget ([#11542](https://github.com/elementor/elementor/issues/11542))
  643. * Tweak: Added translation function to several locations (props [@rodolphebertozzo](https://github.com/rodolphebertozzo))
  644. * Tweak: Allow extending Section elements using Elementor API (props [@Oxibug](https://github.com/oxibug))
  645. * Tweak: Converted responsive controls generation in the Editor to JS ([Developers Blog Post](https://developers.elementor.com/additional-custom-breakpoints-technical-details-and-gotchas/))
  646. * Tweak: Updated Webpack library to v5.40.0
  647. * Tweak: Added an option to deep-link into Revisions panel screen
  648. * Tweak: Changed the Kit Library back button text to "Back to Library"
  649. * Tweak: Added additional information to usage data
  650. * Tweak: Added compatibility for future feature in Site Settings
  651. * Tweak: Added CLI support for Import Kit by ID
  652. * Tweak: Added informative tooltip for Finder element in Elementor admin top bar
  653. * Tweak: Use template literals in Elementor filter names
  654. * Tweak: Updated "Getting Started" video playlist
  655. * Tweak: Enforced better security policies
  656. * Fix: Dynamic content disappeared if chosen in Code Highlight widget ([#14766](https://github.com/elementor/elementor/issues/14766))
  657. * Fix: Text size increased on Icon list widget with size set to `em` and a link ([#14829](https://github.com/elementor/elementor/issues/14829))
  658. * Fix: Undefined `"pro_widgets"` array key message in edge cases (props [@jahir07](https://github.com/jahir07), [@codersaiful](https://github.com/codersaiful), [#15542](https://github.com/elementor/elementor/issues/15542))
  659. * Fix: UI glitch in Select2 control in Dark mode ([#15473](https://github.com/elementor/elementor/issues/15473))
  660. * Fix: Re-migrate globals are not working properly in edge cases ([#15477](https://github.com/elementor/elementor/issues/15477), props [@jvernooy](https://github.com/jvernooy))
  661. * Fix: Gallery widget with Dynamic gallery applied can't be edited or deleted ([#15529](https://github.com/elementor/elementor/issues/15529))
  662. * Fix: Improved Responsive bar compatibility to RTL sites
  663. * Fix: Dynamic tags UI glitch in Code Highlight widget
  664. * Fix: Default Mobile width changed to 360px in Responsive mode
  665. * Fix: Viewport meta tag was escaped in Canvas page layout
  666. * Fix: Setting zero offset to Sticky elements is not working properly
  667. * Fix: Icons are not vertically aligned in Icon List widget
  668. * Fix: WordPress Audio widget only shows correct styling in live preview but not in the actual site
  669. * Fix: New tabs do not appear instantly if alignment is not set to Default or Start in Tabs widget
  670. * Fix: Edit popover was trimmed by the template card in Theme Builder
  671. * Fix: Duplicate `<style>` tags were printed in several cases
  672. * Fix: Theme Builder is not working if Import/Export experiment is inactive
  673. * Fix: UI glitch in Responsive bar in RTL sites
  674. * Fix: "Edit with Elementor" isn’t working on static Homepages
  675. * Fix: UI glitches in Kit Library
  676. * Fix: Library connect issues after URL change in Kit and template Library
  677. * Fix: Kit Library not showing all categories
  678. * Fix: Pro widget promotions flickers after clicking on "See it in action" button
  679. * Fix: Incorrect hover default color in Text Path widget
  680. * Fix: Text decoration is not working in Text Path widget
  681. * Fix: Browser's autocomplete is taking over the results in the Finder
  682. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-4-planned-deprecations/)
  683. = 3.3.1 - 2021-07-20 =
  684. * Tweak: Added a back to Kit Library button to the Import Kit screen
  685. * Tweak: Updated `eicons` library to 5.12.0
  686. * Tweak: Declared compatibility for WordPress 5.8
  687. * Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases ([#15632](https://github.com/elementor/elementor/issues/15632), [#15683](https://github.com/elementor/elementor/issues/15683), [#15660](https://github.com/elementor/elementor/issues/15660))
  688. * Fix: Improved CSS Loading experiment learn more link leads to the wrong doc ([#15622](https://github.com/elementor/elementor/issues/15622))
  689. * Fix: JS error is thrown when using Global widget since Elementor v3.3.0 ([#15648](https://github.com/elementor/elementor/issues/15648), [#15672](https://github.com/elementor/elementor/issues/15672))
  690. * Fix: Removed deprecated classes calls in System Info screen
  691. = 3.3.0 - 2021-07-13 =
  692. * New: Introducing Kits Library - Create Entire Websites Faster Than Ever ([#4417](https://github.com/elementor/elementor/issues/4417), [#11341](https://github.com/elementor/elementor/issues/11341))
  693. * New: Meet the Color Color Sampler - fetch colors from every image and populated color control ([#14868](https://github.com/elementor/elementor/issues/14868))
  694. * Experiment: Improved CSS Loading - Load widgets CSS only when needed ([#13533](https://github.com/elementor/elementor/issues/13533), [#8572](https://github.com/elementor/elementor/issues/8572))
  695. * Tweak: Added Animations CSS library to be loaded conditionally when needed when Improved Asset Load experiment is active ([#13533](https://github.com/elementor/elementor/issues/13533), [#8572](https://github.com/elementor/elementor/issues/8572))
  696. * Tweak: Added the ability to fetch Image from external URL ([#413](https://github.com/elementor/elementor/issues/413))
  697. * Tweak: Added responsive capabilities to Content width in Section and Inner Section elements ([#12963](https://github.com/elementor/elementor/issues/12963))
  698. * Tweak: Added “Hidden Elements” User Preference control to choose whether to show or hide hidden elements in responsive mode ([#12316](https://github.com/elementor/elementor/issues/12316))
  699. * Tweak: Added User Preference control to set the default responsive device when the responsive view is triggered ([#14662](https://github.com/elementor/elementor/issues/14662))
  700. * Tweak: Added an Elementor top bar to all Elementor screens in the WordPress admin pages for better discoverability ([#15276](https://github.com/elementor/elementor/issues/15276), [#15250](https://github.com/elementor/elementor/issues/15250))
  701. * Tweak: Added gradient button capabilities to Button instances in Theme Style ([#14731](https://github.com/elementor/elementor/issues/14731))
  702. * Tweak: Changed Landing Pages experiment to be active by default on all websites
  703. * Tweak: Improved Kit Import and Export tool to include Posts, Pages, Custom Post Types and WooCommerce Products
  704. * Tweak: Allow unlimited export of Elementor-created content in Import/Export tool
  705. * Tweak: Included Homepage setting in Import/Export tool
  706. * Tweak: Throw an error when running Import process via CLI if user is not Administrator role
  707. * Tweak: Added Informative modal links in Import/Export tool
  708. * Tweak: Modified Kit information area to be collapsible in Import/Export tool
  709. * Tweak: Added custom fields support to Import/Export Experiment
  710. * Tweak: Added future support for Additional Breakpoints
  711. * Tweak: Changing the `content-filters` to be accessed publicly
  712. * Tweak: Regenerate Files admin button resets all page-assets data
  713. * Tweak: Improved Kit Import and Export tool to include conditions conflicts resolver
  714. * Tweak: Added Kit information to Import and Export tool
  715. * Tweak: Added summary screens to Import and Export tool
  716. * Tweak: Converted Improved Asset Loading Experiment registration to the post save process instead of loading process
  717. * Tweak: Widgets search can accept non-english strings for better UX
  718. * Tweak: Polished Responsive top bar UI
  719. * Tweak: Created an Uploads manager util to better handle files being uploaded
  720. * Tweak: Added default height to Tablet and Mobile devices
  721. * Tweak: Polished Select2 control UI
  722. * Tweak: Added Pro promotion in Submission feature page
  723. * Tweak: Updated Font Awesome icons library to v5.15.3
  724. * Tweak: Added a new filter `elementor/document/save/data` to allow manipulation when document save starts
  725. * Tweak: Added usage schema in `schemas/usage`
  726. * Tweak: Recalculate elements usage each upgrade
  727. * Tweak: Added "Recreate Kit" button in Elementor settings only when the Default Kit does not exist
  728. * Tweak: Made `elementorFrontend.getDeviceSetting()` method dynamic
  729. * Fix: Inline editing not working when the Optimized DOM experiment is on ([#14703](https://github.com/elementor/elementor/issues/14703))
  730. * Fix: Exit animation flickers in several cases ([#14459](https://github.com/elementor/elementor/issues/14459), [#13180](https://github.com/elementor/elementor/issues/14703))
  731. * Fix: Lightbox is not working in the frontend ([#15080](https://github.com/elementor/elementor/issues/15080), [#15085](https://github.com/elementor/elementor/issues/15085))
  732. * Fix: Prevent Default Kit from being recreated when kit not exists ([#13299](https://github.com/elementor/elementor/issues/13299))
  733. * Fix: Social icons alignment shift right in Safari browsers ([#13122](https://github.com/elementor/elementor/issues/13122))
  734. * Fix: Gradient control doesn't work when using Global Colors ([#13288](https://github.com/elementor/elementor/issues/13288))
  735. * Fix: Social Icons and Share button space disappeared when optimizing the HTML ([#13279](https://github.com/elementor/elementor/issues/13279))
  736. * Fix: UI glitch in the empty state of Global widgets tab
  737. * Fix: Breakpoints values in the Panel are not enforced
  738. * Fix: Error thrown in Template library if Expert template been imported
  739. * Fix: Panel search bar appears above the overlay on load
  740. * Fix: Slides widget is not displaying properly in the Editor
  741. * Fix: Activation account connection error on IDN domains
  742. * Fix: Video item didn’t started playing without adding an image overlay in Media Carousel widget
  743. * Fix: Inline editing not working when the Optimized DOM experiment is active
  744. * Fix: Site Identity data been transferred when importing a Kit
  745. * Fix: WordPress content Featured images are not being imported when applying a Kit
  746. * Fix: Post Excerpt is not imported when applying a Kit via Import Kit tool
  747. * Fix: Default Kit file not being created in Multisite WordPress instances
  748. * Fix: Dark mode UI glitches in Import/Export tool
  749. * Fix: Close and back to dashboard buttons are not being redirected to the correct page in Import/Export experiment
  750. * Fix: Collapse button disappeared on mobile if the user not logged in Video Playlist widget
  751. * Fix: Import process fail message is shown when importing a Kit from ThemeForest
  752. * Fix: Large images optimized by WordPress can't be displayed properly via dynamic Toolset fields
  753. * Fix: Dynamic control is not working in Text Path widget
  754. * Fix: Column removed from a section in the Navigator resulted in an empty section
  755. * Fix: Unable to drag and drop columns from one above other
  756. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-3-planned-deprecations/)
  757. = 3.2.5 - 2021-06-16 =
  758. * Fix: Reverted Replace URL fix that caused the Default Kit to get regenerated in certain cases ([#14892](https://github.com/elementor/elementor/issues/14892))
  759. = 3.2.4 - 2021-05-26 =
  760. * Tweak: Changed Google Maps widget to use API v3 instead of deprecated v2 ([#15090](https://github.com/elementor/elementor/issues/15090))
  761. * Tweak: Updated Google Fonts list to 05/2021 ([#14732](https://github.com/elementor/elementor/issues/14732), [#14536](https://github.com/elementor/elementor/issues/14536), [#13595](https://github.com/elementor/elementor/issues/13595))
  762. * Tweak: Changed "Missing Header" text for Compatibility tags in System info screen
  763. * Fix: Google Maps widget is not loading due to API deprecation ([#15090](https://github.com/elementor/elementor/issues/15090))
  764. * Fix: Disable Lightbox user preference does not affect the Basic Gallery widget ([#12913](https://github.com/elementor/elementor/issues/12913))
  765. * Fix: Hardened Lightbox capabilities to enforce better security policies
  766. = 3.2.3 - 2021-05-05 =
  767. * Fix: `eicons` file couldn't be found when using Custom Breakpoints ([#14718](https://github.com/elementor/elementor/issues/14718), [#14712](https://github.com/elementor/elementor/issues/14712))
  768. * Fix: Deregister `eicons` fonts action is not working ([#14712](https://github.com/elementor/elementor/issues/14712))
  769. * Fix: Responsive custom CSS is not properly generated when using custom breakpoints ([#14711](https://github.com/elementor/elementor/issues/14711))
  770. * Fix: Minimize the Editor window caused to preview to collapse behind the Panel
  771. = 3.2.2 - 2021-04-26 =
  772. * Fix: Multiple carousels in the same page stoped functioning when Improved Asset Load experiment is active ([#14663](https://github.com/elementor/elementor/issues/14663), [#14675](https://github.com/elementor/elementor/issues/14675))
  773. * Fix: Section Style tab panel is grayed in several site languages ([#14642](https://github.com/elementor/elementor/issues/14642))
  774. * Fix: Responsive mode UI glitch in WordPress versions under 5.6
  775. = 3.2.1 - 2021-04-21 =
  776. * Tweak: Changed the minimum width of Mobile breakpoint to 320px
  777. * Fix: Global Typography settings were printed as undefined variables
  778. * Fix: Close button in responsive bar didn't worked in the Desktop breakpoint
  779. * Fix: UI glitch in the dashboard admin notices
  780. * Fix: Right click contextual menu appears underneath the Navigator
  781. * Fix: Panel resize caused UI glitches in RTL websites
  782. * Fix: Responsive device icons adjustments in RTL websites
  783. = 3.2.0 - 2021-04-19 =
  784. * New: Meet Text Path widget - Add more text design options to your headings
  785. * New: Meet the new Responsive Mode * Easily edit your responsive design
  786. * New: Introducing Mask option - Add a mask to every element on your page ([#13736](https://github.com/elementor/elementor/issues/13736))
  787. * Experiment: Template Kit Import & Export feature - Move all of your Elementor content from one site to another
  788. * Experiment: Added `elementor-image` & `elementor-text-editor` classes to DOM Optimization Experiment
  789. * Tweak: Split `eicons` library CSS file to Editor & Frontend usages as part of the Improved Asset Loading Experiment ([#8572](https://github.com/elementor/elementor/issues/8572))
  790. * Tweak: Load the Lightbox assets only if Lightbox is used on the page as part of the Improved Asset Loading Experiment ([#8572](https://github.com/elementor/elementor/issues/8572))
  791. * Tweak: Added Google Fonts loading method option in Elementor settings screen to control over `font-display` option ([#14236](https://github.com/elementor/elementor/issues/14236))
  792. * Tweak: Added Gradient background option to Button widget ([#3142](https://github.com/elementor/elementor/issues/3142))
  793. * Tweak: Added FAQ Schema support to Accordion and Toggle Widgets (Props [@pacotole](https://github.com/pacotole), [#13425](https://github.com/elementor/elementor/issues/13425), [#9053](https://github.com/elementor/elementor/issues/9053))
  794. * Tweak: Improved the widgets panel responsiveness ([#14026](https://github.com/elementor/elementor/issues/14026))
  795. * Tweak: Added dynamic option to video link inside Sections ([#6116](https://github.com/elementor/elementor/issues/6116))
  796. * Tweak: Added Text shadow control to Text widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  797. * Tweak: Added Text shadow control to Icon Box widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  798. * Tweak: Added Text shadow control to Start Rating widget([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  799. * Tweak: Added Text shadow control to Icon List widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  800. * Tweak: Added Text shadow control to Icon widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  801. * Tweak: Added Text shadow control to Image Gallery widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  802. * Tweak: Added Text shadow control to Image Carousel widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  803. * Tweak: Added Text shadow control to Counter widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  804. * Tweak: Added Text shadow control to Progress Bar widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  805. * Tweak: Added Text shadow control to Testimonials widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  806. * Tweak: Added Text shadow control to Tabs widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  807. * Tweak: Added Text shadow control to Toggle widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  808. * Tweak: Added Text shadow control to Accordion widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  809. * Tweak: Added Text shadow control to Alert widget ([#10033](https://github.com/elementor/elementor/issues/10033), [#2263](https://github.com/elementor/elementor/issues/2263), [#5579](https://github.com/elementor/elementor/issues/5579))
  810. * Tweak: Added support for Expert tier templates in Templates Library
  811. * Tweak: Adjusted Media control to better handle SVG uploads
  812. * Tweak: Converted script loading method to use an independent Util instead of JS `import` function for better performance
  813. * Tweak: Changed the widgets search field to be sticky
  814. * Tweak: Added "Fit to Screen" height option in Inner Section widget
  815. * Tweak: Added `vh` and `vw` units to Min-height control in Inner Section widget
  816. * Tweak: Added `vh` unit to Height control in Google Maps widget
  817. * Tweak: Changed breakpoints mechanism to use dynamic breakpoint references to allow future addition of breakpoints
  818. * Tweak: Added Dynamic capabilities support in Code Highlight widget
  819. * Tweak: Added ability to access Site Settings using `Cmd + K` / `CTRL + K`
  820. * Tweak: Added ability to access Site Settings via Admin top bar
  821. * Tweak: Updated Elementor admin notices UI
  822. * Tweak: Added userAgent/browser classes to the admin area body class
  823. * Tweak: Manage all the subscription plans from Connect module in Template Library
  824. * Tweak: Removed "Meet right click" introduction
  825. * Fix: Edit section labels in Navigator didn't triggered the Update button ([#10772](https://github.com/elementor/elementor/issues/10772))
  826. * Fix: Custom fonts file URLs are static and are not changed using the Replace URL tool ([#10382](https://github.com/elementor/elementor/issues/10382))
  827. * Fix: "Undefined" error message is thrown when server fails to save or insert a template ([#12377](https://github.com/elementor/elementor/issues/12377))
  828. * Fix: Popup Dynamic Link options modal is misplaced ([#13257](https://github.com/elementor/elementor/issues/13257))
  829. * Fix: Navigator indicators are missing since WordPress v5.7 ([#14094](https://github.com/elementor/elementor/issues/14094))
  830. * Fix: PHP error was thrown when using PHP 8 in the System Info screen
  831. * Fix: Hardened SVG uploads capabilities to enforce better security policies
  832. * Fix: Redundant space when deleting an icon from Icon Box widget
  833. * Fix: Library Connect completion redirects to wrong page
  834. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-2-planned-deprecations/)
  835. = 3.1.4 - 2021-03-08 =
  836. * Fix: Self hosted video didn't work with Image Overlay ([#14038](https://github.com/elementor/elementor/issues/14038))
  837. * Fix: Clicking on Video widget Image Overlay doesn't plat video for Vimeo ([#14095](https://github.com/elementor/elementor/issues/14095))
  838. * Fix: Carousels navigation arrows `z-index` issue in Safari ([#13791](https://github.com/elementor/elementor/issues/13791))
  839. * Fix: Landing Pages can cause a fatal error for Author roles in the WordPress dashboard
  840. * Fix: `<a>` tags placed in an SVG file trigger the Lightbox
  841. * Fix: Hardened allowed options in the editor to enforce better security policies
  842. * Fix: Removed `html` option in Lightbox module to prevent security issues
  843. = 3.1.3 - 2021-03-03 =
  844. * Tweak: Added `aria-expanded` property to Tabs, Accordion and Toggle widgets ([#11246](https://github.com/elementor/elementor/issues/11246), [#3576](https://github.com/elementor/elementor/issues/3576))
  845. * Fix: Values are being cleared after save action in Query control ([#14098](https://github.com/elementor/elementor/issues/14098))
  846. = 3.1.2 - 2021-03-02 =
  847. * Tweak: Added Lazy load option for YouTube in Video widget to prevent conflicts ([#13898](https://github.com/elementor/elementor/issues/13898))
  848. * Tweak: Allow overwriting the assets URL when using a mirror domain ([#13701](https://github.com/elementor/elementor/issues/13701))
  849. * Tweak: Removed deprecated `jQuery` functions for WP 5.7 compatibility
  850. * Tweak: Added a `mixin` for `webkit-scrollbar` design in Table of Content widget CSS
  851. * Tweak: Added `--force` CLI replace command to always return the number of replaces
  852. * Tweak: Added a Lazy Load control for YouTube source in Background Video
  853. * Tweak: Updated `eicons` library to v5.11.0
  854. * Fix: Youtube videos didn't work properly when Privacy mode is enabled and "Improved Asset Loading" experiment is disabled ([#13711](https://github.com/elementor/elementor/issues/13711))
  855. * Fix: Error event will not always have an `originalEvent` (props [@enisdenjo](https://github.com/enisdenjo))
  856. * Fix: Background Video protocol wasn't using `https` for `youtube-nocookie` option in Video widget
  857. * Fix: Youtube API script was loaded when Image overlay is used
  858. * Fix: Navigator overlapped preview area if attached to the right
  859. * Fix: Column layout glitch when changing the section structure
  860. * Fix: Landing page created via the Admin bar wasn't created with Canvas layout
  861. * Fix: Sanitized options in the editor to enforce better security policies
  862. = 3.1.1 - 2021-01-31 =
  863. * Tweak: Minor UI improvements in Compatibility tag
  864. * Fix: Async JS loading conflicted with `wp.i18n` ([#13708](https://github.com/elementor/elementor/issues/13708), [#13746](https://github.com/elementor/elementor/issues/13746), [Topic](https://wordpress.org/support/topic/console-error-43/))
  865. * Fix: Elementor loads unnecessary `wp-polyfills.min.js` script in Frontend ([#13720](https://github.com/elementor/elementor/issues/13720))
  866. * Fix: Landing Pages experiment removes content in static blog pages ([#13706](https://github.com/elementor/elementor/issues/13706), [#13728](https://github.com/elementor/elementor/issues/13728), [#13725](https://github.com/elementor/elementor/issues/13725), [Topic](https://wordpress.org/support/topic/blog-page-not-showing-after-update-3/))
  867. * Fix: Background Slideshow shifted if Section is stretched and has Full Width layout ([#13750](https://github.com/elementor/elementor/issues/13750), [Topic](https://wordpress.org/support/topic/slide-show-background-2/), [Topic](https://wordpress.org/support/topic/slider-background-section-layout-issue/), [Topic](https://wordpress.org/support/topic/elementor-v-3-0-16-breaks-full-width-header/))
  868. * Fix: Entrance animation set to `none` caused a delay in the widget load
  869. * Fix: Navigator rearrangement glitches when Optimized DOM experiment is active
  870. * Fix: Keyboard navigation isn't working in Tabs widget when Accessibility Improvements experiment is active
  871. * Fix: Minor UI glitches in Experiments screen
  872. * Fix: Wrong check of a deprecated method caused a notice when `ELEMENTOR_DEBUG` is enabled
  873. * Fix: Arrow keys navigation is not working in Finder
  874. * Fix: Theme Style overrides icon size when set in `em` in Social Icon widget
  875. = 3.1.0 - 2021-01-24 =
  876. * New: Elementor Experiments - Experience new features before they're officially released ([Developer Documentation](https://developers.elementor.com/elementor-experiments/))
  877. * New: Compatibility Tag - Make sure your website plugins are compatible with Elementor ([Developer Documentation](https://developers.elementor.com/compatibility-tag/))
  878. * Experiment: Landing Pages - Create beautiful landing pages in a streamlined workflow
  879. * Experiment: Accessibility Improvements - Make Elementor widgets more accessible (may include markup changes) ([#13191](https://github.com/elementor/elementor/issues/13191))
  880. * Experiment: Improved performance by loading JS and Swiper assets conditionally in frontend ([#8572](https://github.com/elementor/elementor/issues/8572), [Developer Documentation](https://developers.elementor.com/experiment-optimized-asset-loading))
  881. * Tweak: Improved Tabs widget accessibility ([#11779](https://github.com/elementor/elementor/issues/11779), [#11561](https://github.com/elementor/elementor/issues/11561))
  882. * Tweak: Added alignment options for Tabs widget ([#11997](https://github.com/elementor/elementor/issues/11997))
  883. * Tweak: Updated Font Awesome icons library to v5.15.1 ([#12057](https://github.com/elementor/elementor/issues/12057))
  884. * Tweak: Added "Custom" Columns Gap option in Section element ([#11978](https://github.com/elementor/elementor/issues/11978))
  885. * Tweak: Added Border Radius support in Google Maps widget ([#11359](https://github.com/elementor/elementor/issues/11359))
  886. * Tweak: Added dynamic capabilities to Tab Title control in Tabs widget ([#9710](https://github.com/elementor/elementor/issues/9710))
  887. * Tweak: Added dynamic capabilities to Toggle Content control in Toggle widget ([#12405](https://github.com/elementor/elementor/issues/12405))
  888. * Tweak: Added `em` unit to Border Radius control in Button widget ([#11561](https://github.com/elementor/elementor/issues/11561))
  889. * Tweak: Introduced a new method for attaching a JS handler to an element ([Developer Documentation](https://developers.elementor.com/a-new-method-for-attaching-a-js-handler-to-an-element/))
  890. * Tweak: Added the option to add custom menu items in Site Settings ([Developer Documentation](https://github.com/elementor/elementor/pull/13243))
  891. * Tweak: Added an option to choose Text element HTML tag in Divider widget ([#11499](https://github.com/elementor/elementor/issues/11499))
  892. * Tweak: Updated `eicons` library to v5.10.0
  893. * Tweak: Refactored YouTube source to use YouTube API in Video widget
  894. * Tweak: Added dynamic capabilities to Poster control in Video widget
  895. * Tweak: Global dropdown controls are now displayed for all user roles
  896. * Tweak: Improved browsers detection utility functionality
  897. * Tweak: Added "Find an Expert" link to the Admin Dashboard Overview widget
  898. * Tweak: Added the new Theme Builder as a Finder item
  899. * Tweak: Added `+` icon in multi-select control for better UX
  900. * Tweak: Improved Select2 controls load
  901. * Tweak: Added Elementor Beta (Developer Edition) promotion in WordPress dashboard
  902. * Tweak: Migrated DOM Improvements to Elementor Experiments
  903. * Tweak: Removed redundant extra padding in responsive controls
  904. * Tweak: Modified the Theme Builder app link UI in the Admin Bar menu
  905. * Fix: Some keyboards layout cannot open the keyboard shortcuts dialog ([#6145](https://github.com/elementor/elementor/issues/6145))
  906. * Fix: Change Page Layout doesn't update the preview on the first attempt ([#13245](https://github.com/elementor/elementor/issues/13245))
  907. * Fix: Update Post Title via Site Settings removes style from Post Title widget ([#12605](https://github.com/elementor/elementor/issues/12605))
  908. * Fix: Can't rearrange items between sections in Navigator since WordPress 5.6 update ([#12256](https://github.com/elementor/elementor/issues/12256))
  909. * Fix: Double click needed to play YouTube video when Poster image exists in Video widget
  910. * Fix: Autoplay option doesn't work in mobile devices when YouTube source is muted in Video widget
  911. * Fix: YouTube End Time option doesn't work when Loop option is active in Video widget
  912. * Fix: Incompatible variable names in Base Swiper class and Elementor Pro carousels
  913. * Fix: Landing Pages menu item directs to the wrong page
  914. * Fix: Redundant spacing is added to WYSIWYG control if rich editing is disabled
  915. * Fix: Editor Autoplay is not working consistently in Image Carousel widget
  916. * Fix: Console errors are thrown when entering the Revisions menu in edge cases
  917. * Fix: Column height is not correct when Optimized DOM experiment is inactive
  918. * Fix: Wrong translation function caused errors in the Revisions panel
  919. * Fix: Widgets empty state is not visible in WordPress 5.6
  920. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-1-planned-deprecations/)
  921. = 3.0.16 - 2021-01-06 =
  922. * Tweak: String changes in Delete Site Settings screen
  923. * Fix: Clicking "Recalculate" button in System info throws a PHP error ([#13100](https://github.com/elementor/elementor/issues/13100 ))
  924. * Fix: Regenerate CSS is not working properly in large scale servers
  925. * Fix: Template Library title sanitization to avoid security issues
  926. * Fix: `libxml_disable_entity_loader` warning is thrown in PHP 8.0 instances
  927. = 3.0.15 - 2020-12-21 =
  928. * Tweak: Added "Theme" option to Page Layout options in Page Settings to allow customization of Site Setting value
  929. * Tweak: Added a confirmation message before deleing Default Kit to trash to avoid unintentional Site Settings deletion
  930. * Fix: Named parameters used in Dynamic Tags causes PHP errors in PHP 8.0 ([#13269](https://github.com/elementor/elementor/issues/13269))
  931. * Fix: "Edit with Elementor" menu does not expands in the top admin-bar menu in WordPress 5.6 ([#13256](https://github.com/elementor/elementor/issues/13256))
  932. * Fix: Stretch Section causes horizontal scroll when the vertical scrollbar is visible in WordPress 5.6 ([#13260](https://github.com/elementor/elementor/issues/13260))
  933. * Fix: Unable to save Templates in WordPress 5.6 ([#12273](https://github.com/elementor/elementor/issues/12273), [Topic](https://wordpress.org/support/topic/save-the-template-and-page-builder-loding/))
  934. * Fix: Ninja Forms plugin conflict in WordPress 5.6 ([#13281](https://github.com/elementor/elementor/issues/13281), [Topic](https://wordpress.org/support/topic/elementor-ninja-forms-bug/), [Topic](https://wordpress.org/support/topic/elementor-bug-ninja-forms/))
  935. * Fix: Pinterest social sharing is not working when displaying a large image in Lightbox
  936. * Fix: Manage Global Colors and Fonts buttons is not leading to the correct screen
  937. * Fix: Permission error when trying to update site description with WP-CLI
  938. = 3.0.14 - 2020-11-25 =
  939. * Tweak: Added 3rd party plugins compatibility to versions rollback mechanism
  940. * Fix: Updated Popup Builder promotional image
  941. * Fix: Upload SVG files only when the user allowed to prevent security issues
  942. * Fix: String updates in Style Settings tab
  943. = 3.0.13 - 2020-11-04 =
  944. * Tweak: Added compatibility with WordPress v5.6 to the Editor panel ([#12958](https://github.com/elementor/elementor/issues/12958))
  945. * Tweak: Updated translation strings in Theme Builder promotional screen
  946. * Fix: Tab content is animated when active in Tabs widget ([#12724](https://github.com/elementor/elementor/issues/12724))
  947. * Fix: "Edit with Elementor" button in admin top-bar is missing in some cases ([#12951](https://github.com/elementor/elementor/issues/12951), [#12995](https://github.com/elementor/elementor/issues/12995))
  948. * Fix: "Edit with Elementor" button in a post removes draft
  949. * Fix: "Edit with Elementor" doesn't work for empty Elementor posts
  950. * Fix: Some settings are not being updated in the Preview in Image Carousel widget
  951. * Fix: Console error message when Global value is not found
  952. * Fix: Revisions are not being saved in Site Settings
  953. * Fix: Apply or Restore revision actions triggers console errors
  954. * Fix: Paste action without any data throws a console error
  955. * Fix: Pasting style with Global values is not reflected in the Panel
  956. * Fix: Can't submit forms from templates when the parent post is empty
  957. = 3.0.12 - 2020-10-20 =
  958. * Tweak: Added "Read More" link to major version upgrade notice
  959. * Tweak: Added System Info CLI command
  960. * Fix: Redundant padding in Social Icons widget ([#12833](https://github.com/elementor/elementor/issues/12833))
  961. * Fix: Editor role can't see "Edit with Elementor" button in top admin-bar ([#12175](https://github.com/elementor/elementor/issues/12175))
  962. * Fix: Dynamic content promotion is shown when self hosted option is selected in Video widget ([#11468](https://github.com/elementor/elementor/issues/11468))
  963. * Fix: 'description' is not supported in the color control ([#12747](https://github.com/elementor/elementor/issues/12747))
  964. * Fix: Some Shape Dividers overlap other elements since Chrome 85 ([#12393](https://github.com/elementor/elementor/issues/12393))
  965. * Fix: Image preview area disappears when 'label_block' is `false` in Media Control ([#11756](https://github.com/elementor/elementor/issues/11756))
  966. * Fix: Missing compatibility for Advanced Editor Tools (previously TinyMCE Advanced) ([#12768](https://github.com/elementor/elementor/issues/12768))
  967. * Fix: Different panel tab is shown when panel tab includes only sections with display conditions that are unmet ([#12658](https://github.com/elementor/elementor/issues/12658))
  968. * Fix: Default Generic Fonts are not printed along with a global value ([#12410](https://github.com/elementor/elementor/issues/12410))
  969. * Fix: Remove source map comment to prevent 404 console warning ([Topic](https://wordpress.org/support/topic/issue-with-picker-js-map))
  970. * Fix: Buttons are cropped when applying some hover animations to Social Icons widget
  971. * Fix: Custom Panel tab not working when added to Page Settings
  972. * Fix: Globals Dropdown popover is not aligned to the picker when panel is wide
  973. * Fix: Popups are missing from "Edit With Elementor" top admin-bar list
  974. * Fix: Global Color panel UI glitch on upgrade to v3.0.x when user has RGBA values
  975. * Fix: Can't upload SVG files to Favicon control in Site Settings
  976. = 3.0.11 - 2020-09-30 =
  977. * Tweak: Added "Loading" state for Global controls to reflect data loading state
  978. * Fix: Inaccurate height in Divider widget ([#12569](https://github.com/elementor/elementor/issues/12569), [#12630](https://github.com/elementor/elementor/issues/12630))
  979. * Fix: Global Colors and Fonts are not being generated on non Elementor pages ([#12637](https://github.com/elementor/elementor/issues/12637))
  980. * Fix: Inactive "Delicious" social network from Social Icons widget
  981. * Fix: Can't restore the Site Settings document revisions
  982. * Fix: Creating a new Global Color or Font won't reflect in other dropdowns until the controls section init
  983. * Fix: Selecting a new Global Color or Font won't be indicated in the dropdown until the controls section init
  984. = 3.0.10 - 2020-09-23 =
  985. * Fix: `space_between_widgets` is missing on upgrade in some cases ([#12298](https://github.com/elementor/elementor/issues/12298))
  986. * Fix: Global Color does not apply to some patterns in Divider widget ([#12501](https://github.com/elementor/elementor/issues/12501))
  987. * Fix: Users with "Access to edit content only" aren't able to access the Editor ([#12521](https://github.com/elementor/elementor/issues/12521))
  988. * Fix: If the default page layout is set to "Canvas" Headers and Footers cannot be edited ([#12509](https://github.com/elementor/elementor/issues/12509))
  989. * Fix: Global Color and Fonts that were deleted might cause style removal from the same element
  990. * Fix: Opacity indication is missing in the Global Color control dropdown and in the creation prompt
  991. * Fix: Wrong placement of "Add New" section in a Popup when using Optimized DOM mode
  992. * Fix: "Edit with Elementor" button is not in the correct location
  993. * Fix: Global Dropdown scrollbar has redundant border in Chromium based browsers
  994. * Fix: Entrance animation isn't working on edge cases in Tabs widget
  995. = 3.0.9 - 2020-09-17 =
  996. * Fix: Kit settings get deleted when modifying the Site Title or Tagline in WordPress Settings and Customizer screens ([#12540](https://github.com/elementor/elementor/issues/12540), [#12538](https://github.com/elementor/elementor/issues/12538), [#12562](https://github.com/elementor/elementor/issues/12562))
  997. = 3.0.8.1 - 2020-09-14 =
  998. * Fix: Reverted Shape Dividers are in front other elements in Chrome 85 fix due to display glitches ([#12393](https://github.com/elementor/elementor/issues/12393))
  999. * Fix: Auto Columns control setting causes layout to be displayed in one row in a Social icons ([Topic](https://wordpress.org/support/topic/sloppy-updates/), [#12519](https://github.com/elementor/elementor/issues/12519))
  1000. = 3.0.8 - 2020-09-14 =
  1001. * Fix: Additional cases of Global Style inconsistencies in Editor and Frontend ([#12363](https://github.com/elementor/elementor/issues/12363))
  1002. * Fix: Edit with Elementor button is missing from the admin top bar in some cases since WordPress 5.4 ([#11728](https://github.com/elementor/elementor/issues/11728), [#12175](https://github.com/elementor/elementor/issues/12175))
  1003. * Fix: Unexpected columns view when Inner Section is muted ([#12376](https://github.com/elementor/elementor/issues/12376))
  1004. * Fix: Some Shape Dividers are in front other elements in Chrome 85 ([#12393](https://github.com/elementor/elementor/issues/12393))
  1005. * Fix: JS error `elementorCommon` is undefined ([#12323](https://github.com/elementor/elementor/issues/12323), Props [@shimondoodkin](https://github.com/shimondoodkin))
  1006. * Fix: Site description doesn't get updated from the 'Customizer' screen
  1007. * Fix: When Global values aren't available don't return an empty object
  1008. * Fix: Message After Submit RTL icon spacing glitch
  1009. * Fix: Select2 control dimensions adjustments
  1010. = 3.0.7 - 2020-09-09 =
  1011. * Fix: Additional cases of Global Style inconsistencies in Editor and Frontend ([#12363](https://github.com/elementor/elementor/issues/12363))
  1012. * Fix: Plugins conflict on non-admin login to the dashboard ([#12383](https://github.com/elementor/elementor/issues/12383), [#12388](https://github.com/elementor/elementor/issues/12388))
  1013. * Fix: PHP error undefined method `add_repeater_row` caused data updater issues and server overload ([#12305](https://github.com/elementor/elementor/issues/12305))
  1014. * Fix: Global Colors and Fonts not being saved when created in Site Settings ([#12272](https://github.com/elementor/elementor/issues/12272))
  1015. * Fix: Shared link is attached to post text in Twitter Share Button widget (Props [@LensDigitalUK](https://github.com/LensDigitalUK))
  1016. * Fix: "No route was found matching the URL and request method" error when using plain permalinks
  1017. * Fix: Site favicon that was set from WordPress customizer is missing in Site Identity screen
  1018. = 3.0.6 - 2020-09-06 =
  1019. * Tweak: Added dismiss button for data updater notices
  1020. * Fix: Global Colors and Fonts are missing on front-end ([#12363](https://github.com/elementor/elementor/issues/12363))
  1021. * Fix: Database update script causes unexpected errors ([#12305](https://github.com/elementor/elementor/issues/12305))
  1022. * Fix: Custom Breakpoints stopped working since v3.0 ([#12320](https://github.com/elementor/elementor/issues/12320))
  1023. * Fix: Shortcuts for Navigator is not correct ([#12365](https://github.com/elementor/elementor/issues/12365))
  1024. * Fix: Can't close a Navigator since v3.0 ([#11836](https://github.com/elementor/elementor/issues/11836))
  1025. * Fix: Select field dropdown caret visibility issue in edge cases in Form widget ([#12053](https://github.com/elementor/elementor/issues/12053))
  1026. * Fix: Missing iFrame `title` attribute in Google Maps widget ([#9955](https://github.com/elementor/elementor/issues/9955))
  1027. * Fix: Missing default size unit selection in default Global Font properties `font-size` and `line-height` controls
  1028. * Fix: Toggle widget title style missing in Editor
  1029. * Fix: Exiting Site Settings menu after accessing it from "Manage Global Fonts/Colors" Global dropdown menu throws a JS error
  1030. = 3.0.5 - 2020-08-31 =
  1031. * Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled ([#12299](https://github.com/elementor/elementor/issues/12299), [#12275](https://github.com/elementor/elementor/issues/12275))
  1032. * Fix: Elements behave unexpectedly in the Editor when a custom repeater control is added to Column and Section elements ([#12275](https://github.com/elementor/elementor/issues/12275), [#12242](https://github.com/elementor/elementor/issues/12242))
  1033. * Fix: Glitches in migration script for Gap Between Widgets global setting ([#12298](https://github.com/elementor/elementor/issues/12298))
  1034. * Fix: Console error `elementorCommon is undefined` (Props [@shimondoodkin](https://github.com/shimondoodkin))
  1035. * Fix: Missing translation string for 'color_picker' in the Color Picker title
  1036. * Fix: Revisions won't get updated to the correct one
  1037. = 3.0.4 - 2020-08-30 =
  1038. * Tweak: Added Skype and Viber to the allowed URI protocols ([#11619](https://github.com/elementor/elementor/issues/11619))
  1039. * Tweak: Replaced WordPress "Learn More" links with dynamic links for better control over time ([#12312](https://github.com/elementor/elementor/issues/12312))
  1040. * Fix: Global Colors and Fonts inconsistencies between Editor and Frontend ([#12245](https://github.com/elementor/elementor/issues/12245), [#12235](https://github.com/elementor/elementor/issues/12235), [#12303](https://github.com/elementor/elementor/issues/12303), [#12249](https://github.com/elementor/elementor/issues/12249))
  1041. * Fix: Global dropdown is not available for all users
  1042. * Fix: Removed unused strings
  1043. = 3.0.3 - 2020-08-27 =
  1044. * Tweak: Added option to re-migrate Global Colors and Fonts from earlier versions
  1045. * Fix: Repeater controls doesn't work in some edge cases
  1046. * Fix: Load Theme Builder with relevant UI theme
  1047. * Fix: Dialog texts are not center aligned in Theme Builder
  1048. * Fix: Changes are not reflecting on frontend when CSS Print Method is set to Internal Embedding
  1049. * Fix: Icon List widget does not use render attribute (Props [@ibndawood](https://github.com/ibndawood))
  1050. = 3.0.2 - 2020-08-26 =
  1051. * Tweak: Added Select2 And File Import Components to Theme Builder application
  1052. * Tweak: Added default values as placeholders to the number inputs in the Breakpoints settings section
  1053. * Tweak: Minor UI tweaks to Globals dropdown
  1054. * Tweak: Updated video tutorials in Theme Builder
  1055. * Fix: Column & Section Elements fires `elementor/element/after_add_attributes` early ([#12185](https://github.com/elementor/elementor/issues/12185), Props [@ibndawood](https://github.com/ibndawood))
  1056. * Fix: `hexdec()` returns a deprecation notice ([#12161](https://github.com/elementor/elementor/issues/12161))
  1057. * Fix: Repeater controls issue after the moving to `container.repeaters` ([#12239](https://github.com/elementor/elementor/issues/12239), [#12221](https://github.com/elementor/elementor/issues/12221))
  1058. * Fix: Column Widget Space is not working when DOM Improvement is disabled ([#12256](https://github.com/elementor/elementor/issues/12256), [Topic](https://wordpress.org/support/topic/widgets-space-doesnt-work-after-updating-to-3-0/))
  1059. * Fix: Resetting a style throws JS errors
  1060. * Fix: Repeater controls backwards compatibility
  1061. * Fix: Global Color dropdown shows Primary as marked when a custom value is added
  1062. * Fix: Adding new Global Fonts won't be added to the dropdown list until page reloads
  1063. * Fix: Clicking on the Theme Builder Logo reopens it
  1064. * Fix: Finder gets loaded in preview iframes
  1065. = 3.0.1 - 2020-08-25 =
  1066. * Tweak: Changed "Exit to Dashboard" and "View Page" panel menu links to use `<a>` tag
  1067. * Fix: `set-error-handler` conflict with 3rd party addons that uses REST-API ([#12219](https://github.com/elementor/elementor/issues/12219))
  1068. * Fix: Conflict between responsive options and the Navigator "Hide" option ([#12123](https://github.com/elementor/elementor/issues/12123))
  1069. * Fix: Radio inputs layout breaks when using Multi-Step Form
  1070. * Fix: Global typography popover glitch in RTL websites
  1071. = 3.0.0 - 2020-08-23 =
  1072. * New: Introducing Site Settings - manage your entire site within the Editor
  1073. * New: Meet Global Fonts - the smartest way to manage your text styles ([#1553](https://github.com/elementor/elementor/issues/1553), [#1863](https://github.com/elementor/elementor/issues/1863))
  1074. * New: Meet Global Colors - manage your site colors more consistently ([#1553](https://github.com/elementor/elementor/issues/1553), [#1324](https://github.com/elementor/elementor/issues/1324))
  1075. * Tweak: Improved Elementor's frontend dynamic CSS rendering performance significantly ([#8053](https://github.com/elementor/elementor/issues/8053))
  1076. * Tweak: Removed `.elementor-inner`, `.elementor-row` and `.elementor-column-wrap` from DOM output to improve performance (#7351, #7817, Developers Blog Post - https://developers.elementor.com/dom-improvements-ahead-html-wrappers-removal-from-v3-0/)
  1077. * Tweak: Added an option to set columns in Social Icons widget ([#11295](https://github.com/elementor/elementor/issues/11295))
  1078. * Tweak: Added Default Page Layout to Global Layout Settings ([#4925](https://github.com/elementor/elementor/issues/4925))
  1079. * Tweak: Made 'z-index' control responsive in widgets Advanced tab ([#10918](https://github.com/elementor/elementor/issues/10918))
  1080. * Tweak: Added `rem` unit support for Padding and Margins controls ([#2810](https://github.com/elementor/elementor/issues/2810))
  1081. * Tweak: Added control for setting link width in Icon List widget ([#11945](https://github.com/elementor/elementor/issues/11945))
  1082. * Tweak: Added image Border Radius control to Image Box widget ([#9301](https://github.com/elementor/elementor/issues/9301))
  1083. * Tweak: Added more Google Fonts subsets ([#1630](https://github.com/elementor/elementor/issues/1630), [#1915](https://github.com/elementor/elementor/issues/1915), [#8186](https://github.com/elementor/elementor/issues/8186), Props [@andrejm](https://github.com/andrejm))
  1084. * Tweak: Improved Lightbox accessibility (Props [@ramiy](https://github.com/ramiy))
  1085. * Tweak: Added "Height" & "Object Fit" controls to Image Widget ([#10962](https://github.com/elementor/elementor/issues/10962), Props [@ramiy](https://github.com/ramiy))
  1086. * Tweak: Added a filter for allowing adding Google Fonts subsets (Props [@andrejm](https://github.com/andrejm))
  1087. * Tweak: Changed Elementor grid to work with CSS Variables ([Developers Blog Post](https://developers.elementor.com/elementor-dropping-support-ie/))
  1088. * Tweak: Updated `eicons` library to `v5.9.1`
  1089. * Tweak: Updated `e-gallery` library to `v1.2.0`
  1090. * Tweak: Updated Dialog library to `v4.8.1`
  1091. * Tweak: Updated Google Fonts list to 07/2020
  1092. * Tweak: Added lazyload to Lightbox slideshow images
  1093. * Tweak: Removed unused `elementor-edit-area-preview` class
  1094. * Tweak: Adding support to Vimeo external links structure
  1095. * Tweak: Improved Masonry layout mechanism in Gallery widget
  1096. * Tweak: Allow using Repeater control in page settings
  1097. * Tweak: Save all Global settings to the Kit entity
  1098. * Tweak: Converted schemes to Global variables
  1099. * Tweak: Updated WeChat and Weibo social networks colors in Social Icons widget
  1100. * Tweak: Added font-family property to text-area control for better readability
  1101. * Tweak: Migrated Elementor Style settings from WP dashboard to the Global Settings menu
  1102. * Tweak: Added real-time JS handling to prevent redundant renders in Image Carousel widget and Background Slideshow
  1103. * Tweak: Moved "Stretch Section" control to the end of layout settings in Section element
  1104. * Tweak: Color tweaks to editor panel elements
  1105. * Tweak: Minor UI improvements in the editor panel
  1106. * Tweak: Added backup warning before major version plugin upgrade
  1107. * Tweak: Improved dialog a11y to support more accessible lightbox close button
  1108. * Tweak: Added infrastructure support for the new Theme Builder
  1109. * Tweak: Added an option to set the mobile browser header color in supported devices
  1110. * Tweak: Changed panel behavior when switching document to prevent laggy behavior
  1111. * Tweak: Added Improved DOM Output option in Elementor settings to allow legacy mode of HTML DOM prior to v3.0
  1112. * Tweak: Removed v2.9 reference from the Dynamic promotions
  1113. * Fix: Image block alignment broken by Elementor general figure styling ([#11906](https://github.com/elementor/elementor/issues/11906), [#9259](https://github.com/elementor/elementor/issues/9259), [#7331](https://github.com/elementor/elementor/issues/7331))
  1114. * Fix: Elementor posts aren't properly imported with WordPress Importer v0.7 ([#11466](https://github.com/elementor/elementor/issues/11466), [#10744](https://github.com/elementor/elementor/issues/10744), [#11927](https://github.com/elementor/elementor/issues/11927))
  1115. * Fix: Divider can't use `EM` font-size unit in Divider widget ([#11352](https://github.com/elementor/elementor/issues/11352))
  1116. * Fix: Theme Style overrides Icon List items typography values when list items are links in Icon List widget ([#12021](https://github.com/elementor/elementor/issues/12021))
  1117. * Fix: Responsive glitch in Range control ([#11233](https://github.com/elementor/elementor/issues/11233))
  1118. * Fix: Multiple repeater controls in the same panel causes JS errors ([#11523](https://github.com/elementor/elementor/issues/11523))
  1119. * Fix: Multiple repeater control types in same panel glitches
  1120. * Fix: Dark mode UI glitches in Display Conditions modal
  1121. * Fix: The wrong video being opened in Media Carousel widget
  1122. * Fix: Dark mode UI glitch in Display conditions modal
  1123. * Fix: Connect issues when using non-latin character domains
  1124. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v3-0-planned-deprecations/)
  1125. = 2.9.14 - 2020-07-21 =
  1126. * Tweak: Added compatibility with WordPress v5.5 ([#11820](https://github.com/elementor/elementor/issues/11820), [#11830](https://github.com/elementor/elementor/issues/11830))
  1127. * Fix: Elementor posts aren't properly imported with WordPress Importer v0.7 ([#11466](https://github.com/elementor/elementor/issues/11466), [#10744](https://github.com/elementor/elementor/issues/10744))
  1128. * Fix: Added sanitization to post titles in WordPress dashboard for better security
  1129. = 2.9.13 - 2020-06-23 =
  1130. * Fix: Duplicated Hidden type form fields inherited required attribute in Form widget ([#11578](https://github.com/elementor/elementor/issues/11578))
  1131. * Fix: Select2 control width glitch
  1132. = 2.9.12 - 2020-06-14 =
  1133. * Fix: Dynamic default value not working in Form widget ([#11578](https://github.com/elementor/elementor/issues/11578), [#11609](https://github.com/elementor/elementor/issues/11609))
  1134. * Fix: Dark mode glitches in Form Step items ([#11579](https://github.com/elementor/elementor/issues/11579))
  1135. * Fix: Unfiltered files upload not working when enabled from WordPress dashboard (Props [@jrutheiser](https://github.com/jrutheiser))
  1136. * Fix: File upload control has text cursor instead of pointer cursor
  1137. * Fix: Dark mode glitches in File upload control
  1138. * Fix: Clear icon dark mode glitch in the widgets search box
  1139. = 2.9.11 - 2020-06-02 =
  1140. * Fix: Several URI protocols removed from links ([#11518](https://github.com/elementor/elementor/issues/11518))
  1141. = 2.9.10 - 2020-06-01 =
  1142. * Tweak: Updated `eicons` library to v5.7.0
  1143. * Tweak: Added infrastructure improvements to Repeater control to support upcoming versions
  1144. * Fix: Popup action links triggers 404 error ([#11104](https://github.com/elementor/elementor/issues/11104))
  1145. * Fix: Removed source map comment so browsers don't look for source map in Swiper library ([#10764](https://github.com/elementor/elementor/issues/10764))
  1146. * Fix: Elementor posts aren't properly imported with WordPress Importer v0.7 ([#11466](https://github.com/elementor/elementor/issues/11466), [#10744](https://github.com/elementor/elementor/issues/10744))
  1147. * Fix: Theme Style overrides link settings in some cases ([#11462](https://github.com/elementor/elementor/issues/11462))
  1148. * Fix: UI glitch in Media controls
  1149. * Fix: Hardened sanitization in Custom Link Attributes and in URL control to avoid security issues
  1150. = 2.9.9 - 2020-05-24 =
  1151. * Tweak: Added 'Learn More' link to URL Custom Attributes Description
  1152. * Tweak: Added real-time JS preview handling in Image Carousel widget
  1153. * Tweak: Added File upload control UI
  1154. * Tweak: Added support for processing Envato Template Kit ZIP files
  1155. * Tweak: Allow disabling a repeater item sorting option by adding a class
  1156. * Tweak: Adjusted CSS selectors to be more generic in Forms
  1157. * Tweak: Updated content in Getting Started screen
  1158. * Tweak: Added JSON files support to files upload handler
  1159. * Tweak: Changed SVG Uploads prompt message to Unfiltered Files
  1160. * Tweak: Added an option for repeater item to disable itself
  1161. * Tweak: Removed temporary code from Page Settings
  1162. * Tweak: Added infrastructure improvements to Repeater control to support upcoming versions
  1163. * Fix: Default line-height value in Heading widget is overriding line-height setting in Theme Style ([#10501](https://github.com/elementor/elementor/issues/10501), [#10649](https://github.com/elementor/elementor/issues/10649))
  1164. * Fix: Dynamic settings are not available in frontend JS in edge cases
  1165. * Fix: Connectivity issues in Connect module
  1166. * Fix: Removed source map comment so browsers don't look for source map in Swiper library ([#10764](https://github.com/elementor/elementor/issues/10764))
  1167. * Fix: Render style on repeater item change in Page Settings
  1168. * Fix: Added sanitization to Custom Link Attributes control to avoid security issue
  1169. * Fix: Added sanitization to URL control to avoid security issue
  1170. = 2.9.8 - 2020-04-21 =
  1171. * Tweak: Added `.webp` file extension support to Elementor Lightbox
  1172. * Fix: Added missing font-family for `elementor-button` class to avoid system font ([#11166](https://github.com/elementor/elementor/issues/11166))
  1173. * Fix: Site Part without any content has no height and not accessible in some cases
  1174. * Fix: PHP notice in Connect module
  1175. * Fix: Navigator resize action is not available in edge cases
  1176. * Fix: SVG sanitizer `href` attribute for better security
  1177. * Fix: Hardened user role that is allowed to upload unfiltered files for better security
  1178. = 2.9.7 - 2020-03-25 =
  1179. * Tweak: Added compatibility with WordPress v5.4 ([#10745](https://github.com/elementor/elementor/issues/10745))
  1180. * Tweak: Show Typography section to everyone in Section, Column and Inner Section elements ([#10592](https://github.com/elementor/elementor/issues/10592))
  1181. * Fix: Custom Attributes section missing in Advanced tab ([#10881](https://github.com/elementor/elementor/issues/10881))
  1182. * Fix: Title color & Typography settings are being overridden by Theme Style in Accordion and Toggle widget ([#10900](https://github.com/elementor/elementor/issues/10900))
  1183. * Fix: Merged "Play On Mobile" string for better i18n in Video widget (Props [@pedro-mendonca](https://github.com/pedro-mendonca), [#10315](https://github.com/elementor/elementor/issues/10315))
  1184. * Fix: Whatsapp share link does not escape HTML entities ([#10746](https://github.com/elementor/elementor/issues/10746))
  1185. * Fix: Invalid request error conflict with Yoast plugin and Share Buttons widget ([#10746](https://github.com/elementor/elementor/issues/10746))
  1186. * Fix: FontAwesome Pro icons not loading in edge cases
  1187. * Fix: Missing Dynamic indication in Range control ([#10835](https://github.com/elementor/elementor/issues/10835))
  1188. * Fix: Carousel spins multiple times when loading in Image Carousel widget
  1189. * Fix: Theme style overrides Lightbox Share links color
  1190. * Fix: Loading spinner placement glitch in URL control
  1191. * Fix: Missing separator control in Icon widget
  1192. * Fix: Dynamic Tags with the character “0” are not visible on frontend
  1193. * Fix: Dashboard menu UI glitch for non-Administrator role users
  1194. = 2.9.6 - 2020-03-12 =
  1195. * Fix: Removed redundant dynamic capabilities from all of color controls inside Group controls in Theme Style
  1196. * Fix: Global widget is clickable when editing Theme Style
  1197. * Fix: Dropcap not working immediately in Text Editor widget
  1198. * Security Fix: Enable Safe Mode only for `activate_plugins` capability
  1199. = 2.9.5 - 2020-03-09 =
  1200. * Tweak: Added new parameter to Swiper wrapper to limit breakpoint intervention ([#10525](https://github.com/elementor/elementor/issues/10525))
  1201. * Tweak: Updated E-Gallery library to v1.1.2
  1202. * Tweak: Show descriptive Pro Promotions only for Administrator role
  1203. * Fix: Inconsistent responsive display issue in the Editor when using Custom Breakpoints ([#10540](https://github.com/elementor/elementor/issues/10540))
  1204. * Fix: Editor not loading when the Library launches on load ([Topic](https://wordpress.org/support/topic/editor-broken-in-2-9-4/))
  1205. * Fix: Gallery Columns does not update immediately in the preview when in Masonry layout
  1206. * Fix: Navigator does not update according to the current site part being edited
  1207. * Fix: Hidden responsive indicator missing in editor
  1208. * Fix: Tabs widget title color not working on mobile
  1209. = 2.9.4 - 2020-03-04 =
  1210. * Tweak: Added support for Elementor Pro v2.9.0
  1211. * Tweak: Updated Swiper.js library to v5.3.6
  1212. * Tweak: Added version expected release date for Theme Style Custom CSS and Dynamic Color promotions
  1213. * Fix: Warning in `/base/controls-stack.php` when a 3rd party controls doesn’t have a default dynamic value ([#10578](https://github.com/elementor/elementor/issues/10578))
  1214. * Fix: Alignment issue on drag when not set to Infinite Loop in Image Carousel widget
  1215. * Fix: Title Color change both title and link color in Accordion widget
  1216. = 2.9.3 - 2020-02-26 =
  1217. * Tweak: Don't show the "Have a look" link after successful Theme Style publish
  1218. * Tweak: Show Database update notice only for users with `update_plugins` capability
  1219. * Tweak: Added Custom CSS promotion section in Theme Style
  1220. * Tweak: Added compatibility for Pro v2.9 features
  1221. * Fix: Warning in `/base/controls-stack.php` when a control doesn't have a dynamic capability ([#10578](https://github.com/elementor/elementor/issues/10578))
  1222. * Fix: Beta Tester sign up modal pops up multiple times after signing up
  1223. * Fix: `<a>` Links appear with `underline` text-decoration
  1224. * Fix: Shortcode doesn't render when exiting inline edit
  1225. * Fix: Whatsapp not sharing the link of the page in Share buttons widget
  1226. * Fix: Whatsapp share doesn't include line breaks between the page title and the URL in Share buttons widget
  1227. * Fix: Box Shadow doesn't display properly in Toggle widget
  1228. * Fix: Custom Link Attributes are not being applied in Icon Box widget
  1229. * Fix: Added sanitization to Custom Link Attributes control to avoid security issue (Props [@yzy9951](https://github.com/yzy9951))
  1230. = 2.9.2 - 2020-02-16 =
  1231. * Fix: Responsive issue when using Slides to Show control in carousel widgets ([#10540](https://github.com/elementor/elementor/issues/10540))
  1232. * Fix: Title and Description causes JS error in Lightbox in edge cases
  1233. = 2.9.1 - 2020-02-13 =
  1234. * Tweak: Added Native WordPress Gallery support for lightbox pagination
  1235. * Tweak: Updated eicons library to v5.6.2
  1236. * Fix: Popup builder not accessible when Pro plugin is active ([#10502](https://github.com/elementor/elementor/issues/10502))
  1237. * Fix: Pagination not working when one item is visible in carousel widgets ([#10508](https://github.com/elementor/elementor/issues/10508), [Topic](https://wordpress.org/support/topic/carrousel-is-blocked-with-version-2-9/))
  1238. * Fix: Empty panel after dragging a widget in edge cases
  1239. * Fix: Theme Style button being added in Theme Builder documents
  1240. * Fix: Google fonts enqueuing issue
  1241. * Fix: Preview mode not changing when dismissing the exit prompt
  1242. * Fix: Kit showing up in Finder results
  1243. * Fix: Missing preview icon in Finder
  1244. * Fix: Missing preview icon in Theme Builder footer
  1245. = 2.9.0 - 2020-02-10 =
  1246. * New: Introducing Theme Style - set your default HTML tags styling using Elementor ([#534](https://github.com/elementor/elementor/issues/534))
  1247. * New: Added Custom Link Attributes to Link Options to allow adding custom attributes to `<a>` tags ([#5716](https://github.com/elementor/elementor/issues/5716), [#3642](https://github.com/elementor/elementor/issues/3642), [#9225](https://github.com/elementor/elementor/issues/9225), [#9079](https://github.com/elementor/elementor/issues/9079))
  1248. * Tweak: Added Title & Description to Lightbox ([#9826](https://github.com/elementor/elementor/issues/9826), [#2502](https://github.com/elementor/elementor/issues/2502))
  1249. * Tweak: Added Full Screen option in Lightbox ([#5260](https://github.com/elementor/elementor/issues/5260))
  1250. * Tweak: Added direct sharing options in Lightbox ([#2502](https://github.com/elementor/elementor/issues/2502))
  1251. * Tweak: Added Zoom option in Lightbox ([#9399](https://github.com/elementor/elementor/issues/9399))
  1252. * Tweak: Moved `social-share.js` to Core instead of Pro ([Developers Blog Post](https://developers.elementor.com/migration-of-modules-to-core-in-2-9/))
  1253. * Tweak: Moved `link-actions.js` to Core instead of Pro and changed its name to `url-actions.js` ([Developers Blog Post](https://developers.elementor.com/migration-of-modules-to-core-in-2-9/))
  1254. * Tweak: Added dynamic capabilities to Title control in Toggle widget ([#10070](https://github.com/elementor/elementor/issues/10070))
  1255. * Tweak: Disabled autocomplete feature from the Color Picker ([#10030](https://github.com/elementor/elementor/issues/10030))
  1256. * Tweak: Added Mix social network to recommended tab in Social Icons widget ([#10099](https://github.com/elementor/elementor/issues/10099))
  1257. * Tweak: Removed StumbleUpon social network from recommended tab in Social Icons widget ([#10099](https://github.com/elementor/elementor/issues/10099))
  1258. * Tweak: Added `i18n` function to translation string in DB upgrades manager (Props [@ramiy](https://github.com/ramiy))
  1259. * Tweak: Added `vh` and `em` size units to Max Width control in Image widget ([#5376](https://github.com/elementor/elementor/issues/5376))
  1260. * Tweak: Added `vh` and `em` size units to Spacer widget
  1261. * Tweak: Exposed external API for Swiper instances ([Developers Blog Post](https://developers.elementor.com/expose-swiper-in-elementor/))
  1262. * Tweak: Updated Pickr library to v1.5.0
  1263. * Tweak: Updated Dialogs Manager library to v4.7.5
  1264. * Tweak: Added URL hash routing capability to Lightbox
  1265. * Tweak: Refactored panel controls UI
  1266. * Tweak: Updated Font Awesome library to v5.12.0
  1267. * Tweak: Converted `add_render_attributes` for custom links to `add_link_attributes()`
  1268. * Tweak: Added a mixin for `absolute-center` positioning
  1269. * Tweak: Updated `eicons` library to v5.6.1
  1270. * Tweak: Changed `eicon-zoom-in` icon to `eicon-zoom-in-bold` in Template Library
  1271. * Tweak: Allow background image and color being displayed in empty column
  1272. * Tweak: Converted `editor-base.js` to ES6
  1273. * Tweak: Added `featured_image` URL to frontend config
  1274. * Tweak: Made minor UI tweaks to "Recalc" button in System Info
  1275. * Tweak: Added inline editing capability to Progress Bar widget Title
  1276. * Tweak: Removed redundant display conditions from Drop Cap section in Text Editor widget
  1277. * Tweak: Remove redundant `label_block` parameters from control instances
  1278. * Tweak: Added 'alt' property when using SVG icons in Social Icons widget
  1279. * Tweak: Added translators comment explaining the `%s` placeholder in Video Provider control
  1280. * Tweak: Added Pro features descriptive promotions to Editor panel
  1281. * Tweak: Added Dynamic capabilities to be active by default in WYSIWYG Control
  1282. * Tweak: Changed the position of all panel tooltips to appear above the controls
  1283. * Tweak: Replaced nerd icons with new Elementor emojis
  1284. * Tweak: Added descriptive message suggesting backing up the Database before upgrading to Font Awesome 5
  1285. * Tweak: Changed panel arrow icon to chevron
  1286. * Tweak: Deprecated Typography section in Section & Column elements for users who didn't place values
  1287. * Fix: `playsinline` attribute missing when setting self-hosted video to Play on Mobile in Video widget ([#9892](https://github.com/elementor/elementor/issues/9892))
  1288. * Fix: Beta sign-up modal closes unexpectedly ([#10355](https://github.com/elementor/elementor/issues/10355))
  1289. * Fix: "Slides to Show" option doesn't work on Tablet view in Image Carousel widget ([#10227](https://github.com/elementor/elementor/issues/10227))
  1290. * Fix: Previous and Next buttons are not displaying on Safari in Media Carousel's Cube mode ([#9725](https://github.com/elementor/elementor/issues/9725))
  1291. * Fix: Form style being reset adding MailChimp/Getresponse action in Form widget ([#9313](https://github.com/elementor/elementor/issues/9313))
  1292. * Fix: Post Title and Archive Excerpt wrong values in edge cases
  1293. * Fix: Wrong `<select>` field width in "Add New" dialog
  1294. * Fix: Gap created by the "Add Media" button in Text Editor widget
  1295. * Fix: "Insert Template" library button glitch
  1296. * Fix: WordPress Media 'Image Details' fields are 100% width instead of contained
  1297. * Fix: Pause on hover can't be disabled in Image Carousel widget
  1298. * Fix: Aligned Dark UI Theme gradients in panel and library tabs
  1299. * Fix: Category Select2 dropdown stays above the view on scroll in Template Library modal
  1300. * Deprecated: See all deprecations to this version in our ([Developers Deprecations Post](https://developers.elementor.com/v2-9-0-planned-deprecations/))
  1301. = 2.8.5 - 2020-01-27 =
  1302. * Fix: Handle corrupted DB log
  1303. * Fix: Template inserted upside down in edge cases
  1304. * Fix: Added data sanitization on System Info
  1305. * Fix: Error when trying to edit widgets with `inline` Icons control before Font Awesome 5 migration
  1306. = 2.8.4 - 2020-01-19 =
  1307. * Tweak: Changed default color in Color Picker
  1308. * Fix: Curved edge with background color in Toggle widget ([#5156](https://github.com/elementor/elementor/issues/5156))
  1309. * Fix: Added sanitize data on create new template
  1310. * Fix: Inconsistent panel view when deleting all content
  1311. * Fix: Empty Typography control after Reset Style
  1312. * Fix: Inline sizing delay when position is set to Absolute/Fixed in Image widget
  1313. * Fix: Wrong sizing on undo/redo to Section element columns
  1314. = 2.8.3 - 2020-01-01 =
  1315. * Tweak: Improved accessibility to "Go Pro" menu item ([#9021](https://github.com/elementor/elementor/issues/9021))
  1316. * Tweak: Added new CLI command - User Connect
  1317. * Tweak: Updated Recommended Icons tab in Toggle and Accordion widgets
  1318. * Fix: Placement glitch when dragging a widget to a new section ([#9954](https://github.com/elementor/elementor/issues/9954))
  1319. * Fix: Controls popover closes when picking a color in it
  1320. * Fix: Dark mode style glitches in edge cases
  1321. * Fix: Correct calculation of usage data
  1322. * Fix: Pasting style of one Section to other changes the structure
  1323. * Fix: Long text overflow issue in Divider widget
  1324. * Fix: Scroll bars visible when not needed in Icon Library
  1325. = 2.8.2 - 2019-12-16 =
  1326. * Tweak: Improved hidden responsive elements visibility
  1327. * Fix: Autoplay not working in Image Carousel widget ([#9872](https://github.com/elementor/elementor/issues/9872))
  1328. * Fix: Logger fatal error on upgrade ([#9872](https://github.com/elementor/elementor/issues/9872))
  1329. * Fix: Negative custom shapes in Editor ([#9850](https://github.com/elementor/elementor/issues/9850))
  1330. * Fix: Render correct widget data in Global widgets
  1331. * Fix: `0` value in Dynamic Tags causes Undefined Index error
  1332. = 2.8.1 - 2019-12-11 =
  1333. * Fix: Style pasting issue on Columns ([#9811](https://github.com/elementor/elementor/issues/9811))
  1334. * Fix: Column duplication not working for Inner Section widget ([#9824](https://github.com/elementor/elementor/issues/9824))
  1335. * Fix: Redundant renders when changing colors in Color control
  1336. * Fix: Dark Mode glitches in WordPress widgets ([#9829](https://github.com/elementor/elementor/issues/9829))
  1337. * Fix: Repeater rows doesn't have `_id` in edge cases
  1338. * Fix: Connect issue for Multisite users
  1339. * Fix: Dynamic tag fallback does not handle '0' character
  1340. = 2.8.0 - 2019-12-09 =
  1341. * New: Introducing new Color Picker control with Saved Colors built-in ([#6968](https://github.com/elementor/elementor/issues/6968), [#8982](https://github.com/elementor/elementor/issues/8982), [Developers Blog Post](https://developers.elementor.com/elementor-2-8-new-color-picker/]))
  1342. * New: Introducing Dark Mode UI theme ([#9263](https://github.com/elementor/elementor/issues/9263), [#8249](https://github.com/elementor/elementor/issues/8249), [#9125](https://github.com/elementor/elementor/issues/9125))
  1343. * New: User Preferences section in Editor Panel menu
  1344. * Tweak: Better responsive visibility indication ([#8020](https://github.com/elementor/elementor/issues/8020), [#4775](https://github.com/elementor/elementor/issues/4775))
  1345. * Tweak: Added `background-size` and `background-position` controls to Background Slideshow ([#9199](https://github.com/elementor/elementor/issues/9199))
  1346. * Tweak: Removed Google+ network from "Recommended" tab in Social Icons widget ([#9393](https://github.com/elementor/elementor/issues/9393))
  1347. * Tweak: Replaced default Google+ network icon with YouTube icon in Social Icons widget
  1348. * Tweak: Added dynamic capabilities to alert widget ([#9436](https://github.com/elementor/elementor/issues/9436))
  1349. * Tweak: Added "Play on Mobile" option to allow iOS autoplay to Video widget ([#3442](https://github.com/elementor/elementor/issues/3442))
  1350. * Tweak: Added inline skin for Icon control
  1351. * Tweak: Added `elementor/settings/controls/checkbox_list_cpt/post_type_objects` filter to control over displayed CPT in WordPress Dashboard UI (Props [@sc0ttkclark](https://github.com/sc0ttkclark))
  1352. * Tweak: Moved "Editing Handles" and "Lightbox in editor" options to the new "Preferences" section
  1353. * Tweak: Added `playsinline` attribute to Vimeo and YouTube sources to allow autoplay on iOS devices in Background Video
  1354. * Tweak: Added Documents count to System Info
  1355. * Tweak: Added global utility function for adding link attributes in Button widget
  1356. * Tweak: Re-designed responsive mode switcher control
  1357. * Tweak: Re-designed alerts and notices in the Editor Panel
  1358. * Tweak: Improved styling of checkboxes and radio inputs
  1359. * Tweak: Changed "Custom Positioning" section label to "Positioning"
  1360. * Tweak: Allow access to Templates Library for connected users only
  1361. * Tweak: Changed icon control skin to "Inline" in Toggle and Accordion widgets
  1362. * Tweak: Added Icon Manager "Recommended" tab in Toggle and Accordion widgets
  1363. * Tweak: Changed all occurrences of `text-overflow: ellipsis` to a single `mixin`
  1364. * Tweak: Added "Pause On Interaction" option to Image Carousel widget
  1365. * Tweak: Updated `e-icons` library to v5.5.0
  1366. * Tweak: Updated `e-gallery` library to v1.1.0
  1367. * Tweak: Dropped Support for WP v4.9, now supporting WP v5.0+
  1368. * Tweak: Dropped delete revision option in Revisions Panel since WordPress v5.3 ([Topic](http://core.trac.wordpress.org/ticket/43709))
  1369. * Tweak: Added compatibility with WordPress v5.3
  1370. * Fix: Use CSS Flex to align and order button icon ([#561](https://github.com/elementor/elementor/issues/561))
  1371. * Fix: Remove Ninja Forms compatibility script which causes server issues ([#8267](https://github.com/elementor/elementor/issues/8267))
  1372. * Fix: Added `title` attribute to embedded iframes ([#9374](https://github.com/elementor/elementor/issues/9374), Props [@shipley-dcc](https://github.com/shipley-dcc))
  1373. * Fix: Reset style in a button doesn't work on colors ([#8454](https://github.com/elementor/elementor/issues/8454))
  1374. * Fix: No fallback when SVG file doesn't exist ([#9481](https://github.com/elementor/elementor/issues/9481))
  1375. * Fix: Custom shapes "negative" support fix ([#9761](https://github.com/elementor/elementor/issues/9761))
  1376. * Fix : Shapes SVG include PHP Parse Error If the uploaded SVG file contain `<?xml version="1.0" encoding="UTF-8"?>` ([#9693](https://github.com/elementor/elementor/issues/9693), Props [@MarieComet](https://github.com/MarieComet))
  1377. * Fix: Added better output escaping in the attributes for checkbox lists in Admin forms (Props [@MarieComet](https://github.com/MarieComet))
  1378. * Fix: Adding a link overrides the Title and Description colors in Testimonial widget
  1379. * Fix: Removed redundant Editor Panel Spacer in Image Carousel widget
  1380. * Fix: "Delete All Content" doesn't close current widget editing options
  1381. * Fix: Pause on hover option doesn't work in Image Carousel widget
  1382. * Fix: Limit transition duration in Ken Burns CSS only to `transform` property
  1383. * Fix: Recommended tab icons don't change when there's more than one `Icons` control per widget
  1384. * Fix: Hidden sticky section generates redundant scroll offset when using Anchors
  1385. * Fix: Inserting a saved section as a template uses the same `ID`
  1386. * Fix: Double rendering of elements in Editor
  1387. * Deprecated: See all deprecations to this version in our [Developers Deprecations Post](https://developers.elementor.com/v2-8-0-planned-deprecations/)
  1388. = 2.7.6 - 2019-12-08 =
  1389. * Fix: Transition Duration option not applying to elements background
  1390. * Fix: Hide Beta Testers signup form if the user already subscribed
  1391. * Fix: Added HTML escaping to `Admin` class and to System Info
  1392. = 2.7.5 - 2019-10-28 =
  1393. * Tweak: Changed the "Finder" icon in the Editor panel
  1394. * Fix: Added official color support for `linkedin-in` icon in Social Icons widget ([#9298](https://github.com/elementor/elementor/issues/9298))
  1395. * Fix: `Ctrl/CMD + Shift + L` not opening Library modal
  1396. * Fix: Clear Log button HTML shows in System Info Copy & Paste section
  1397. * Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Background Slideshow
  1398. = 2.7.4 - 2019-10-06 =
  1399. * Tweak: Improved filtering animation behavior in Gallery widget
  1400. * Fix: Icon custom colors being overridden by styling custom colors in Social Icons widget
  1401. * Fix: Added `SVG` custom color support for Social Icons widget
  1402. * Fix: Elements not being displayed when it has the value `0`
  1403. * Fix: Pagination glitch in image carousel widget
  1404. * Fix: Select2 throws JS console error when trying to unset a dropdown value in Templates modal
  1405. * Fix: Background Slideshow overrides the Columns' border-radius
  1406. * Fix: Tabs not working after previewing a template in Templates modal
  1407. = 2.7.3 - 2019-09-24 =
  1408. * Tweak: Updated E-gallery library to v1.0.1
  1409. * Fix: Images overlap issue in Image Carousel widget ([Topic](https://wordpress.org/support/topic/elementor-image-carousel-2/#post-11943476))
  1410. * Fix: Removed extra character in Divider widget ([#9102](https://github.com/elementor/elementor/issues/9102))
  1411. * Fix: Console error after resetting "Background Slideshow" gallery
  1412. * Fix: Popup templates not visible in My Templates tab on import action
  1413. * Fix: Panel spinner issue caused by 3rd party addons when activating Safe Mode
  1414. * Fix: Lightbox won't close on background click in Image widget
  1415. * Fix: "Need Help" hover UI glitch in RTL
  1416. * Fix: SVG icon missing in Icon List widget
  1417. = 2.7.2 - 2019-09-16 =
  1418. * Fix: Data updater stuck in site with large database ([Topic](https://wordpress.org/support/topic/the-elementor-data-updater-problems-continue/), [Topic](https://wordpress.org/support/topic/v2-7-not-stable/))
  1419. * Fix: Added backward compatibility for deprecated hooks in page settings ([#9060](https://github.com/elementor/elementor/issues/9060), [#9080](https://github.com/elementor/elementor/issues/9080))
  1420. * Fix: Added support for custom document in `autosave` ([#9070](https://github.com/elementor/elementor/issues/9070))
  1421. * Fix: Changed the default `slidesPerGroup` from 2 to 1 in Image Carousel widget
  1422. = 2.7.1 - 2019-09-10 =
  1423. * Fix: Self Hosted video lightbox closing when clicking on the video ([#8931](https://github.com/elementor/elementor/issues/8931))
  1424. * Fix: Downgrade from v2.7.0 causes 500 errors
  1425. * Fix: Vertical alignment issue in Safari browser ([#9034](https://github.com/elementor/elementor/issues/9034))
  1426. * Fix: `contains` and `!contains` control conditions ([#9043](https://github.com/elementor/elementor/issues/9043))
  1427. * Fix: Use background updater for v2.7 script task ([Topic](https://wordpress.org/support/topic/v2-7-not-stable/))
  1428. * Fix: Backwards compatibility for previous versions using Divider widget
  1429. = 2.7.0 - 2019-09-08 =
  1430. * New: Added background slideshow to Section, Column and Inner Section elements ([#2898](https://github.com/elementor/elementor/issues/2898), [#4022](https://github.com/elementor/elementor/issues/4022))
  1431. * New: Editor JS API to improve capabilities and stability ([Developers Blog Post](https://developers.elementor.com/elementor-2-7-new-editor-js-api-e/))
  1432. * New: Added additional divider styles to Divider widget ([#7418](https://github.com/elementor/elementor/issues/7418))
  1433. * Tweak: Background videos now support Vimeo as a source ([#1903](https://github.com/elementor/elementor/issues/1903))
  1434. * Tweak: Added the option to add Icon and Text to Divider widget ([#7418](https://github.com/elementor/elementor/issues/7418))
  1435. * Tweak: Converted all widgets JS handlers to ES6 classes ([Developers Blog Post](https://developers.elementor.com/building-a-simple-custom-widget-with-javascript/), [Developers Documentation](https://developers.elementor.com/creating-a-new-widget/adding-javascript-to-elementor-widgets/))
  1436. * Tweak: Added option to select the version you rollback to in "Version Control" tool
  1437. * Tweak: Use `swiper.js` instead of `slick.js` in Image Carousel widget ([Developers Blog Post](https://developers.elementor.com/elementor-2-7-moving-sliders-from-slick-to-swiper/))
  1438. * Tweak: Implemented virtual list render in Icons Library to improve performance and stability
  1439. * Tweak: Added support of `wp_body_open` in Canvas template
  1440. * Tweak: Editor Panel UI tweaks
  1441. * Tweak: Updated Gallery control UI
  1442. * Tweak: Moved structure control into section panel in Section element
  1443. * Tweak: Added option to allow background video to play on mobile devices if device support it
  1444. * Tweak: Added more post statuses to show in the Finder ([#8175](https://github.com/elementor/elementor/issues/8175))
  1445. * Tweak: Added `Space-around`, `Space-between` and `Space-evenly` to Vertical Align options in Section element
  1446. * Tweak: Added filter for additional styles by 3rd party plugins `elementor/divider/styles/additional_styles` to Divider widget
  1447. * Tweak: Removed "Need Help?" button from WP widgets
  1448. * Tweak: Updated `Eicons` library to v5.4.0
  1449. * Fix: Background video plays on mobile devices in some cases (#8782, [Developers Blog Post](https://developers.elementor.com/background-video-in-mobile-mode/))
  1450. * Fix: Icon List alignment issue ([#8539](https://github.com/elementor/elementor/issues/8539))
  1451. * Fix: Two clicks needed to start Vimeo videos with image overlay
  1452. * Fix: Init navigator only once when changing page template
  1453. * Fix: Added backwards compatibility for `Controls_Manager::add_tab()` and `\Elementor\Core\Settings\Manager::add_settings_manager()`
  1454. * Fix: Carousels navigation arrows causes horizontal scroll when setting to `Outside`
  1455. * Fix: Heading widget with the character "0" is not visible on frontend
  1456. * Deprecated: Removed old deprecated aliases ([Developers Blog Post](https://developers.elementor.com/v2-7-0-planned-deprecations/))
  1457. = 2.6.8 - 2019-08-07 =
  1458. * Tweak: Added SVG import/export support to Icons control
  1459. * Fix: Empty `caps` while checking user `caps` ([#8732](https://github.com/elementor/elementor/issues/8732))
  1460. * Fix: Rotate control not working in Icon widget responsive modes ([#8753](https://github.com/elementor/elementor/issues/8753))
  1461. * Fix: Counter widget start number greater than 999
  1462. * Fix: Avoid migrating old Icon value if new one exists on import
  1463. * Fix: Editor not being loaded when using an Icon from removed Icon Set
  1464. = 2.6.7 - 2019-07-30 =
  1465. * Tweak: Run `.htaccess` inspection only when needed
  1466. * Tweak: UI glitches in `select2` control
  1467. * Tweak: `get_style_depends` styles are now loaded in editor preview
  1468. * Fix: Avoid false-positive editor loading error ([#8706](https://github.com/elementor/elementor/issues/8706))
  1469. * Fix: Disable browser suggestions on panel elements search input ([#6581](https://github.com/elementor/elementor/issues/6581))
  1470. * Fix: Contributor role can view other contributors draft and pending posts when Elementor is installed ([#8689](https://github.com/elementor/elementor/issues/8689))
  1471. * Fix: Save changed before previewing a revision
  1472. = 2.6.6 - 2019-07-23 =
  1473. * Fix: WordPress editor is open by default ([#8628](https://github.com/elementor/elementor/issues/8628), [#8647](https://github.com/elementor/elementor/issues/8647))
  1474. * Fix: Icon spacing disappeared after upgrading to Font Awesome 5 ([#8609](https://github.com/elementor/elementor/issues/8609))
  1475. * Fix: Star icon appears instead of an unset icon in Icon Box widget after upgrading to Font Awesome 5 ([#8596](https://github.com/elementor/elementor/issues/8596))
  1476. * Fix: Empty icon library by Using JS files instead of JSON for icon lists
  1477. * Fix: `Preview Could Not be Loaded` message displayed if `$_SERVER['SERVER_SOFTWARE']` is empty
  1478. * Fix: Navigator Indicators RTL UI glitches
  1479. = 2.6.5 - 2019-07-18 =
  1480. * Fix: Reverted the changes in Section and Column Vertical Alignment control
  1481. = 2.6.4 - 2019-07-17 =
  1482. * Tweak: Added CSS variable for admin font family
  1483. * Tweak: Updated dialog library
  1484. * Tweak: Improved `.htaccess` error message in `Preview Could Not Be Loaded` message
  1485. * Fix: `Condition` and `Conditions` not working together ([#8233](https://github.com/elementor/elementor/issues/8233))
  1486. * Fix: Pages are always displayed in `draft` status ([#8510](https://github.com/elementor/elementor/issues/8510))
  1487. * Fix: Incorrect Absolute position dragging values in RTL ([#7719](https://github.com/elementor/elementor/issues/7719))
  1488. * Fix: SVG icon hover color in Button widget
  1489. = 2.6.3 - 2019-07-15 =
  1490. * Tweak: Improve Icon control preview color for better visibility ([#8530](https://github.com/elementor/elementor/issues/8530))
  1491. * Tweak: Cleaning all output buffering in order to enable Gzip
  1492. = 2.6.2 - 2019-07-14 =
  1493. * Tweak: Make sure activeTab exists in Icon library
  1494. * Fix: Star rating widget alignment is not responsive ([#8444](https://github.com/elementor/elementor/issues/8444))
  1495. * Fix: Temporarily reverted `application/json` content type to support various server configurations
  1496. * Fix: Progress Bar typography backward compatibility
  1497. * Fix: Missing `fas` icons in Social Icons widget
  1498. * Fix: Navigator Indicators tooltip location
  1499. * Fix: Added Icon List backward compatibility on template import
  1500. = 2.6.1 - 2019-07-10 =
  1501. * Tweak: Added responsive controls to Icon size and Icon rotation in Icon widget
  1502. * Fix: Preview Could Not Be Loaded `.htaccess` error if permalink structure not set
  1503. * Fix: Added backward compatibility for Icon control
  1504. * Fix: UI glitches in the global lightbox modal
  1505. = 2.6.0 - 2019-07-09 =
  1506. * New: Introducing Icon Manager - the new way to add icons into your page ([#110](https://github.com/elementor/elementor/issues/110))
  1507. * New: Introducing SVG file library ([#5570](https://github.com/elementor/elementor/issues/5570))
  1508. * New: Replaced Font Awesome 4 with Font Awesome 5 ([#4430](https://github.com/elementor/elementor/issues/4430))
  1509. * New: Added Help links to elements for better support flow
  1510. * New: Added Navigator indicators for Custom Position ([#2180](https://github.com/elementor/elementor/issues/2180))
  1511. * New: Introducing Deprecated Notice control for developers ([Development Doc](https://developers.elementor.com/elementor-controls/deprecated-notice-control/))
  1512. * Tweak: Added 9:16 Aspect ratio (vertical video) support for Video widget ([#7051](https://github.com/elementor/elementor/issues/7051))
  1513. * Tweak: Set pre-selected attachment when opening the media modal ([#7937](https://github.com/elementor/elementor/issues/7937))
  1514. * Tweak: Added more style options for Progress Bar widget ([#3413](https://github.com/elementor/elementor/issues/3413))
  1515. * Tweak: Added icon alignment option to icon list ([#8219](https://github.com/elementor/elementor/issues/8219))
  1516. * Tweak: Added option to hide columns in Navigator ([#7863](https://github.com/elementor/elementor/issues/7863))
  1517. * Tweak: Added vertical alignment option to Image Carousel ([#6963](https://github.com/elementor/elementor/issues/6963))
  1518. * Tweak: Added Responsive option for the Content Align in Column ([#2554](https://github.com/elementor/elementor/issues/2554))
  1519. * Tweak: Removed `Prevent Scroll` option from Google Maps widget which now defaults in the map origin ([#8244](https://github.com/elementor/elementor/issues/8244))
  1520. * Tweak: Reduce-motion accessibility support for CSS animation library ([#7968](https://github.com/elementor/elementor/issues/7968))
  1521. * Tweak: Added start & end time for self-hosted background video ([#7941](https://github.com/elementor/elementor/issues/7941))
  1522. * Tweak: Added Play once option for background video ([#5129](https://github.com/elementor/elementor/issues/5129))
  1523. * Tweak: Added the `playsinline` attribute to autoplay background video on iOS ([#8198](https://github.com/elementor/elementor/issues/8198))
  1524. * Tweak: Added `text-shadow` option to Button widget ([#7317](https://github.com/elementor/elementor/issues/7317))
  1525. * Tweak: Set `$fonts_to_enqueue` as public to allow manual enqueue of fonts ([#7622](https://github.com/elementor/elementor/issues/7622))
  1526. * Tweak: Show dashboard notices for admin role only ([#7304](https://github.com/elementor/elementor/issues/7304))
  1527. * Tweak: Added Viber icon for Social Icons widget ([#4430](https://github.com/elementor/elementor/issues/4430))
  1528. * Tweak: Added dynamic capabilities to link control in Social Icons widget ([#8097](https://github.com/elementor/elementor/issues/8097))
  1529. * Tweak: Added option to pick custom colors per icon in Social Icons widget ([#4430](https://github.com/elementor/elementor/issues/4430))
  1530. * Tweak: Added default background color to Social Icons widget
  1531. * Tweak: Added opt-in form to Elementor updates for beta testers
  1532. * Tweak: Updated E-icons library to v5.3.2
  1533. * Tweak: Removed all Font Awesome 4 dependencies
  1534. * Tweak: Clear 3rd party cache plugins on every change in Maintenance Mode
  1535. * Tweak: Using `application/json` content type in order to avoid double zipping by the server to reduce load panel errors
  1536. * Tweak: Added control to support Exit Animations
  1537. * Tweak: Added editor notices bar for admin role only
  1538. * Tweak: Moved elements PHP handles to JS - resolves double Editing Handles in the Post Content widget
  1539. * Tweak: Added custom messages for "Preview could not be loaded" state
  1540. * Tweak: Added focus state emphasis to Dimensions control
  1541. * Tweak: Redesigned Media control
  1542. * Tweak: Use `wp_register_style` to allow widgets to enqueue icon styles
  1543. * Fix: Open the correct video when you have multiple images with the same video link in the same Media Carousel ([#8047](https://github.com/elementor/elementor/issues/8047))
  1544. * Fix: Added escaping in the template type ([#8435](https://github.com/elementor/elementor/issues/8435))
  1545. * Fix: Compression encoding for `gzip` to `brotli` conversions (Props [@pingram3541](https://github.com/pingram3541))
  1546. * Fix: Vimeo video lightbox is not playing automatically
  1547. * Fix: Backslash was removed from Custom CSS in page settings
  1548. * Fix: Set LTR direction only to `input` and `textarea` in RTL view
  1549. * Fix: Color Picker UI glitches in RTL view
  1550. * Fix: Avoid adding CSS for the first post in archive pages
  1551. = 2.5.16 - 2019-05-28 =
  1552. * Tweak: Added `reduce-motion` accessibility support for CSS animation library ([#7968](https://github.com/elementor/elementor/issues/7968), Props [@drawcard](https://github.com/drawcard))
  1553. * Fix: Tabs Widget compatibility for IE ([#8123](https://github.com/elementor/elementor/issues/8123))
  1554. * Fix: Admin dashboard dialog button UI glitch
  1555. = 2.5.15 - 2019-05-07 =
  1556. * Fix: Param type in doc block is partial ([#7988](https://github.com/elementor/elementor/issues/7988))
  1557. * Fix: Paste Style changes widget title in Navigator ([#7931](https://github.com/elementor/elementor/issues/7931))
  1558. = 2.5.14 - 2019-04-16 =
  1559. * Tweak: Remove default values on update to avoid 413 error ([#7842](https://github.com/elementor/elementor/issues/7842))
  1560. * Fix: Load minified `common-modules.js` & `editor-modules.js` instead of full version
  1561. = 2.5.13 - 2019-04-10 =
  1562. * Fix: Resize viewport not working properly ([#7795](https://github.com/elementor/elementor/issues/7795), [Topic](https://wordpress.org/support/topic/width-is-not-responding-automatically/), [Topic](https://wordpress.org/support/topic/stretch-section-problem/))
  1563. * Fix: Remove Shape Divider in the editor if set to `None`
  1564. = 2.5.12 - 2019-04-08 =
  1565. * Fix: DB updates process not running in edge cases ([#7725](https://github.com/elementor/elementor/issues/7725))
  1566. * Fix: Column width issue after Column Gap value changed ([#7718](https://github.com/elementor/elementor/issues/7718))
  1567. * Fix: Load minified `frontend-modules.js` instead of full version ([#7082](https://github.com/elementor/elementor/issues/7082))
  1568. * Fix: Removed source map reference from minified versions of JS files ([#7082](https://github.com/elementor/elementor/issues/7082))
  1569. * Fix: Missing section handles while using `overflow: hidden` option
  1570. * Fix: Removed condition from content style in Accordion widget
  1571. * Fix: Dialogs close button in RTL layout
  1572. * Fix: Self-hosted background video resize issue
  1573. * Fix: Dynamic Tag dropdown in RTL
  1574. * Fix: Color picker UI glitch
  1575. = 2.5.11 - 2019-03-31 =
  1576. * Tweak: Removed duplicated grid style from frontend.css
  1577. * Fix: Document settings not saving ([#7629](https://github.com/elementor/elementor/issues/7629))
  1578. * Fix: Date-Time control triggering unnecessary `edit` event
  1579. = 2.5.10 - 2019-03-26 =
  1580. * Fix: Preview for static homepage ([#7440](https://github.com/elementor/elementor/issues/7440))
  1581. * Fix: Added compatibility for Gutenberg plugin v5.3.0+ ([#7557](https://github.com/elementor/elementor/issues/7557))
  1582. * Fix: Slider control not setting correct position on Undo/Redo shortcuts
  1583. * Fix: Duplicated shape divider issue in editor view
  1584. = 2.5.9 - 2019-03-18 =
  1585. * Tweak: Modal style improvements
  1586. * Tweak: Added preview debug link to "Preview could not be loaded" message
  1587. * Fix: First section delete action not saving ([#7477](https://github.com/elementor/elementor/issues/7477))
  1588. * Fix: Compatibility issue with 3rd party plugins ([#7467](https://github.com/elementor/elementor/issues/7467))
  1589. = 2.5.8 - 2019-03-15 =
  1590. * Fix: Restore `wp_localize_script` for Gutenberg editor
  1591. = 2.5.7 - 2019-03-14 =
  1592. * Fix: changed `ElementorGutenbergSettings` print order ([#7457](https://github.com/elementor/elementor/issues/7457))
  1593. = 2.5.6 - 2019-03-14 =
  1594. * Tweak: Minor UI improvement in Slider Control
  1595. * Tweak: Added support for range handles in Slider Control
  1596. * Fix: Stretch Inner Section in the editor ([#7430](https://github.com/elementor/elementor/issues/7430))
  1597. * Fix: Ensure print order of Elementor config JS variables ([#7443](https://github.com/elementor/elementor/issues/7443))
  1598. * Fix: Inline elements not working on new pages ([#7433](https://github.com/elementor/elementor/issues/7433))
  1599. * Fix: Removed media `id` when attachment is missing
  1600. = 2.5.5 - 2019-03-11 =
  1601. * Tweak: Support gzipped Elementor Ajax data when GZIP is enabled
  1602. * Tweak: Added labels and scales to Slider control
  1603. * Fix: Device mode detection in IE and Edge browser ([#7356](https://github.com/elementor/elementor/issues/7356))
  1604. * Fix: Positioning issue while dragging inline text widgets
  1605. * Fix: Empty widget calculation according to the new column flexbox model
  1606. = 2.5.4 - 2019-03-10 =
  1607. * Tweak: Added flexbox notice dialog
  1608. * Fix: Backward compatibility for flexbox property ([#7366](https://github.com/elementor/elementor/issues/7366))
  1609. * Fix: Allow `None` value for Entrance Animation control ([#7355](https://github.com/elementor/elementor/issues/7355))
  1610. * Fix: Device mode detection in IE and Edge browser ([#7356](https://github.com/elementor/elementor/issues/7356))
  1611. * Fix: Revert self hosted video background fix ([#7374](https://github.com/elementor/elementor/issues/7374))
  1612. * Fix: Removed Delimiter parameter form `ucwords` for older PHP compatibility
  1613. * Fix: Slider control returns wrong value
  1614. * Fix: Slider control for RTL
  1615. = 2.5.3 - 2019-03-06 =
  1616. * Tweak: Reduced Editor memory usage by moving common controls injection to the frontend ([#7308](https://github.com/elementor/elementor/issues/7308))
  1617. * Tweak: Moved sync library from POST to GET method
  1618. * Fix: `ucwords` support for older php versions ([#7327](https://github.com/elementor/elementor/issues/7327), [#7310](https://github.com/elementor/elementor/issues/7310))
  1619. * Fix: Background self hosted videos responsive
  1620. * Fix: Group controls `conditions` support
  1621. = 2.5.2 - 2019-03-05 =
  1622. * Fix: Custom space between widgets override ([#7309](https://github.com/elementor/elementor/issues/7309))
  1623. * Fix: Changed the default width of Absolute & Fixed position widget ([#7311](https://github.com/elementor/elementor/issues/7311))
  1624. * **Note: This fix might affect previous custom positioning settings, if you have previously used position absolute or position fixed, please review your site.**
  1625. = 2.5.1 - 2019-03-04 =
  1626. * Fix: Inline Width (auto) not working ([#7293](https://github.com/elementor/elementor/issues/7293))
  1627. = 2.5.0 - 2019-03-04 =
  1628. * New: Added Position Absolute & Position Fixed for widgets ([#5568](https://github.com/elementor/elementor/issues/5568))
  1629. * New: Added inline & custom width options to place widgets side by side without columns ([#4960](https://github.com/elementor/elementor/issues/4960))
  1630. * New: Added responsive options for Column ([#2965](https://github.com/elementor/elementor/issues/2965), [#6898](https://github.com/elementor/elementor/issues/7104), Props [@wayheming](https://github.com/wayheming))
  1631. * New: Added Columns for Text Editor widget ([#7104](https://github.com/elementor/elementor/issues/7104))
  1632. * New: Added `space-between`, `space-around` & `space-evenly` for Vertical Alignment in Column ([#5083](https://github.com/elementor/elementor/issues/5083))
  1633. * New: Added Horizontal Alignment in Column for inline widget
  1634. * New: Added responsive capabilities for Entrance Animation ([#1639](https://github.com/elementor/elementor/issues/1639))
  1635. * New: Added `elementor/template/viewport_tag` filter hook to Meta Viewport tag ([#7043](https://github.com/elementor/elementor/issues/7043))
  1636. * Tweak: Improved editor loading time and performance by ~50%
  1637. * Tweak: Remember last editing tab per element in the editor panel for better workflow ([#7087](https://github.com/elementor/elementor/issues/7087))
  1638. * Tweak: Added text shadow & background color controls for caption in Image widget (Props [@ramiy](https://github.com/ramiy))
  1639. * Tweak: Added access to super admin role in Maintenance Mode (Props [@GermanKrutov](https://github.com/GermanKrutov))
  1640. * Tweak: Added vw unit support for Typography size control
  1641. * Tweak: Added vw unit support for Custom Min. Height control in section
  1642. * Tweak: Added overflow option for section
  1643. * Tweak: Renamed `Content Position` control to `Vertical Align` in column layout
  1644. * Tweak: Renamed `Scrolling Effects` section to `Motion Effects`
  1645. * Tweak: Added Dynamic capabilities to Inner Section CSS class and CSS ID ([#6779](https://github.com/elementor/elementor/issues/6779))
  1646. * Tweak: Added Dynamic capabilities to Section CSS class and CSS ID ([#6779](https://github.com/elementor/elementor/issues/6779))
  1647. * Tweak: Added Dynamic capabilities all widgets CSS class and CSS ID ([#6779](https://github.com/elementor/elementor/issues/6779))
  1648. * Tweak: Added Dynamic capabilities to Button CSS ID ([#6779](https://github.com/elementor/elementor/issues/6779))
  1649. * Fix: Separator inside Repeater control ([#6851](https://github.com/elementor/elementor/issues/6851))
  1650. * Fix: Selectors not working in dynamic tags in edge cases (Props [@crazypsycho](https://github.com/crazypsycho))
  1651. * Fix: Entrance animations glitches ([#6945](https://github.com/elementor/elementor/issues/6945))
  1652. * Fix: Library "Blocks" tab empty
  1653. * Fix: Custom shape dividers not loading in editor ([#6550](https://github.com/elementor/elementor/issues/6550))
  1654. * Fix: WP-CLI Flush CSS command glitch in multisite ([#7190](https://github.com/elementor/elementor/issues/7190))
  1655. * Fix: PHP 7.3 Compatibility when saving settings ([#6890](https://github.com/elementor/elementor/issues/6890))
  1656. = 2.4.7 - 2019-02-18 =
  1657. * Fix: Incorrect device mode detection in Safari ([#7036](https://github.com/elementor/elementor/issues/7036))
  1658. * Fix: Elementor dashboard templates URL corrupted links in edge cases
  1659. * Fix: Sticky offset handling for menu anchor
  1660. * Fix: Avoid WP admin bar handling errors
  1661. = 2.4.6 - 2019-02-11 =
  1662. * Tweak: Use `<a>` for editor panel links ([#6767](https://github.com/elementor/elementor/issues/6767), [#7025](https://github.com/elementor/elementor/issues/7025))
  1663. * Fix: FireFox glitch in the color picker ([#6968](https://github.com/elementor/elementor/issues/6968))
  1664. * Fix: Horizontal scroll in Icon List widget ([#6558](https://github.com/elementor/elementor/issues/6558))
  1665. * Fix: PHP notice when user has no capabilities ([#6936](https://github.com/elementor/elementor/issues/6936))
  1666. * Fix: "Prevent Scroll" in popup options didn't work in edge cases
  1667. = 2.4.5 - 2019-01-30 =
  1668. * Tweak: Updated Eicons v4.2.0
  1669. * Fix: Control conditions not working for toggle popover ([#6780](https://github.com/elementor/elementor/issues/6780))
  1670. * Fix: URLs with hash in admin cause JS error ([#6902](https://github.com/elementor/elementor/issues/6902))
  1671. * Fix: Wrong section structure in the panel
  1672. = 2.4.4 - 2019-01-24 =
  1673. * Tweak: Added 1:1 aspect ratio to Video widget
  1674. * Tweak: Added ability to add condition/s for tabs control wrapper ([#6830](https://github.com/elementor/elementor/issues/6830))
  1675. * Fix: Template search with no categories ([#6810](https://github.com/elementor/elementor/issues/6810))
  1676. * Fix: Make sure browser has access to `localStorage`
  1677. * Fix: Removed Finder from the Customizer
  1678. * Fix: Editor UI glitch in Firefox browser
  1679. = 2.4.3 - 2019-01-21 =
  1680. * Tweak: Update `width` control label in Image Box widget ([#6808](https://github.com/elementor/elementor/issues/6808))
  1681. * Fix: PHP warning in self hosted video `render_pain_content()`
  1682. * Fix: Responsive `background-attachment` issue
  1683. = 2.4.2 - 2019-01-20 =
  1684. * Tweak: Better duplicate Error log entries handling
  1685. * Tweak: Split and merge similar translation strings
  1686. * Fix: Missing manual caption style in Image widget ([#6791](https://github.com/elementor/elementor/issues/6791))
  1687. * Fix: JS handlers not working in editor for other templates
  1688. * Fix: Log only Elementor related errors
  1689. * Fix: Background updates total iterations
  1690. = 2.4.1 - 2019-01-15 =
  1691. * Tweak: Avoid widget rendering on `box-shadow` and `text-shadow` changes ([#6737](https://github.com/elementor/elementor/issues/6737))
  1692. * Fix: Capital letters not working in anchors
  1693. * Fix: Admin menu position incorrect format
  1694. * Fix: Avoid duplicate run of element handlers on nested documents
  1695. = 2.4.0 - 2019-01-14 =
  1696. * New: Added Safe Mode for scenarios that the editor didn't load properly
  1697. * New: Added `<!--more-->` tag support ([#462](https://github.com/elementor/elementor/issues/462))
  1698. * New: Added Read More widget aka `<!--more-->` tag
  1699. * New: Added Categories taxonomy for Template Library ([#886](https://github.com/elementor/elementor/issues/886))
  1700. * New: Added responsive capabilities for Background control ([#2355](https://github.com/elementor/elementor/issues/2355))
  1701. * New: Added custom option for `background-size` & `background-position` ([#2571](https://github.com/elementor/elementor/issues/2571))
  1702. * New: Added responsive capabilities for Border control ([#3243](https://github.com/elementor/elementor/issues/3243), [#5284](https://github.com/elementor/elementor/issues/5284))
  1703. * New: Added External URL source for Video widget
  1704. * Tweak: Added a notice when clicking on Back to WordPress editor button ([#5597](https://github.com/elementor/elementor/issues/5597))
  1705. * Tweak: Added Link & Globe for Social Icons widget ([#6405](https://github.com/elementor/elementor/issues/6405))
  1706. * Tweak: Added `elementor/controls/animations/additional_animations` hook for adding custom Entrance Animations ([#6545](https://github.com/elementor/elementor/issues/6545))
  1707. * Tweak: Added `elementor/controls/hover_animations/additional_animations` hook for adding custom Hover Animations ([#6545](https://github.com/elementor/elementor/issues/6545))
  1708. * Tweak: Reorganized admin menu for Elementor settings & Template Library
  1709. * Tweak: Exclude library CPT from Yoast SEO sitemap
  1710. * Tweak: Added attributes for column wrappers (Props [@thenovacreator](https://github.com/thenovacreator))
  1711. * Tweak: Added `autocomplete` parameter for URL control (default: true)
  1712. * Tweak: Added sanitize data on Menu Anchor ID
  1713. * Tweak: Added dynamic options for Testimonial widget
  1714. * Tweak: Added PHP error log to System Info
  1715. * Tweak: Added Quick Edit option for Template Library
  1716. * Tweak: Renamed "Content" tab in Templates Library to "Page"
  1717. * Fix: Inline editing issue for Repeater control ([#6445](https://github.com/elementor/elementor/issues/6445))
  1718. * Fix: Panel footer menu not closing on background click ([#6547](https://github.com/elementor/elementor/issues/6547))
  1719. * Fix: Typography control doesn't generate default CSS ([#6500](https://github.com/elementor/elementor/issues/6500))
  1720. * Fix: Alignment issue in Icon List widget ([#6507](https://github.com/elementor/elementor/issues/6507))
  1721. = 2.3.8 - 2018-12-20 =
  1722. * Fix: Editor not working caused by last version
  1723. = 2.3.7 - 2018-12-20 =
  1724. * Fix: Invalid type in Import templates ([#6483](https://github.com/elementor/elementor/issues/6483))
  1725. * Fix: Save global templates
  1726. * Fix: WP widgets compatibility
  1727. * Fix: Responsive device buttons always shown
  1728. = 2.3.6 - 2018-12-17 =
  1729. * Fix: `Back to WordPress Editor` not working when meta-boxes are present ([#6437](https://github.com/elementor/elementor/issues/6437))
  1730. * Fix: Register documents only if needed
  1731. * Fix: Style glitch in the responsive control ([#6227](https://github.com/elementor/elementor/issues/6227))
  1732. = 2.3.5 - 2018-12-11 =
  1733. * Tweak: Load `elementor_debug_log` option only on System Info page
  1734. * Fix: Maintenance Mode admin console issue
  1735. * Fix: Elementor stuck on loader instead of `The Content Area Was Not Found`
  1736. * Fix: Temporary compatibility workaround for Chrome v70+ dragging above nested iframe issue
  1737. * Fix: `border-radius` for Video not displayed in Safari browser
  1738. * Fix: Avoid `z-index` changes by `nanocss` in build process
  1739. = 2.3.4 - 2018-11-29 =
  1740. * Tweak: Make sure "Edit with Elementor" action link is the last link in My Templates
  1741. * Fix: CSS parsing for non-existing controls ([#6296](https://github.com/elementor/elementor/issues/6296))
  1742. * Fix: Shows only editable documents in Finder
  1743. = 2.3.3 - 2018-11-28 =
  1744. * New: Added `elementor/frontend/{$element_type}/should_render` filter
  1745. * Tweak: Added a new `render_html_attributes` method
  1746. * Tweak: Added placeholder support for `date-time` control
  1747. * Tweak: Added ability to set a default value in a control `selectors` settings ([#6241](https://github.com/elementor/elementor/issues/6241))
  1748. * Tweak: Open links in new tab on `Ctrl + Enter` ([#6258](https://github.com/elementor/elementor/issues/6258))
  1749. * Tweak: Set the correct Dynamic tag categories for Self Hosted video
  1750. * Fix: Video lightbox won't open in some configurations
  1751. * Fix: Self-hosted video lightbox width
  1752. * Fix: Removed invalid `href` attribute in Tabs widget ([#6261](https://github.com/elementor/elementor/issues/6261))
  1753. * Fix: Restored element / widget hooks priority ([#6189](https://github.com/elementor/elementor/issues/6189))
  1754. * Fix: Drag the direct inner element only
  1755. * Fix: Show unsupported templates on My Templates list
  1756. * Fix: Make sure the document type exists in documents manager
  1757. * Fix: Set default for `slides to scroll` in Image Carousel widget
  1758. = 2.3.2 - 2018-11-17 =
  1759. * Tweak: Added `vw` unit to base control
  1760. * Tweak: Added WP Plugins and Users links to Finder
  1761. * Tweak: Updated Swiper progress style to new version
  1762. * Fix: Missing "View Page" and "Exit to Dashboard" in editor menu
  1763. * Fix: Background video position in edge cases
  1764. * Fix: Incorrect keyboard shortcut in Hotkeys cheatsheet
  1765. * Fix: Fatal error for 3rd party plugins ([#6192](https://github.com/elementor/elementor/issues/6192))
  1766. = 2.3.1 - 2018-11-12 =
  1767. * Fix: Print empty elements but not empty widgets ([#6134](https://github.com/elementor/elementor/issues/6134))
  1768. * Fix: Removed `figcaption` tag when no caption is set ([#6134](https://github.com/elementor/elementor/issues/6134))
  1769. = 2.3.0 - 2018-11-12 =
  1770. * New: Introducing Finder - The Easiest Way to Switch Between Pages ([#292](https://github.com/elementor/elementor/issues/292))
  1771. * New: Added Keyboard Shortcuts modal
  1772. * New: Introducing Star Rating widget
  1773. * Tweak: Added Deviantart, freeCodeCamp and GitLab to Social Icons widget ([#5820](https://github.com/elementor/elementor/issues/5820), [#5816](https://github.com/elementor/elementor/issues/5816))
  1774. * Tweak: Show preview fonts select on scroll ([#5207](https://github.com/elementor/elementor/issues/5207), [#3499](https://github.com/elementor/elementor/issues/3499))
  1775. * Tweak: Added compatibility for WordPress v5.0 Beta ([#6019](https://github.com/elementor/elementor/issues/6019))
  1776. * Tweak: Added filter to rename external CSS files ([#5968](https://github.com/elementor/elementor/issues/5968))
  1777. * Tweak: Added dynamic option for caption in the Image widget ([#5770](https://github.com/elementor/elementor/issues/5770))
  1778. * Tweak: Updated YouTube related videos control due to YouTube's API changes ([#5984](https://github.com/elementor/elementor/issues/5984), [#5939](https://github.com/elementor/elementor/issues/5939))
  1779. * Tweak: Added a general `hook elementor/frontend/after_render` to element-base
  1780. * Tweak: Added `elementor/element/before_attribute_render` hook before attributes are rendered
  1781. * Tweak: Added `elementor/element/after_attribute_render` hook after attributes are rendered
  1782. * Tweak: New `elementor/editor/init` action
  1783. * Tweak: A new `get_post_type_title` method for document
  1784. * Tweak: Added `Ctrl/Cmd + E` shortcut to open Finder modal
  1785. * Tweak: Added `Ctrl/Cmd + ?` shortcut to open all keyboard shortcuts modal
  1786. * Tweak: Added `Esc` shortcut for opening the settings menu
  1787. * Tweak: Update Eicons v3.9.2
  1788. * Fix: Added default width for SVG image to support edge cases ([#5987](https://github.com/elementor/elementor/issues/5987))
  1789. * Fix: Better WP Widget hooks support ([#5844](https://github.com/elementor/elementor/issues/5844))
  1790. * Fix: Exclude image link from lightbox when the link has `download` attribute ([#5996](https://github.com/elementor/elementor/issues/5996))
  1791. * Fix: Background Gradient not working inside Repeater control ([#5914](https://github.com/elementor/elementor/issues/5914))
  1792. * Fix: Added support for future post status ([#5681](https://github.com/elementor/elementor/issues/5681), [#6000](https://github.com/elementor/elementor/issues/6000))
  1793. * Fix: Missing string translations ([#5989](https://github.com/elementor/elementor/issues/5989))
  1794. * Fix: Lightbox images links detection ([#6103](https://github.com/elementor/elementor/issues/6103))
  1795. * Fix: Animation class removed from Lightbox closing ([#5911](https://github.com/elementor/elementor/issues/5911))
  1796. * Fix: Allow plugins to set current page as Login Page for Maintenance Mode
  1797. * Fix: Added navigation between tabs via tab keyboard for better accessibility
  1798. * Fix: Use Thumbnail if selected size is missing
  1799. * Fix: A new method to handle with multiple image custom sizes
  1800. * Fix: Import template by WP CLI
  1801. * Fix: Height of bar without content in Progress Bar widget
  1802. * Fix: Added compatibility with a new embed API of YouTube
  1803. * Fix: Don't render wrapper of element if the content is empty
  1804. * Deprecated: `Source_Local::TYPE_META_KEY` is no longer supported
  1805. * Deprecated: `Document::save_type()` is replaced by `Document::save_template_type()`
  1806. = 2.2.7 - 2018-10-24 =
  1807. * 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/))
  1808. * Fix: Admin Notice not dismissing in some server configurations ([#5927](https://github.com/elementor/elementor/issues/5927))
  1809. * Fix: Image link not respecting the image size in the Image widget ([#5897](https://github.com/elementor/elementor/issues/5897))
  1810. = 2.2.6 - 2018-10-22 =
  1811. * Tweak: Added `get_render_attributes` method to `Element_Base` ([#5878](https://github.com/elementor/elementor/issues/5878))
  1812. * Tweak: Sets the minimum width of the content area as `300px`
  1813. * Tweak: Darken Elementor Loader icon color
  1814. * Fix: Field labels with multiple rows style glitch ([#4295](https://github.com/elementor/elementor/issues/4295))
  1815. = 2.2.5 - 2018-10-07 =
  1816. * Tweak: System Info now recognizes MariaDB versions
  1817. * Tweak: Allow document to override widgets panel settings
  1818. * Fix: Admin Notice not dismissing when JS disabled ([#5832](https://github.com/elementor/elementor/issues/5832))
  1819. * Fix: System Info Uncaught Error on edge cases
  1820. = 2.2.4 - 2018-09-20 =
  1821. * Tweak: Added Poster option for Self Hosted in Video widget
  1822. * Fix: Revert Gutenberg Image Block compatibility until stable version ([#5763](https://github.com/elementor/elementor/issues/5763))
  1823. = 2.2.3 - 2018-09-17 =
  1824. * Tweak: Improved browser compatibility with Elementor grid
  1825. * Fix: Toggle Widget first toggle always open on load
  1826. * Fix: Changed Dailymotion placeholder in Video widget
  1827. = 2.2.2 - 2018-09-16 =
  1828. * Tweak: Improved IE compatibility mechanism
  1829. * Tweak: Added `remove_all_actions( 'after_wp_tiny_mce' )` hook for better compatibility with 3rd party plugins ([#5686](https://github.com/elementor/elementor/issues/5686))
  1830. * Fix: Content styling missing when no icon for Toggle widget ([#5735](https://github.com/elementor/elementor/issues/5735))
  1831. * Fix: Redirect issue on activation via Ajax
  1832. * Fix: Excluded `Actions` label from ordering in Template library modal
  1833. * Fix: Avoid setting empty title for elements in Navigator
  1834. * Fix: Compatibility for Gutenberg Image Block
  1835. = 2.2.1 - 2018-09-03 =
  1836. * Fix: Auto scrolling when clicking on long element ([#5591](https://github.com/elementor/elementor/issues/5591))
  1837. * Fix: Increased number input width besides slider control ([#5521](https://github.com/elementor/elementor/issues/5521))
  1838. * Fix: Typography line-height default unit for all devices ([#5527](https://github.com/elementor/elementor/issues/5527))
  1839. * Fix: Added Navigator compatibility for Role Manager ([#5599](https://github.com/elementor/elementor/issues/5599))
  1840. * Fix: Clear cache via native WordPress methods to support object cache plugins ([#4179](https://github.com/elementor/elementor/issues/4179))
  1841. * Fix: E loader RTL style glitch
  1842. * Fix: History undo after adding a section
  1843. * Fix: Styling issue with Testimonial widget image
  1844. * Fix: Panel elements search error when the user is in `content only` mode
  1845. * Fix: Better Navigator support for safari versions
  1846. = 2.2.0 - 2018-08-28 =
  1847. * New: Introducing Navigator Panel ([#1165](https://github.com/elementor/elementor/issues/1165))
  1848. * New: Added Autocomplete URL functionality for Internal Linking ([#255](https://github.com/elementor/elementor/issues/255))
  1849. * New: Added `Cmd/Ctrl + I` hotkey for the Navigator
  1850. * New: Added `Cmd/Ctrl + Shift + V` hotkey for paste style
  1851. * New: Added "Getting Started" page after new installation
  1852. * New: Added reverse columns for tablet screen resolution ([#2070](https://github.com/elementor/elementor/issues/2070))
  1853. * Tweak: Changed the name of Columns widget to Inner Section to reduce confusion
  1854. * Tweak: Added option to restore Editing Handles ([#4981](https://github.com/elementor/elementor/issues/4981))
  1855. * Tweak: Remember Editor panel width in localStorage ([#2414](https://github.com/elementor/elementor/issues/2414))
  1856. * Tweak: Added official color option on hover state in Social Icons Widget ([#2032](https://github.com/elementor/elementor/issues/2032))
  1857. * Tweak: New user interface for CSS Filters control
  1858. * Tweak: Added `Hue` filter to CSS Filters control
  1859. * Tweak: Added a Lazy Load option for the Video widget ([#5189](https://github.com/elementor/elementor/issues/5189))
  1860. * Tweak: Added Mixcloud icon to Social Icons widget ([#5417](https://github.com/elementor/elementor/issues/5417))
  1861. * Tweak: Added an additional aspect ratio (21:9) in Video widget
  1862. * Tweak: Added edit capabilities in the responsive mode
  1863. * Tweak: Removed default transparency on hover button ([#4406](https://github.com/elementor/elementor/issues/4406))
  1864. * Tweak: Redesign `E` loader
  1865. * Tweak: Added `elementor/frontend/before_render` hook to `element-base`
  1866. * Fix: Reverse column bug in responsive columns ([#5421](https://github.com/elementor/elementor/issues/5421))
  1867. * Fix: Compatibility for IE11 by adding IE CSS via JS ([#5510](https://github.com/elementor/elementor/issues/5510), [#5530](https://github.com/elementor/elementor/issues/5530))
  1868. * Fix: IE11 bug in case of `min-height` mixed with `align-items: center`
  1869. * Fix: Resize the columns via the `Column Width` after moving the section ([#5393](https://github.com/elementor/elementor/issues/5393))
  1870. * Fix: Different videos with the same image showing the same video
  1871. * Fix: Inline editing in Progress Bar widget
  1872. = 2.1.8 - 2018-08-19 =
  1873. * Fix: Prevent columns from overflowing the grid area in Firefox browser ([#5442](https://github.com/elementor/elementor/issues/5442))
  1874. * Fix: Style glitch in the panel separator
  1875. = 2.1.7 - 2018-08-15 =
  1876. * Fix: Avoid copying custom CSS ID when pasting style ([#5416](https://github.com/elementor/elementor/issues/5416))
  1877. * Fix: Responsive CSS for minimal grid utility ([#5375](https://github.com/elementor/elementor/issues/5375))
  1878. * Fix: Make Elementor Canvas compatible with iPhone X landscape orientation
  1879. = 2.1.6 - 2018-07-31 =
  1880. * Fix: Removed reference to source map file in Swiper minified file
  1881. * Fix: Element handle style glitch in mobile view
  1882. * Fix: Delete element with hotkey after text editing
  1883. * Fix: Avoid auto focus on the widget panel search field after deleting an element
  1884. = 2.1.5 - 2018-07-26 =
  1885. * Tweak: Added `Ctrl/Cmd + Y` for redo action ([#5090](https://github.com/elementor/elementor/issues/5090))
  1886. * Tweak: Clear WP cache in upgrade steps
  1887. * Fix: Corrected conditions for start/end times with loop in Video widget
  1888. * Fix: Padding for first active control in section
  1889. * Fix: Loader styling for some languages
  1890. * Fix: RTL style for Choose control
  1891. * Fix: Possible memory leak by parsing and sanitizing data and settings only when it's necessary
  1892. * Fix: Fixed text selection detection in FireFox
  1893. * Fix: `on-paste` check for Choose control
  1894. * Fix: `fixed` positions for Color Picker
  1895. * Fix: Removed empty space from `elementor/document/urls/edit` hook name ([#5216](https://github.com/elementor/elementor/issues/5216))
  1896. * Fix: Dynamic tags support in Shortcode widget ([#5214](https://github.com/elementor/elementor/issues/5214))
  1897. = 2.1.4 - 2018-07-18 =
  1898. * Tweak: Show modified date instead of publish date on Dashboard widget ([#4169](https://github.com/elementor/elementor/issues/4169))
  1899. * Fix: Selector for CSS Filters control in column
  1900. * Fix: CSS Filters for self hosted video
  1901. * Fix: Avoid creating unnecessary CSS for widgets
  1902. * Fix: Added backward compatibility for deprecated controls
  1903. * Fix: Color Picker control value change detection
  1904. * Fix: Avoid multiple ready trigger in preview
  1905. * Fix: Save default page template
  1906. = 2.1.3 - 2018-07-16 =
  1907. * Tweak: Added CSS filter control for Map, Video, Section and Column
  1908. * Tweak: Added Inspector option in Tools page
  1909. * Tweak: Added Inspector log for Canvas & Full Width templates
  1910. * Tweak: The preview is now loading via plain URL to avoid errors in some server configurations
  1911. * Tweak: Added `print_elements_with_wrapper` method to allow a document to overwrite it's wrapper
  1912. * Tweak: Added action hook `elementor/template-library/after_get_source_data`
  1913. * Fix: Page template missing after import ([#4498](https://github.com/elementor/elementor/issues/4498))
  1914. * Fix: Maintenance Mode override theme template
  1915. * Fix: Removed focus and active states from Hover Animations
  1916. * Fix: Prevent submit forms in the preview
  1917. * Fix: Disable history tracking when restoring a revision
  1918. * Fix: Empty history changes after restoring a revision
  1919. * Fix: Paste style on control with groups
  1920. * Fix: Avoid overwrite `_wp_page_template` in edge cases
  1921. = 2.1.2 - 2018-07-08 =
  1922. * Tweak: Set active/inactive category by `'active' => false` (default is `true`)
  1923. * Tweak: Added forms input style compatibility for some themes
  1924. * Fix: XML Demo Import compatibility for admin based imports ([#4947](https://github.com/elementor/elementor/issues/4947))
  1925. * Fix: Set correct `post_id` when call `enqueue_scripts` from preview mode
  1926. * Fix: Conditions not working on dynamic backgrounds
  1927. * Fix: Paste of multiple content in Add Section Area
  1928. * Fix: Set lower priority to `template_include` hook to override 3rd party plugins, e.g. WooCommerce
  1929. * Fix: Hide Save Widget as Global button for old versions
  1930. * Fix: Added RTL style for section with handles inside
  1931. * Deprecated: Restore `get_page` method as hard deprecated ([#4870](https://github.com/elementor/elementor/issues/4870))
  1932. = 2.1.1 - 2018-07-03 =
  1933. * Tweak: Compatibility Gutenberg classic editor
  1934. * Fix: Compatibility for PHP < 5.6
  1935. = 2.1.0 - 2018-07-03 =
  1936. * New: Introducing Elementor Context Menu
  1937. * New: Copy/Paste elements ([#4151](https://github.com/elementor/elementor/issues/4151))
  1938. * New: Copy/Paste element style ([#1479](https://github.com/elementor/elementor/issues/1479))
  1939. * New: Copy/Paste between pages
  1940. * New: Reset element style
  1941. * New: Added `copy_all_content` option
  1942. * New: Change mobile & tablet breakpoints ([#78](https://github.com/elementor/elementor/issues/78))
  1943. * New: Introducing Elementor WP-CLI integration ([#2161](https://github.com/elementor/elementor/issues/2161))
  1944. * New: Added collapsable panel categories ([#3805](https://github.com/elementor/elementor/issues/3805))
  1945. * New: Added Self hosted videos with HTML5 for Video widget ([#3313](https://github.com/elementor/elementor/issues/3313))
  1946. * New: Added Dailymotion provider for Video widget ([#2285](https://github.com/elementor/elementor/issues/2285))
  1947. * New: Added start/end controls for Video widget ([#3565](https://github.com/elementor/elementor/issues/3565))
  1948. * New: Added new icons to Social Icons widget: Android & Thumbtack ([#4235](https://github.com/elementor/elementor/issues/4235), [#4486](https://github.com/elementor/elementor/issues/4486))
  1949. * New: Hotkey: Ctrl / Cmd + C = Copy
  1950. * New: Hotkey: Ctrl / Cmd + V = Paste
  1951. * Tweak: Added CSS Filter group control ([#3260](https://github.com/elementor/elementor/issues/3260))
  1952. * Tweak: Added CSS Filters to Image & Image Box widgets
  1953. * Tweak: Added compatibility with Gutenberg 3.0.+ ([#2631](https://github.com/elementor/elementor/issues/2631))
  1954. * Tweak: Added CSS ID for Button widget ([#4535](https://github.com/elementor/elementor/issues/4535))
  1955. * Tweak: Added keywords to all widgets for more accurate filtering
  1956. * Tweak: Replace hover section with tabs Icon & Icon Box widgets
  1957. * Tweak: Moved `delete all content` to the page level right click
  1958. * Tweak: When converting content with only a shortcode to Elementor, a shortcode widget used instead of Text Editor widget (#4616)
  1959. * Tweak: Updated Swiper library to v4.3.3 ([#4170](https://github.com/elementor/elementor/issues/4170))
  1960. * Tweak: Added `elementor/shapes/additional_shapes` filter hook to allow custom shape dividers (#4759)
  1961. * Tweak: Added video support to media control ([#4066](https://github.com/elementor/elementor/issues/4066))
  1962. * Tweak: Dropped Support for WP v4.6, now supporting WP v4.7+
  1963. * Fix: The `wpColorPicker` will not be updated after emptying the value
  1964. * Fix: Added fallback for injection position when the injection control does not exist
  1965. * Fix: Focus state behavior in the Repeater control ([#4596](https://github.com/elementor/elementor/issues/4596))
  1966. * Deprecated: `Repeater::get_fields()` is replaced by `Repeater::get_controls()`
  1967. * Deprecated: `Element_Base::get_parent()` is replaced by `Element_Base::get_data( 'parent' )`
  1968. * Deprecated: `get_class_controls` is no longer supported
  1969. * Deprecated: `\Elementor\settings\page\manager::get_page()` is now removed ([#4870](https://github.com/elementor/elementor/issues/4870))
  1970. = 2.0.16 - 2018-06-12 =
  1971. * Fix: Dynamic Tag CSS not working on columns & widgets ([#4662](https://github.com/elementor/elementor/issues/4662))
  1972. * Fix: Hide title now also hides Post Title widget
  1973. * Fix: Trigger Elementor ready only once
  1974. = 2.0.15 - 2018-06-05 =
  1975. * Fix: Background video in Chrome v67+
  1976. * Fix: CSS glitch in local library modal
  1977. * Fix: CSS glitch with dynamic buttons in a repeater
  1978. * Fix: Divider control on top of controls popover
  1979. * Fix: Conditions check for `in` & `!in`
  1980. * Fix: Prefix class when the value is numeric
  1981. = 2.0.14 - 2018-05-29 =
  1982. * Fix: Missing Dynamic Image Background properties on front-end ([#4577](https://github.com/elementor/elementor/issues/4577))
  1983. * Fix: Avoid page settings global `$post` being overwritten by 3rd party plugins ([#4563](https://github.com/elementor/elementor/issues/4563))
  1984. * Fix: Editor won’t load for users without publishing capabilities
  1985. * Fix: Only show Caption style section for Image widget if needed
  1986. = 2.0.13 - 2018-05-28 =
  1987. * New: Dynamic Image Backgrounds ([#3971](https://github.com/elementor/elementor/issues/3971))
  1988. * Tweak: Updated Dialog Manager v4.3.2
  1989. * Tweak: Better accessibility for Back to Editor button
  1990. * Tweak: Confusing error message ([#4546](https://github.com/elementor/elementor/issues/4546))
  1991. * Fix: Panel buttons style glitch in edge cases
  1992. * Fix: PHP notice in Polylang compatibility
  1993. * Fix: Editor won't load for users without publishing capabilities
  1994. * Fix: Media queries ordering in CSS file for mixed min and max break points
  1995. * Fix: Improved video background loading method
  1996. = 2.0.12 - 2018-05-15 =
  1997. * Tweak: Added new method `add_body_class`
  1998. * Tweak: Set library filter by the document
  1999. * Tweak: Allow 3rd party developers to register documents on init
  2000. * Fix: Set attach uploaded images to the current post
  2001. * Fix: Scroll not working in the library modal ([#4394](https://github.com/elementor/elementor/issues/4394))
  2002. * Fix: Blocks dropdown menu escapes container on scroll ([#3947](https://github.com/elementor/elementor/issues/3947))
  2003. = 2.0.11 - 2018-05-09 =
  2004. * Fix: Stronger selector for heading widget color, to avoid section style override ([#4266](https://github.com/elementor/elementor/issues/4266))
  2005. * Fix: style missing when role manager in content only mode
  2006. = 2.0.10 - 2018-05-08 =
  2007. * Fix: Added icon for Dynamic Tag without settings
  2008. * Fix: Added offset for anchor scroll section is sticky ([#4323](https://github.com/elementor/elementor/issues/4323))
  2009. * Fix: Title changing on auto-save for various languages
  2010. * Fix: Cannot scroll in the library modal ([#4325](https://github.com/elementor/elementor/issues/4325))
  2011. = 2.0.9 - 2018-05-01 =
  2012. * Tweak: Added ability to add Dynamic Tags from 3rd party applications
  2013. * Tweak: Added ability to add custom classes to the wrapper for extending widgets
  2014. * Tweak: Using full version of Select2.js in the admin
  2015. * Tweak: Update Eicons v3.3
  2016. * Fix: My Template tabs are not translatable ([#4221](https://github.com/elementor/elementor/issues/4221))
  2017. * Fix: Added compatibility for domain mapping with filter tag ([#4307](https://github.com/elementor/elementor/issues/4307))
  2018. * Fix: Popover closes after clicking on select2 search container ([#4310](https://github.com/elementor/elementor/issues/4310))
  2019. * Fix: Wrapping Dynamic Tag in the editor
  2020. * Fix: Removed unnecessary condition from Transition Duration control
  2021. * Fix: Removed listening to parent model on Repeater control
  2022. * Fix: Controls styling in repeater
  2023. * Fix: Ensure the frontend scripts are enqueued once in the editor preview
  2024. = 2.0.8 - 2018-04-23 =
  2025. * Tweak: Added action hook for caching plugins when clearing CSS files `do_action( 'elementor/css-file/clear_cache' );` ([#4179](https://github.com/elementor/elementor/issues/4179))
  2026. * Tweak: Added Page Templates support only for layout pages
  2027. * Fix: Smooth scrolling not working ([#4168](https://github.com/elementor/elementor/issues/4168), [#4125](https://github.com/elementor/elementor/issues/4125))
  2028. * Fix: Stretch section for archive pages
  2029. * Fix: Icon vertical alignment in icon list widget
  2030. = 2.0.7 - 2018-04-18 =
  2031. * Tweak: Rename filter `elementor/get_document/post_id` to `elementor/documents/get/post_id`
  2032. * Tweak: Added Divider control for Icon List widget on inline skin
  2033. * Tweak: Added CSS classes per document in Preview
  2034. * Tweak: Added option to avoid export data by adding `export=false` to control args
  2035. * Fix: Support for editing images in WP Media Modal ([#3062](https://github.com/elementor/elementor/issues/3062))
  2036. * Fix: Responsive inline alignment for Icon List widget
  2037. * Fix: Added higher priority to support Google Fonts in locations
  2038. * Fix: Import templates with Dynamic data
  2039. * Fix: Editing buttons missing when preview set as archive
  2040. * Fix: Export document settings for all template types
  2041. = 2.0.6 - 2018-04-15 =
  2042. * New: Image widget - added new control for Image width
  2043. * Tweak: Added support for dynamic video via ACF
  2044. * Tweak: Reorder admin columns in My Templates
  2045. * Tweak: Update Eicons v3.2.2
  2046. * Tweak: Added `elementor/get_document/post_id` filter for `get document` - compatibility for translation plugins
  2047. * Tweak: Print container classes per document
  2048. * Tweak: Added `elementor-edit-area-preview` and `elementor-edit-area-active` classes
  2049. * Tweak: Removed wrapper for dynamic data
  2050. * Fix: Per device Visibility for editor with multiple Elementor areas
  2051. * Fix: CSS glitch for URL input with dynamic
  2052. * Fix: Dynamic Show Before/After only when value is not empty
  2053. = 2.0.5 - 2018-04-11 =
  2054. * Fix: Avoid merge for incorrect page settings data
  2055. * Fix: Style tab on document settings not saving on autosave
  2056. * Fix: Duplicate icons by updated Eicons library
  2057. = 2.0.4 - 2018-04-09 =
  2058. * Tweak: Update Google Fonts list with more than 30 new fonts
  2059. * Tweak: Updated Eicons to v3.2.0
  2060. * Fix: Page template doesn't work in draft status ([#3706](https://github.com/elementor/elementor/issues/3706))
  2061. * Fix: Make sure that document settings works only on existing posts ([#3993](https://github.com/elementor/elementor/issues/3993), [Topic](https://wordpress.org/support/topic/php-fatal-error-after-last-update/))
  2062. * Fix: Removed some duplicate strings
  2063. * Fix: Undefined index when save editor using old method
  2064. * Fix: Use `&nbsp;` to add spaces before/after for tags with HTML ([#3826](https://github.com/elementor/elementor/issues/3826))
  2065. = 2.0.3 - 2018-03-29 =
  2066. * Tweak: Added Knowledge Base link to WordPress admin menu
  2067. * Tweak: Improved performance in the editor using internal caching
  2068. * 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/))
  2069. * Fix: Set element ID before sanitizing data
  2070. = 2.0.2 - 2018-03-28 =
  2071. * Fix: Title changing on auto-save
  2072. * Fix: Page templates reverts to default on preview ([#3933](https://github.com/elementor/elementor/issues/3933))
  2073. * Fix: Editor won't load when a custom image size is used ([#3926](https://github.com/elementor/elementor/issues/3926))
  2074. * Fix: WordPress Widgets not loading saved settings ([#3930](https://github.com/elementor/elementor/issues/3930))
  2075. = 2.0.1 - 2018-03-27 =
  2076. * Fix: Removed promotion in the Role Manager area ([#3903](https://github.com/elementor/elementor/issues/3903))
  2077. * Fix: Improved responsive style for My Template modal ([#3914](https://github.com/elementor/elementor/issues/3914))
  2078. * Fix: Issue with conditional repeater field ([#3886](https://github.com/elementor/elementor/issues/3886), [#3865](https://github.com/elementor/elementor/issues/3865))
  2079. * Fix: The notifications toast goes down when you change the page layout
  2080. * Fix: Custom delimiter char for frontend template in the Counter widget
  2081. * Fix: Import template from WP Admin
  2082. = 2.0.0 - 2018-03-26 =
  2083. * New: Added new library tab for pre-design "Blocks"
  2084. * New: Added new page template "Elementor Full Width"
  2085. * New: Document Type method to register new template types ([#3409](https://github.com/elementor/elementor/issues/3409))
  2086. * New: Added new social icons for 500px, Steam and StumbleUpon ([#3106](https://github.com/elementor/elementor/issues/3106), [#3636](https://github.com/elementor/elementor/issues/3636))
  2087. * Tweak: Dropped Support WP 4.5, now supporting WP 4.6 and higher
  2088. * Tweak: New settings interface for Role Manager
  2089. * Tweak: Reintroduce divider control for UI panel ([Developer API](https://developers.elementor.com/elementor-controls/divider-control/))
  2090. * Tweak: Added inline view for icon-list widget ([#1624](https://github.com/elementor/elementor/issues/1624))
  2091. * Tweak: Added "Featured Image" control to document settings ([#3429](https://github.com/elementor/elementor/issues/3429))
  2092. * Tweak: Added custom thousand separator in Counter widget ([#3459](https://github.com/elementor/elementor/issues/3459))
  2093. * Tweak: Added "Image Size" control to the "Video" widget overlay image ([#3488](https://github.com/elementor/elementor/issues/3488))
  2094. * Tweak: Added "Image Size" control to the "Image Box" widget ([#3251](https://github.com/elementor/elementor/issues/3251))
  2095. * Tweak: Added "Image Size" control to the "Testimonial" widget ([#3472](https://github.com/elementor/elementor/issues/3472))
  2096. * Tweak: Added "Link" control to the "Testimonial" widget ([#3480](https://github.com/elementor/elementor/issues/3480))
  2097. * Tweak: Added "Caption Spacing" control to the "Image" widget ([#3452](https://github.com/elementor/elementor/issues/3452))
  2098. * Tweak: Added responsive control to the text padding in the "Button" widget
  2099. * Tweak: Added compatibility for the future release of Elementor
  2100. * Tweak: Added `Groove` style to the "Border" control
  2101. * Tweak: Decreasing column minimum width to 2%
  2102. * Tweak: Decreasing section minimum height in edit mode
  2103. * Tweak: Match HTML tags for the section and the column ([#3471](https://github.com/elementor/elementor/issues/3471))
  2104. * Tweak: Renamed the `clear_page` section in the document settings
  2105. * Tweak: Renamed the `general-elements` widgets category to `general` ([#3729](https://github.com/elementor/elementor/issues/3729))
  2106. * Tweak: Remember the last library tab and search/filters that was open
  2107. * Tweak: Replace the select control with a switcher control in the Video widget "Play Icon" control ([#3262](https://github.com/elementor/elementor/issues/3262))
  2108. * Tweak: Video widget accessibility - added `role="button"` attribute to the Play button ([#3270](https://github.com/elementor/elementor/issues/3270))
  2109. * Tweak: Button widget accessibility - added `role="button"` attribute ([#3271](https://github.com/elementor/elementor/issues/3271))
  2110. * Tweak: Icon widget accessibility - added `aria-hidden` attribute to the `i` tag ([#3272](https://github.com/elementor/elementor/issues/3272))
  2111. * Tweak: Icon Box widget accessibility - added `aria-hidden` attribute to the `i` tag ([#3273](https://github.com/elementor/elementor/issues/3273))
  2112. * Tweak: Google Maps widget accessibility - added `aria-label` attribute to the `iframe` tag ([#3274](https://github.com/elementor/elementor/issues/3274))
  2113. * Tweak: Moved `placeholder` and `title` settings from base control settings into individual controls that use them ([#3795](https://github.com/elementor/elementor/issues/3795))
  2114. * Tweak: Updated the "Icon Box" widget to handle cases where no icon is set
  2115. * Tweak: Updated the way widget categories are registered in Elementor ([#3729](https://github.com/elementor/elementor/issues/3729))
  2116. * Tweak: Slick.js library Updated to v1.8.1 ([#3538](https://github.com/elementor/elementor/issues/3538))
  2117. * Tweak: Updated Eicons to v3.0.0
  2118. * Tweak: Updated Select2 to v4.0.5
  2119. * Fix: Document settings now saved as revisions on auto save ([#3510](https://github.com/elementor/elementor/issues/3510))
  2120. * Fix: Show preset section in the right side for RTL
  2121. = 1.9.8 - 2018-03-12 =
  2122. * Fix: Activate publish button if there is an auto-save version
  2123. * Fix: Server error message missing in edge cases
  2124. * Fix: Updated dialog library ([#3668](https://github.com/elementor/elementor/issues/3668))
  2125. * Fix: Text Decoration option in Button Widget ([#3701](https://github.com/elementor/elementor/issues/3701))
  2126. * Fix: Added `autopause=0` in order to allow multiple autoplay in Vimeo video
  2127. * Fix: Added missing translation string to control in the Image Carousel widget
  2128. = 1.9.7 - 2018-02-27 =
  2129. * Tweak: `Element_Base::get_style_depends()` method is now overwritable ([#3494](https://github.com/elementor/elementor/issues/3494))
  2130. * Fix: "Enter" key triggers Elementor mode instead of default submit action ([#3556](https://github.com/elementor/elementor/issues/3556))
  2131. * Fix: Stop showing Connection Lost notification when editing widgets
  2132. * Fix: Counter widget - Allow spacing between prefix and suffix
  2133. = 1.9.6 - 2018-02-21 =
  2134. * Fix: When selecting a color with alpha, the value is not fully visible ([#3320](https://github.com/elementor/elementor/issues/3320))
  2135. * Fix: "Create new Page" button in dashboard widget ([#3491](https://github.com/elementor/elementor/issues/3491))
  2136. * Fix: `safe_copy_elementor_meta` for editor revisions
  2137. * Fix: Clear filters when syncing library
  2138. * Fix: Background attachment fixed only on desktop
  2139. = 1.9.5 - 2018-02-14 =
  2140. * Fix: Added reset for background video when the parent has set `text-align: center;`
  2141. * Fix: Print global and post CSS files after all 3rd party plugins styles
  2142. * Fix: Avoid setting editor changed-flag on auto-saving
  2143. * Fix: Stretch section fallback to body when selector not found or the container doesn't exist
  2144. = 1.9.4 - 2018-02-07 =
  2145. * Tweak: Added draft posts to Elementor dashboard widget ([#3379](https://github.com/elementor/elementor/issues/3379))
  2146. * Tweak: Removed CodeMirror script for WP Custom HTML widget to improve performance
  2147. * Fix: Fonts not loaded in edit mode for widget template ([#3352](https://github.com/elementor/elementor/issues/3352))
  2148. * Fix: Prevent template library modal close on actions in edge cases
  2149. * Fix: Set save button as disabled if there is nothing to save
  2150. * Fix: Added publish to editor translations
  2151. * Fix: Added a flex-basis patch for better support in Firefox browser
  2152. * Fix: Image Box heading link now works without an image ([#2854](https://github.com/elementor/elementor/issues/2854))
  2153. = 1.9.3 - 2018-01-21 =
  2154. * Fix: Enqueue style/script if when not needed ([#3094](https://github.com/elementor/elementor/issues/3094))
  2155. * Fix: Added compatibility for Safari browser accessibility
  2156. * Fix: Error message in saver
  2157. * Fix: Elementor missing WP editor content ([#3139](https://github.com/elementor/elementor/issues/3139))
  2158. * Fix: Changes lost on revisions panel tab destroy ([#3242](https://github.com/elementor/elementor/issues/3242))
  2159. = 1.9.2 - 2018-01-16 =
  2160. * Tweak: Improved querying for revisions to reduce load time on posts with lots of revisions
  2161. * Tweak: Added new notifications when connection with the server is lost and on server errors
  2162. * Fix: Autosave now show only Elementor data ([#3144](https://github.com/elementor/elementor/issues/3144))
  2163. * Fix: Show correct post content in autosave
  2164. * Fix: Preview Changes button now uses `wp_preview_url()`
  2165. * Fix: Typography settings not showing correctly in some cases ([#3145](https://github.com/elementor/elementor/issues/3145))
  2166. * Fix: Group control with conditions ([#3182](https://github.com/elementor/elementor/issues/3182))
  2167. * Fix: Import template in some configurations by checking if `ZipArchive` class is exists
  2168. * Fix: Tooltip flickering in the responsive mode button ([#3151](https://github.com/elementor/elementor/issues/3151))
  2169. = 1.9.1 - 2018-01-10 =
  2170. * Fix: Conflict between responsive control and group control popup ([#3130](https://github.com/elementor/elementor/issues/3130))
  2171. * Fix: Color picker handle lag
  2172. * Fix: Native WordPress widgets stopped working
  2173. = 1.9.0 - 2018-01-09 =
  2174. * New: Added Autosave capability for editor
  2175. * New: Added save as draft option ([#2824](https://github.com/elementor/elementor/issues/2824))
  2176. * New: Brand new Template Library
  2177. * New: Added filter & sorting (new, trend & popular) to Template Library ([#1711](https://github.com/elementor/elementor/issues/1711))
  2178. * New: Added import & sync tools to Template Library ([#2402](https://github.com/elementor/elementor/issues/2402))
  2179. * New: Added search form to Template Library ([#2499](https://github.com/elementor/elementor/issues/2499))
  2180. * New: Added my favorites option to the Template Library
  2181. * New: Added sorting (name, type, author & date) to My Templates Library
  2182. * New: Added new social icons for Meetup, RSS & Skype ([#2703](https://github.com/elementor/elementor/issues/2703), [#2701](https://github.com/elementor/elementor/issues/2701), [#3090](https://github.com/elementor/elementor/issues/3090))
  2183. * New: Added Overview dashboard widget
  2184. * Tweak: Added privacy control to video widget ([#2741](https://github.com/elementor/elementor/issues/2741))
  2185. * Tweak: Added new controls for Icons, Spacing & Padding to Toggle widget ([#2836](https://github.com/elementor/elementor/issues/2836))
  2186. * Tweak: Added new controls for Icons & Padding to Accordion widget ([#2836](https://github.com/elementor/elementor/issues/2836))
  2187. * Tweak: Added responsive space between control to Icon List widget
  2188. * Tweak: Rename "Page Settings" panel to "Document Settings"
  2189. * Tweak: Moved My Library to top of admin menu ([#2843](https://github.com/elementor/elementor/issues/2843))
  2190. * Tweak: Re-design menu of editor panel
  2191. * Tweak: Replaced `jquery-simple-dtpicker` with `flatpickr` JS library ([#2095](https://github.com/elementor/elementor/issues/2095))
  2192. * Tweak: Reduced panel clutter by allowing group control to be displayed as a popup
  2193. * Tweak: Added Gutenberg compatibility - "Add New Elementor" and "Back to Classic" edit screen
  2194. * Tweak: Added excerpt control to the Document Settings if the post type supports excerpts ([#2837](https://github.com/elementor/elementor/issues/2837))
  2195. * Tweak: Added `text-decoration` to Typography control
  2196. * Tweak: All functions, action hooks and filter hooks have been documented
  2197. * Tweak: Implementing inline editing functionality in various Elementor widgets
  2198. * Tweak: Accessible widget search - add label for screen readers in the search box ([#2835](https://github.com/elementor/elementor/issues/2835))
  2199. * Tweak: Improved Editor accessibility - replace `title` attributes with `aria-label` ([#2861](https://github.com/elementor/elementor/issues/2861))
  2200. * Tweak: Progress Bar widget accessibility - set correct `role` and added new `aria` attributes ([#2861](https://github.com/elementor/elementor/issues/2861))
  2201. * Tweak: Alert widget accessibility - make the "Dismiss" button accessible ([#3108](https://github.com/elementor/elementor/issues/3108))
  2202. * Tweak: Tabs widget accessibility - added `id`, `role` and `aria` attributes ([#2913](https://github.com/elementor/elementor/issues/2913))
  2203. * Tweak: Toggle widget accessibility - added `id`, `role` and `aria` attributes ([#2836](https://github.com/elementor/elementor/issues/2836))
  2204. * Tweak: Accordion widget accessibility - added `id`, `role` and `aria` attributes ([#2836](https://github.com/elementor/elementor/issues/2836))
  2205. * Tweak: Social Icons widget accessibility - added labels for screen readers
  2206. * Tweak: Added Browser support notification for unsupported browsers
  2207. * Tweak: Depended styles, various elements can set stylesheet dependencies ([#1636](https://github.com/elementor/elementor/issues/1636))
  2208. * Tweak: Added option to set control as required by `required => true`
  2209. * Fix: Added `wptexturize` filter to match WordPress native text formatting
  2210. * Fix: Alignment issue with Icon widget
  2211. = 1.8.12 - 2018-01-03 =
  2212. * Tweak: Added style compatibility for multiple select field
  2213. * Tweak: Added trim extra spaces in WP editor
  2214. * Fix: WC session not defined in editor
  2215. = 1.8.11 - 2017-12-19 =
  2216. * Tweak: Support W3C validation when using multiple Google Fonts ([Topic](https://wordpress.org/support/topic/bad-character-while-embedding-google-fonts/))
  2217. * Tweak: Eicons v2.9.0 Updated
  2218. * Fix: TinyMCE inside repeater missing content after sort canceled ([#2952](https://github.com/elementor/elementor/issues/2952))
  2219. * Fix: Alpha color picker added `#` to default value ([#2978](https://github.com/elementor/elementor/issues/2978))
  2220. * Fix: Wrong parameter for multiple conditions with nested relations
  2221. * Fix: Init heartbeat only after preview has been loaded successfully to prevent unexpected behavior in edge cases
  2222. = 1.8.10 - 2017-12-13 =
  2223. * Tweak: Allow support for multiple conditions with relations
  2224. * Fix: Waypoint in order to support default options and trigger once
  2225. * Fix: Entrance animation near the bottom of the page ([#2114](https://github.com/elementor/elementor/issues/2114), [#2060](https://github.com/elementor/elementor/issues/2060))
  2226. * Fix: Avoid delete current revision preview, check it's a valid revision
  2227. * Fix: Change post-status in page settings
  2228. = 1.8.9 - 2017-12-06 =
  2229. * Security Fix! - Prevent potential privilege escalation in page settings & history
  2230. * Fix: Allow Contributors to preview library templates
  2231. * Fix: Font Awesome icons are italicized ([#2873](https://github.com/elementor/elementor/issues/2873))
  2232. * Fix: CSS autoprefixer for minified files (now supports last 10 versions of browsers)
  2233. * Fix: Import template in Safari browser
  2234. * Fix: Post config for none singular pages
  2235. * Fix: Re-Render WYSIWYG control inside repeater on sort changed ([#2897](https://github.com/elementor/elementor/issues/2897), [#2450](https://github.com/elementor/elementor/issues/2450), [#2324](https://github.com/elementor/elementor/issues/2324))
  2236. * Fix: Eicons CSS re-compiled ([#2878](https://github.com/elementor/elementor/issues/2878))
  2237. = 1.8.8 - 2017-11-30 =
  2238. * Tweak: Eicons v2.8.0 Updated
  2239. * Security Fix! - Prevent potential privilege escalation in template library
  2240. = 1.8.7 - 2017-11-29 =
  2241. * Tweak: Eicons v2.7.0 updated
  2242. * Fix: Added per post type "edit_post" capability mapping in the editor ([#2846](https://github.com/elementor/elementor/issues/2846))
  2243. * Fix: Bump color picker script version to v2.0 to force a browser cached version refresh ([#2550](https://github.com/elementor/elementor/issues/2550))
  2244. = 1.8.6 - 2017-11-26 =
  2245. * Fix: Changed minimum editing capability to `edit_posts` ([#2791](https://github.com/elementor/elementor/issues/2791))
  2246. * Fix: Disable `white-space: pre-wrap` in advanced editing mode ([#2776](https://github.com/elementor/elementor/issues/2776))
  2247. * Fix: Check publish capabilities in the page settings
  2248. * Fix: Fixed line break in webkit in cases when there are no active nodes.
  2249. * Fix: Import/export template in some server configurations.
  2250. = 1.8.5 - 2017-11-19 =
  2251. * Fix: Compatibility with the WordPress 4.9 native widgets ([#2763](https://github.com/elementor/elementor/issues/2763))
  2252. * Fix: Removed related videos from background video in some cases ([#2372](https://github.com/elementor/elementor/issues/2372))
  2253. * Fix: Element inside similar element conflict ([#2760](https://github.com/elementor/elementor/issues/2760))
  2254. * Fix: Responsive alignment in Icon List widget
  2255. = 1.8.4 - 2017-11-14 =
  2256. * Fix: Accordion open/close icon ([#2740](https://github.com/elementor/elementor/issues/2740))
  2257. * Fix: Color control does not allow more than 7 characters ([#2737](https://github.com/elementor/elementor/issues/2737))
  2258. * Fix: Button wrap on Safari browser
  2259. * Fix: Print duplicate styles when Print Method set to Internal Embedding
  2260. = 1.8.3 - 2017-11-11 =
  2261. * Fix: Added nonce to export template action ([Topic](https://wordpress.org/support/topic/importation-error-in-library-elementor-8-2/))
  2262. * Fix: Native WordPress widgets stopped working ([#2732](https://github.com/elementor/elementor/issues/2732))
  2263. = 1.8.2 - 2017-11-09 =
  2264. * Fix: Added nonce to export template action ([#2722](https://github.com/elementor/elementor/issues/2722))
  2265. * Fix: Changes nonce key for third party plugins
  2266. = 1.8.1 - 2017-11-09 =
  2267. * Fix: Bug loading Editor templates in some server configurations ([#2712](https://github.com/elementor/elementor/issues/2712))
  2268. * Fix: Added parameter to overwrite control recursively ([#2702](https://github.com/elementor/elementor/issues/2702))
  2269. * Fix: Patched nonce validation for all library actions
  2270. * Fix: Glitch with Tabs widget on touch screen
  2271. * Fix: Glitch with Button wrap on small screens
  2272. = 1.8.0 - 2017-11-07 =
  2273. * New: Inline Editing added to all text, textarea & TinyMCE controls ([#437](https://github.com/elementor/elementor/issues/437))
  2274. * New: Added auto complete for code editor (Custom CSS & HTML widget) ([#2416](https://github.com/elementor/elementor/issues/2416))
  2275. * New: Added more icons to Social Icons widget: Telegram & OK ([#2670](https://github.com/elementor/elementor/issues/2670))
  2276. * New: Set focus to search bar when you click on widget button in the panel ([#2333](https://github.com/elementor/elementor/issues/2333))
  2277. * Tweak: Added `soft wrap` for code editor
  2278. * Tweak: Better accessibility for Tabs, Toggle & Accordion widgets
  2279. * Tweak: Added option to disable the widget on-change rendering
  2280. * Tweak: Improved error dialogs for better handling cases when the editor fails to load.
  2281. * Tweak: Rename Global Colors & Fonts to Default Colors and Default Fonts for better clarify
  2282. * Tweak: Update Google Fonts list with more than 10 new fonts
  2283. * Tweak: Eicons v2.5.0 updated
  2284. * Tweak: Added an "Elementor" post state for post table
  2285. * Tweak: Added responsive control for Icon Box (Space & Size)
  2286. * Tweak: Added compatibility and support for WP Color in WordPress 4.9 ([#2550](https://github.com/elementor/elementor/issues/2550))
  2287. * Tweak: Better nonce handling/renewing to avoid timeouts
  2288. * Tweak: Added compatibility for the future release of Elementor
  2289. * Fix: Icon List widget alignment with RTL
  2290. * Fix: Render element on unknown control changed
  2291. * Fix: Conflict `elementor-clickable` element with editor lightbox
  2292. * Fix: Handle download media/gallery inside repeater control for export/import
  2293. = 1.7.12 - 2017-10-24 =
  2294. * Fix: Stay in the same tab settings after saving
  2295. * Fix: Refresh heartbeat token when nonce is expired
  2296. * Fix: Space for mobile in Image Box widget ([#2586](https://github.com/elementor/elementor/issues/2586))
  2297. * Fix: Added visual indication for disabled swiper nav arrow button
  2298. * Fix: Color picker alignment for extended panel ([#2548](https://github.com/elementor/elementor/issues/2548))
  2299. = 1.7.11 - 2017-10-04 =
  2300. * Fix: `options is undefined` error when using select2
  2301. = 1.7.10 - 2017-10-03 =
  2302. * Fix: Extend of Icon control for Social Icons widget
  2303. = 1.7.9 - 2017-10-03 =
  2304. * Fix: Bug loading editor in Windows server
  2305. = 1.7.8 - 2017-10-03 =
  2306. * Fix: Font and Icon controls that got effected by previous update
  2307. = 1.7.7 - 2017-10-03 =
  2308. * Tweak: If current value is not in the options show it as `Unknown value` for Select2 control
  2309. * Fix: Import all template types by WordPress Importer
  2310. * Fix: Pagination color default for carousels
  2311. * Fix: Bug loading editor in some server configurations
  2312. = 1.7.6 - 2017-09-26 =
  2313. * Tweak: Changed video lightbox width for tablet to 100%
  2314. * Tweak: Changed Vimeo placeholder for the Video widget
  2315. * Tweak: Added `vh` unit support for control base
  2316. * Fix: Prevent showing of placeholder image in video lightbox
  2317. * Fix: Show Swiper arrows navigation in the center
  2318. * Fix: Set a centered image preview for media control in the panel
  2319. * Fix: Removed `sourceMappingURL` reference to prevent an error with the Safari browser
  2320. = 1.7.5 - 2017-09-24 =
  2321. * Tweak: Clear CSS Meta after change print method
  2322. * Tweak: Set default style for UI controls in all sliders and carousels
  2323. * Fix: Added compatibility for WordPress 4.8.2 & 4.7.6
  2324. * Fix: Sync Library tool for manual updating
  2325. = 1.7.4 - 2017-09-18 =
  2326. * Tweak: Added compatibility for the future release of Elementor
  2327. * Fix: Space widgets applied on the last element ([#2331](https://github.com/elementor/elementor/issues/2331))
  2328. * Fix: Internal CSS for Template Library embed ([#2394](https://github.com/elementor/elementor/issues/2394))
  2329. = 1.7.3 - 2017-09-11 =
  2330. * Tweak: Added responsive size for icon list widget ([#2302](https://github.com/elementor/elementor/issues/2302))
  2331. * Tweak: Added keyboard control for lightbox slideshow ([#2270](https://github.com/elementor/elementor/issues/2270))
  2332. * Tweak: Updated E-Icons font v2.4.2
  2333. * Fix: Changed image carousel breakpoints ([#2341](https://github.com/elementor/elementor/issues/2341))
  2334. * Fix: Handles editor view for Divi theme ([#2342](https://github.com/elementor/elementor/issues/2342))
  2335. * Fix: Live editing to the page settings custom CSS ([#2363](https://github.com/elementor/elementor/issues/2363))
  2336. = 1.7.2 - 2017-09-05 =
  2337. * Tweak: Added compatibility for the future release of Elementor
  2338. * Tweak: Added API option for developers to insert controls between preexisting controls
  2339. * Tweak: Added compatibility with Yoast SEO plugin
  2340. * Fix: Added compatibility for Multisite installation with Domain Mapping ([#2280](https://github.com/elementor/elementor/issues/2280))
  2341. * Fix: Disappearing widgets when you undo remove section ([#2301](https://github.com/elementor/elementor/issues/2301))
  2342. = 1.7.1 - 2017-08-29 =
  2343. * Tweak: Removed some filters for better performance
  2344. * Fix: Allow import `.zip` mime type to the library for some browsers / servers
  2345. * Fix: Save checking for the history log
  2346. * Fix: Change default template in page settings
  2347. = 1.7.0 - 2017-08-28 =
  2348. * New: History actions in the editor ([#266](https://github.com/elementor/elementor/issues/266))
  2349. * New: Hotkey: Ctrl / Cmd + Z = Undo
  2350. * New: Hotkey: Ctrl / Cmd + Shift + Z = Redo
  2351. * New: Hotkey: Ctrl / Cmd + D = Duplicate
  2352. * New: Hotkey: Delete = Delete element
  2353. * New: Added more icons to Social Icons widget: Weibo & WeChat
  2354. * Tweak: Added color control for UI elements in the lightbox
  2355. * Tweak: Allow to exclude devices in responsive control
  2356. * Tweak: Added compatibility for Table of Contents Plus plugin ([#2248](https://github.com/elementor/elementor/issues/2248))
  2357. * Fix: Added compatibility for Multisite installation with Domain Mapping
  2358. * Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts
  2359. * Fix: Sometimes content in Repeater control disappears
  2360. * Fix: Conflict rollback to the last version when beta testing mode enabled
  2361. * Fix: Conflict with Polylang plugin ([#2124](https://github.com/elementor/elementor/issues/2124))
  2362. * Fix: Allow fullscreen in the editor preview for video player
  2363. = 1.6.5 - 2017-08-20 =
  2364. * Tweak: Added compatibility for the future release of Elementor Pro
  2365. * Fix: Set font size inherit for Heading widget ([#2098](https://github.com/elementor/elementor/issues/2098))
  2366. * Fix: Anchor links smooth scrolling not working when admin bar is disabled ([#2210](https://github.com/elementor/elementor/issues/2210))
  2367. = 1.6.4 - 2017-08-06 =
  2368. * Tweak: Allow to close lightbox when clicking outside of the element
  2369. * Fix: Added font family inherit for input placeholder
  2370. * Fix: Reload none-saved changes on editor reload
  2371. * Fix: Added compatibility for WPMU DEV's Domain Mapping plugin ([#2120](https://github.com/elementor/elementor/issues/2120))
  2372. = 1.6.3 - 2017-08-09 =
  2373. * Fix: Lightbox for Image Carousel ([#2135](https://github.com/elementor/elementor/issues/2135))
  2374. * Fix: Allow to dismiss message asking to share non-sensitive usage data ([#2136](https://github.com/elementor/elementor/issues/2136))
  2375. * Fix: Conflict with Advanced TinyMCE plugin ([Topic](https://wordpress.org/support/topic/tinymce-unbreakable-space-not-display/))
  2376. = 1.6.2 - 2017-08-03 =
  2377. * Fix: More compatibility for some server configuration ([#2119](https://github.com/elementor/elementor/issues/2119))
  2378. * Fix: Added lightbox control for image gallery widget ([#2121](https://github.com/elementor/elementor/issues/2121))
  2379. * 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/))
  2380. = 1.6.1 - 2017-08-02 =
  2381. * Fix: Conflict with Contact Form module by Jetpack ([#2125](https://github.com/elementor/elementor/issues/2125))
  2382. * Fix: Conflict with Popup Maker plugin
  2383. * Fix: Updated previous stable version for rollback
  2384. * Fix: Checking if the content area not found before anything else
  2385. * Fix: Condition hidden for section control didn't work well
  2386. * Fix: Reset border for iFrame in video lightbox ([#2121](https://github.com/elementor/elementor/issues/2121))
  2387. = 1.6.0 - 2017-08-02 =
  2388. * [Read more in the release post](https://elementor.com/v160-image-lightbox/)
  2389. * New: Added native Lightbox for images and galleries ([#218](https://github.com/elementor/elementor/issues/218))
  2390. * New: Added Text Shadow control ([#1696](https://github.com/elementor/elementor/issues/1696)) ([Developer API](https://github.com/elementor/elementor/blob/master/docs/content/controls/_text-shadow.md))
  2391. * New: Added Text Shadow option for Heading widget ([#1940](https://github.com/elementor/elementor/issues/1940))
  2392. * New: Added bulk import / export for template library ([#1241](https://github.com/elementor/elementor/issues/1241))
  2393. * New: Added `elementor/widgets/wordpress/widget_args` filter to customize WP widget markup ([#2052](https://github.com/elementor/elementor/issues/2052))
  2394. * Tweak: The editor loading now in the wp-admin area instead of the front-end
  2395. * Tweak: Replaced editor icons from FontAwesome to Eicons for beautiful sharpness
  2396. * Tweak: Added library access to all users with `edit_pages` capability
  2397. * Tweak: Loading scripts from the preview for more accurate front-end simulation and fix some issues
  2398. * Tweak: Replaced textarea input with WYSIWYG control for Testimonial widget ([#1321](https://github.com/elementor/elementor/issues/1321))
  2399. * Tweak: Changed default play icon for Video widget
  2400. * Tweak: First step to move Autoloader classes method
  2401. * Tweak: Switcher control `label_on` and `label_off` is not required anymore ([Developer API](https://github.com/elementor/elementor/blob/master/docs/content/controls/_switcher.md))
  2402. * Tweak: Style settings now also in the editor (under > menu > general settings)
  2403. * Tweak: Changed the colors of editor loading screen to positive design
  2404. * Tweak: Added Mute option for YouTube in Video widget ([#1897](https://github.com/elementor/elementor/issues/1897))
  2405. * Twaek! - Added compatibility for Polylang plugin ([#1959](https://github.com/elementor/elementor/issues/1959))
  2406. * Fix: Unknown text input in Group Controls ([#1926](https://github.com/elementor/elementor/issues/1926))
  2407. * Fix: Show edit with Elementor button on admin bar in regular posts
  2408. * Fix: Inherit style for select field from field
  2409. * Fix: Conflict with ManageWP on Multisite ([#1600](https://github.com/elementor/elementor/issues/1600), [#1456](https://github.com/elementor/elementor/issues/1456))
  2410. * Deprecated: `elementor/controls/get_available_tabs_controls` filter, please use `\Elementor\Controls_Manager::add_tab( $tab_name, $tab_title )` instead of
  2411. = 1.5.5 - 2017-07-18 =
  2412. * Fix: Page Settings data gets corrupted on revision save ([#2031](https://github.com/elementor/elementor/issues/2031))
  2413. = 1.5.4 - 2017-07-17 =
  2414. * Tweak: Re-organized SCSS files for the editor panel
  2415. * Tweak: Added example how to remove some styles from front-end ([#1992](https://github.com/elementor/elementor/issues/1992))
  2416. * Tweak: Added `do_action( 'elementor/preview/enqueue_scripts' );` for loading scripts in the preview only
  2417. * Tweak: Added `panel/widgets/{WIDGET_TYPE}/controls/wp_widget/loaded` JS action to handle WP widget controls ([#1886](https://github.com/elementor/elementor/issues/1886))
  2418. * Tweak: Changed Image placeholder
  2419. * Tweak: Return `checkbox` control as deprecated in v1.5 ([#2003](https://github.com/elementor/elementor/issues/2003))
  2420. * Fix: Changed carousel breakpoints for better responsiveness (Based on [#1785](https://github.com/elementor/elementor/issues/2003))
  2421. * Fix: After v1.5 some default unit in mobile editing set as pixel instead of the original default
  2422. * Fix: Removed `wptexturize` from Elementor content to avoid some plugins wrong texturize
  2423. = 1.5.3 - 2017-07-09 =
  2424. * Tweak: Google Fonts list updated with 17 new fonts
  2425. * Tweak: Added responsive control for min-height in Column widget
  2426. * Tweak: Added default value for HTML Tags
  2427. * Tweak: Added editor compatibility for some themes
  2428. * Fix: Added `latin-ext` subset in Font control for Polish language
  2429. * Fix: Updated control condition on Skin
  2430. * Fix: Glitch CSS in video iFrame
  2431. * Fix: Hover effect opacity transition
  2432. * Fix: Column background overlay condition in front-end
  2433. * Fix: Shape divider width units for tablet and mobile ([#1817](https://github.com/elementor/elementor/issues/1817))
  2434. * Fix: Video Background position center of section ([#1925](https://github.com/elementor/elementor/issues/1925))
  2435. * Fix: Toggle & Accordion glitch in the editor
  2436. * Fix: Hide errors for control without selector ([#1923](https://github.com/elementor/elementor/issues/1923))
  2437. = 1.5.2 - 2017-07-02 =
  2438. * Fix: Library dialog not loading in different languages
  2439. * Fix: Removed duplicate data from editor loading
  2440. * Fix: Navigation condition in Image Carousel widget ([#1920](https://github.com/elementor/elementor/issues/1920))
  2441. * Fix: Added `latin-ext` subset in Font control for Romanian language ([#1915](https://github.com/elementor/elementor/issues/1915))
  2442. = 1.5.1 - 2017-06-29 =
  2443. * Tweak: Show the fallback image until video playback starts ([#1901](https://github.com/elementor/elementor/issues/1901))
  2444. * Tweak: Set Animation delay value in milliseconds
  2445. * Fix: Buttons size for different languages ([Topic](https://wordpress.org/support/topic/cosmetic-for-french-interface/))
  2446. * Fix: Destroy the Waypoint after one running ([#1906](https://github.com/elementor/elementor/issues/1906))
  2447. * Fix: Image stretch condition in Image Carousel widget
  2448. * Fix: Restore value builder for rollback compatibility ([#1911](https://github.com/elementor/elementor/issues/1911))
  2449. = 1.5.0 - 2017-06-28 =
  2450. * New: A big UI makeover to the editor for the 1st birthday of Elementor ([#493](https://github.com/elementor/elementor/issues/493), [#335](https://github.com/elementor/elementor/issues/335), [#692](https://github.com/elementor/elementor/issues/692))
  2451. * New: Added responsive mode for Column Width control, including Tablet! ([#418](https://github.com/elementor/elementor/issues/418))
  2452. * New: Added option to set the column width trough the panel ([#847](https://github.com/elementor/elementor/issues/847))
  2453. * New: Added Element Hover for Background, BG Overlay, Border & Box Shadow
  2454. * New: Added `nofollow` option for all link controls ([Topic](https://wordpress.org/support/topic/elementor-nofollow-links-is-there-a-way-to-specify-links-nofollow-attribute/), [#953](https://github.com/elementor/elementor/issues/953), [#1695](https://github.com/elementor/elementor/issues/1695))
  2455. * New: Added HTML Tag for Section & Column ([#1619](https://github.com/elementor/elementor/issues/1619))
  2456. * New: Added Inset option for Box shadow control ([#1623](https://github.com/elementor/elementor/issues/1623))
  2457. * New: Added option to rollback to a previous version of Elementor & Pro
  2458. * New: Added option to get update notifications for beta versions of Elementor & Pro
  2459. * New: Added Space Between Widgets option under global settings and per column ([#1221](https://github.com/elementor/elementor/issues/1221))
  2460. * New: Added Z-Index option for all elements and removed original default `z-index` from `widgets-wrap` ([#1743](https://github.com/elementor/elementor/issues/1743))
  2461. * New: Import template get the page settings also if available
  2462. * Tweak: Added Tabs UI for admin setting pages
  2463. * Tweak: Added Layout tab for column for better workflow
  2464. * Tweak: Elementor not active when WP version doesn't meet minimum requirements
  2465. * Tweak: Added Animation Delay to Entrance Animation for all elements ([#558](https://github.com/elementor/elementor/issues/558))
  2466. * Tweak: Improved panel accessibility by adding `for` to the labels
  2467. * Tweak: Added responsive control for min-height in Section ([#630](https://github.com/elementor/elementor/issues/630))
  2468. * Tweak: Added responsive control for image size in Image / Image Box widgets
  2469. * Tweak: Added PX unit & responsive control for border width in Divider widget
  2470. * Tweak: Added responsive control for gap in Divider widget
  2471. * Tweak: Added responsive control for spacing in Image Box widget
  2472. * Tweak: Added responsive control for slides to show control in Image Carousel
  2473. * Tweak: Added responsive control for border radius in Image widget
  2474. * Tweak: Changed video embed method for better performance and fix loading bug
  2475. * Tweak: Changed `the_content` priority for better integration with 3rd party plugins (e.g WooCommerce Membership)
  2476. * Tweak: Added WP filter to get available image sizes
  2477. * Tweak: Updated Swiper library to 3.4.2
  2478. * Tweak: Limit up to 100 revisions to display in the panel for better performance
  2479. * Fix: YouTube link detection regex for some situations
  2480. * Fix: Content flashes before entrance animation ([#1672](https://github.com/elementor/elementor/issues/1672))
  2481. * Fix: Added `latin-ext` subset in Font control for Czech language ([#1630](https://github.com/elementor/elementor/issues/1630))
  2482. * Fix: Restore to post version without Elementor in Revision History
  2483. * Fix: Removed `margin: 0` setting from figure inside text editor widget
  2484. * Fix: Content flashes before entrance animation ([#1672](https://github.com/elementor/elementor/issues/1672))
  2485. * Fix: Bug Image Carousel widget in RTL direction
  2486. * Fix: `show_label` affected inner label in the repeater control ([#1707](https://github.com/elementor/elementor/issues/1707))
  2487. = 1.4.10 - 2017-06-25 =
  2488. * Fix: CSS `autoprefixer` for minified files (last 5 versions of browsers support)
  2489. = 1.4.9 - 2017-06-19 =
  2490. * Tweak: Compatibility with the new WordPress 4.8 widgets (Rich Text, Image, Video and Audio)
  2491. * Tweak: Disable Elementor editor in the default Blog page
  2492. * Fix: Bug post archive when first post set as Canvas template
  2493. = 1.4.8 - 2017-05-28 =
  2494. * New: Added new option: Set the CSS Print Method as Internal Embedding or External Files
  2495. * Tweak: CSS `autoprefixer` now supports last 5 versions of browsers
  2496. * Tweak: Nested all Swiper style under `elementor` class
  2497. * Fix: Open the first section when switching tabs not working
  2498. * Fix: Video widget cover image not displayed properly when lightbox on ([#1763](https://github.com/elementor/elementor/issues/1763))
  2499. = 1.4.7 - 2017-05-18 =
  2500. * Tweak: Added WP favicon support on Editor mode
  2501. * Fix: Do not return empty `<img>` tag when not found image source on Image Size group control
  2502. = 1.4.6 - 2017-05-09 =
  2503. * New: Added new Google font `Arsenal` for typography control
  2504. * Fix: An issue with custom size in Image Widget ([#1688](https://github.com/elementor/elementor/issues/1688))
  2505. * Fix: Tilt shape glitch in wide screens
  2506. * Fix: Increasing `z-index` for overlay settings in the editor ([#1209](https://github.com/elementor/elementor/issues/1209))
  2507. * Fix: The layout is reset when you drag the section
  2508. * Fix: Register events on different skins to register multiple handles in one widget
  2509. * Fix: Parse controls default settings by PHP
  2510. * Fix: Advanced style apply in the element inside element
  2511. = 1.4.5 - 2017-04-30 =
  2512. * Tweak: Use `update_metadata` instead of `update_post_meta` for revision history
  2513. * Fix: If Image Carousel caption is set to none, don't print the markup for the `figcaption`
  2514. * Fix: Don’t run buttons arrangement when TinyMCE has custom configuration
  2515. * Fix: Apply default value to desktop only for mobile editing
  2516. * Fix: Double rendering in the editor
  2517. * Fix: Prevent Elementor video autoplay in WordPress backend editor
  2518. = 1.4.4 - 2017-04-20 =
  2519. * Fix: Customizer is not loading in some cases ([Topic](https://wordpress.org/support/topic/cant-load-wp-customizer-because-of-get_css-error/))
  2520. = 1.4.3 - 2017-04-19 =
  2521. * Tweak: Avoid enqueue `post.css` for `the_excerpt`
  2522. * Tweak: Updated E-Icons font v2.1.0
  2523. * Fix: Conflict between different skins sharing a control with same prefix-class
  2524. * Fix: Added compatibility for more WP widgets ([Topic](https://wordpress.org/support/topic/cant-change-event-calendar-widget/))
  2525. = 1.4.2 - 2017-04-04 =
  2526. * Fix: Page Settings not reload on the page template ([#1586](https://github.com/elementor/elementor/issues/1586))
  2527. * Fix: Full width default value in preview mode
  2528. * Fix: Responsive switcher in repeater control
  2529. = 1.4.1 - 2017-04-03 =
  2530. * New: `Added action elementor/frontend/after_register_scripts` - runs after register scripts in the frontend
  2531. * New: `Added action elementor/editor/after_enqueue_styles` - runs after enqueue styles in the Editor
  2532. * New: `Added action elementor/editor/before_enqueue_styles` - runs before enqueue styles in the Editor
  2533. * New: `Added action elementor/editor/after_enqueue_scripts` - runs after enqueue scripts in Editor
  2534. * New: `Added action elementor/post-css-file/parse` to change Post CSS output
  2535. * Tweak: Added new tool for editor loader method
  2536. * Fix: Autosave settings on each change after 3 seconds ([#1546](https://github.com/elementor/elementor/issues/1546))
  2537. * Fix: Reset column resize after section sorting
  2538. * Fix: Incorrect wrapper height in some cases in Video lightbox
  2539. * Fix: ACE editor lines gutter overflows over panel footer menu ([#1575](https://github.com/elementor/elementor/issues/1575))
  2540. = 1.4.0 - 2017-03-28 =
  2541. * New: Canvas: Native Blank Page Template. No header, no footer, just Elementor
  2542. * New: Maintenance Mode for Under Contraction and Coming Soon page
  2543. * New: Page Settings: Choose Page Template, Change Status, Edit / Hide Page Title ([#632](https://github.com/elementor/elementor/issues/632), [#447](https://github.com/elementor/elementor/issues/447))
  2544. * New: Page Style: Padding and Background Color, Image or Gradient
  2545. * New: Drop Cap option for Text Editor widget
  2546. * New: Added Debug box in the System Info screen, to keep a record of recent error messages in the editor
  2547. * New: Added more icons to Social Icons widget: Yelp, Xing, Email, Shopping Cart and Whatsapp ([#1462](https://github.com/elementor/elementor/issues/1462), [#1463](https://github.com/elementor/elementor/issues/1463), [#1471](https://github.com/elementor/elementor/issues/1471), [#1481](https://github.com/elementor/elementor/issues/1481))
  2548. * Tweak: Added hover style and animation for Social Icons widget ([#426](https://github.com/elementor/elementor/issues/426), [#1472](https://github.com/elementor/elementor/issues/1472))
  2549. * Tweak: Removed unnecessary data settings from frontend output
  2550. * Fix: Duplicate repeater field with switcher control ([#1442](https://github.com/elementor/elementor/issues/1442), [#1472](https://github.com/elementor/elementor/issues/1472))
  2551. * Fix: Google Font family with spacing
  2552. * Fix: Custom image size in some situations ([Topic](https://wordpress.org/support/topic/insider-elementor-editor-error-500-admin-ajax/))
  2553. * Fix: Smooth scrolling for anchor links, now limited only to links with `.elementor-element` or `.elementor-menu-anchor` classes ([#1478](https://github.com/elementor/elementor/issues/1478))
  2554. = 1.3.5 - 2017-03-20 =
  2555. * Tweak: Minimum WordPress version is now v4.5
  2556. * Fix: Shape divider glitch on some screen widths
  2557. * Fix: Shape divider flip bug in safari browser
  2558. * Fix: Conflict with jQuery FitVids plugin ([Topic](https://wordpress.org/support/topic/video-lightbox-4/))
  2559. * Fix: Generated CSS-file breakpoint for tablet - changed from `1023px` to `1024px` ([#1454](https://github.com/elementor/elementor/issues/1454))
  2560. * Fix: Close HTML `div` for Alert widget
  2561. = 1.3.4 - 2017-03-14 =
  2562. * Tweak: Added more hooks for handling styles & scripts ([Topic](https://wordpress.org/support/topic/is-there-way-to-remove-google-font-link/))
  2563. * Tweak: Added Swiper library for future widgets
  2564. * Fix: Added Revision History for all Elementor-enabled CPTs
  2565. * Fix: Shapes for RTL direction
  2566. * Fix: Issue with images not loading in some situations
  2567. * Fix: Click on arrow icon in select field
  2568. = 1.3.3 - 2017-03-08 =
  2569. * Fix: Negative shape rotation in front-end ([#1438](https://github.com/elementor/elementor/issues/1438))
  2570. * Fix: Error with anchor links with an invalid target ([Topic](https://wordpress.org/support/topic/popup-maker-not-working-on-elementor-1-3-2-pages/))
  2571. * Fix: Alignment issue in Icon List widget
  2572. = 1.3.2 - 2017-03-07 =
  2573. * Tweak: Added Bring to Front option for shape divider
  2574. * Fix: Normalize template data in some situations ([#1432](https://github.com/elementor/elementor/issues/1432))
  2575. * Fix: Removed shapes handler JS from front-end
  2576. * Fix: Added support for shapes on Edge browser ([#1427](https://github.com/elementor/elementor/issues/1427))
  2577. * Fix: Shapes glitch on some screen width
  2578. = 1.3.1 - 2017-03-07 =
  2579. * Fix: Insert or embed template in the editor ([#1426](https://github.com/elementor/elementor/issues/1426), [#1425](https://github.com/elementor/elementor/issues/1425))
  2580. * Fix: Imported templates were not saved correctly ([Topic](https://wordpress.org/support/topic/new-version-not-loading-2/))
  2581. * Fix: Comparing default values for array or multiple controls
  2582. = 1.3.0 - 2017-03-06 =
  2583. * New: Added Shape Divider to sections
  2584. * New: Added Lightbox for video widget ([#741](https://github.com/elementor/elementor/issues/741))
  2585. * New: Added new social icons for Slideshare, Vkontakte & Tripadvisor
  2586. * New: Print JS file just when is needed, by new method `Widget::get_script_depends()` ([Code Reference](https://github.com/elementor/elementor-hello-world/blob/5d37a45a9419ecb825e1706eb83689dfa0b252f8/widgets/hello-world.php#L34-L42))
  2587. * Tweak: Improved Icon List widget by adding: line-up, divider and space between options ([#822](https://github.com/elementor/elementor/issues/822))
  2588. * Tweak: Added box shadow control for Button widget ([#1357](https://github.com/elementor/elementor/issues/1357))
  2589. * Tweak: Don't use `html_entity_decode` on json posted data (Improving JSON format for saving Data by deprecated `html_entity_decode`)
  2590. * Tweak: Element-ID as anchor has no smooth scroll - Added ability to pass element id to selectors ([#1333](https://github.com/elementor/elementor/issues/1333))
  2591. * Fix: Added margin top property in `.elementor-inner` class for better handling with fixed headers
  2592. = 1.2.4 - 2017-02-28 =
  2593. * Tweak: Improved embed google fonts in the front-end
  2594. * Tweak: Added selector in Button widget to override custom style in some themes ([#1285](https://github.com/elementor/elementor/issues/1285))
  2595. * Tweak: Load unminified color-picker.js file when `SCRIPT_DEBUG` is `true` ([#1364](https://github.com/elementor/elementor/issues/1364))
  2596. * Fix: Bug when dragging a column from a single-column section to another section ([#1346](https://github.com/elementor/elementor/issues/1346))
  2597. * Fix: Reduced padding for Progress Bar widget in mobile ([#1358](https://github.com/elementor/elementor/issues/1358))
  2598. * Fix: Descriptor field style in the repeater field
  2599. * Fix: Alt key for some keyboard input sources ([#1328](https://github.com/elementor/elementor/issues/1328))
  2600. = 1.2.3 - 2017-02-14 =
  2601. * Fix: Typography group data render ([Topic](https://wordpress.org/support/topic/erro-after-upgrading-to-version-1-2-2/))
  2602. = 1.2.2 - 2017-02-14 =
  2603. * Tweak: Added filter to change the menu anchor distance
  2604. * Tweak: Regenerate CSS run after editor saved for quicker saving
  2605. * Tweak: Major performance improvement by optimizing backend method calls
  2606. * Fix: Selector `elementor:after` added spacing after the Elementor content
  2607. * Fix: Removed inline CSS from default section in frontend
  2608. = 1.2.1 - 2017-02-08 =
  2609. * Fix: Change on Repeater control is not effect in the preview
  2610. * Fix: When you add a widget base on remote only is render twice
  2611. = 1.2.0 - 2017-02-01 =
  2612. * New: Added Gradient Background for Section and Column ([#71](https://github.com/elementor/elementor/issues/71))
  2613. * New: Added full caption functionality to Image Carousel widget ([#1212](https://github.com/elementor/elementor/issues/1212), [#1124](https://github.com/elementor/elementor/issues/1124), [#1197](https://github.com/elementor/elementor/issues/1197))
  2614. * New: Added Custom Element ID control for all elements ([#939](https://github.com/elementor/elementor/issues/939))
  2615. * New: Added Vertical layout option for Tabs widget ([#449](https://github.com/elementor/elementor/issues/449))
  2616. * Tweak: Elementor now generates an external CSS file instead of inline CSS for global fonts, colors and settings (Part 2 of [#325](https://github.com/elementor/elementor/issues/325))
  2617. * Tweak: Added Content Position option for each column
  2618. * Tweak: Regenerate CSS after running Replace URL
  2619. * Fix: Tabs on mobile now work like an Accordion widget to improve responsive design ([#443](https://github.com/elementor/elementor/issues/443))
  2620. * Fix: Improve query in Replace URL for some configurations ([#1191](https://github.com/elementor/elementor/issues/1191))
  2621. * Fix: Added `none` option for Text Transform typography control
  2622. * Fix: Bug when some controls left empty in Testimonial widget
  2623. = 1.1.7 - 2017-01-25 =
  2624. * Tweak: Change `box-shadow` type control from select to switcher
  2625. * Fix: On-loading glitch for Image Carousel widget
  2626. * Fix: Background attachment for Section on mobile devices ([#890](https://github.com/elementor/elementor/issues/890))
  2627. * Fix: Default WordPress widget checkboxes not holding values ([#1210](https://github.com/elementor/elementor/issues/1210))
  2628. * Fix: Heading with link custom color gone
  2629. * Fix: Jumping of panel when the `wp-color-picker` is active
  2630. * Deprecated: `Plugin::get_version()` method removed
  2631. = 1.1.6 - 2017-01-18 =
  2632. * Fix: Improving enqueue assets if Elementor exists on the page
  2633. * Fix: Inner Tabs in the section panel is broken
  2634. = 1.1.5 - 2017-01-17 =
  2635. * Fix: Cannot open editor panel on WP widgets
  2636. = 1.1.4 - 2017-01-17 =
  2637. * Tweak: Added compatibility for edit description tab with Elementor in WC product page
  2638. * Tweak: Performance improvement in the editor. Faster response time when interacting with elements.
  2639. * Fix: Broken responsive in Editor mode ([#1169](https://github.com/elementor/elementor/issues/1169))
  2640. * Fix: Animation happens twice above the fold ([#281](https://github.com/elementor/elementor/issues/281))
  2641. = 1.1.3 - 2017-01-15 =
  2642. * Tweak: Embed YouTube API just when is needed
  2643. * Tweak: Added post revisions support as default to any CPT Elementor is active on
  2644. * Fix: E-Icons font library correct files
  2645. * Fix: Prevent click event on parent elements when clicking inner element handle buttons
  2646. * Fix: Error message for import template
  2647. = 1.1.2 - 2017-01-12 =
  2648. * Fix: Clear browser caching from last new JS files
  2649. = 1.1.1 - 2017-01-11 =
  2650. * Fix: Revision history panel title
  2651. * Fix: Renamed content tab in Column to style
  2652. * Fix: Regenerate new Waypoints JS lib
  2653. = 1.1.0 - 2017-01-11 =
  2654. * New: Revision History (Based on WP Revisions)
  2655. * New: Added Tool for Replace Site URL in Elementor data
  2656. * New: Hotkey: Ctrl / Cmd + S = Save
  2657. * New: Hotkey: Ctrl / Cmd + P = Preview Mode
  2658. * New: Hotkey: Ctrl / Cmd + Shift + L = Open Library Modal
  2659. * New: Hotkey: Ctrl / Cmd + Shift + H = Go to Revision History
  2660. * New: Hotkey: Ctrl / Cmd + Shift + M = Mobile Editing Preview
  2661. * New: Added Background Overlay Settings for Column ([#810](https://github.com/elementor/elementor/issues/810))
  2662. * Tweak: Enqueue assets only if Elementor exists on the page
  2663. * Tweak: Move all element ID's in editor mode to classes (Start working on [#939](https://github.com/elementor/elementor/issues/939))
  2664. * Fix: Added missing translation strings for media modal ([#1126](https://github.com/elementor/elementor/issues/1126))
  2665. = 1.0.12 - 2017-01-05 =
  2666. * Fix: Library modal 'Insert' button
  2667. = 1.0.11 - 2017-01-04 =
  2668. * Fix: Some breaks from previous release
  2669. = 1.0.10 - 2017-01-04 =
  2670. * New: Added API docs for developers
  2671. * Tweak: Changed 'Prevent Scroll' control type to switcher in Map widget
  2672. * Tweak: Updated Dialog Manager v3.0.2
  2673. * Fix: Library modal 'Go Pro' button in FireFox
  2674. * Fix: Bug load Elementor in front page in some server configuration
  2675. * Fix: Ninja Forms widget conflict
  2676. * Deprecated: `elementor/frontend/enqueue_scripts/after` is no longer available
  2677. * Deprecated: `elementor/elements/print_template` is replaced by `elementor/element/print_template`
  2678. * Deprecated: `elementor/element_css/parse_css` is replaced by `elementor/element/parse_css`
  2679. = 1.0.9 - 2016-12-27 =
  2680. * Fix: Elementor library import remote template
  2681. = 1.0.8 - 2016-12-27 =
  2682. * Tweak: Added raw css support for stylesheet class ([#1086](https://github.com/elementor/elementor/issues/1086))
  2683. * Tweak: Improve memory used in the editor mode ([Topic](https://wordpress.org/support/topic/need-update-folks/))
  2684. * Fix: Issue with post-css-file in HTTPS ([#1077](https://github.com/elementor/elementor/issues/1077))
  2685. = 1.0.7 - 2016-12-25 =
  2686. * Fix: Validate export import for Elementor template
  2687. * Fix: Excluded `elementor_library` custom post type from the sitemap by Yoast SEO
  2688. * Fix: Prevent Scroll BUG in Google Map widget
  2689. * Fix: Added unique name for repeater control
  2690. = 1.0.6 - 2016-12-20 =
  2691. * New: Added social icons for Apple & Spotify
  2692. * New: Added Thousand Separator control for counter widget
  2693. * Tweak: Added Filter template types in library backend
  2694. * Tweak: Updated jQuery Numerator Plugin v0.2.1
  2695. * Fix: Added support for floating numbers in counter widget
  2696. * Fix: Removed limit from counter widget
  2697. * Deprecated: Removed `#elementor-section-wrap` ID from frontend output
  2698. * Deprecated: Removed `#elementor-inner` ID from frontend output
  2699. = 1.0.5 - 2016-12-18 =
  2700. * Tweak: Added VH unit in min-height control for section ([#764](https://github.com/elementor/elementor/issues/764))
  2701. * Fix: Bug with section-content-position in Columns widget
  2702. * Fix: Bug with stretched section
  2703. * Fix: Avoid fatal error for invalid widgets
  2704. * Deprecated: Removed `#elementor` ID from frontend output
  2705. = 1.0.4 - 2016-12-12 =
  2706. * Tweak: Added mobile editing options for social icons widget
  2707. * Fix: Icon alignment CSS issue (Icon and Icon-Box widget)
  2708. * Fix: Conflict panel with Safari browser
  2709. * Fix: Responsive grid bug with tablet screen
  2710. = 1.0.3 - 2016-12-11 =
  2711. * New: Ready for Elementor Pro
  2712. * Tweak: Added template type validation
  2713. * Fix: Select2 control fix empty state
  2714. = 1.0.2 - 2016-12-08 =
  2715. * Fix: Adjusting Text Editor widget when visual editor is disabled ([Topic](https://wordpress.org/support/topic/text-editing-menu-is-blank/))
  2716. * Fix: Conflict with Advanced TinyMCE plugin ([Topic](https://wordpress.org/support/topic/1-0-1-disabled-the-text-edit-widget/))
  2717. = 1.0.1 - 2016-12-08 =
  2718. * Fix: Waypoint script for multiple versions ([#933](https://github.com/elementor/elementor/issues/933), [#1001](https://github.com/elementor/elementor/issues/1001))
  2719. * Fix: Text Editor widget compatible for WordPress 4.7
  2720. * Fix: Label form compatible for TwentySeventy theme
  2721. = 1.0.0 - 2016-12-06 =
  2722. * New: Added code editor for HTML widget
  2723. * New: Added social icon for Houzz
  2724. * New: Added Code control base on ACE
  2725. * New: Added Tabs control for editor panel
  2726. * New: Forms style for future widgets
  2727. * Tweak: Update Waypoints library to v4.0.1
  2728. * Tweak: Added support for multiple icon fonts in Choose control
  2729. * Fix: Progress Bar "glitch" on page refresh ([#909](https://github.com/elementor/elementor/issues/909))
  2730. * Fix: post-css-file don't enqueue if isn't Elementor post ([#902](https://github.com/elementor/elementor/issues/902))
  2731. * Fix: Columns widget not render on search ([#862](https://github.com/elementor/elementor/issues/862))
  2732. * Fix: Conflict with Bootstrap 3 Shortcodes plugin ([#924](https://github.com/elementor/elementor/issues/924))
  2733. * Fix: Don't generate or enqueue CSS file if post not built with elementor
  2734. * Fix: Icon button RTL bug in tools page
  2735. * Fix: Color Picker control bug on FireFox
  2736. * Fix: Video background for section works again
  2737. * Fix: Draggable line for columns widget
  2738. = 0.11.2 - 2016-11-21 =
  2739. * Fix: Don't Generate CSS if it's not built with Elementor
  2740. * Fix: Global font goes wrong after changing weight ([#888](https://github.com/elementor/elementor/issues/888))
  2741. = 0.11.1 - 2016-11-17 =
  2742. * Fix: Columns widget bug with edit options
  2743. * Tweak: Changed breakpoint for tablet from 1023px to 1024px ([#860](https://github.com/elementor/elementor/issues/860))
  2744. = 0.11.0 - 2016-11-16 =
  2745. * New: Elementor now generates an external CSS file for each page instead of inline CSS ([#325](https://github.com/elementor/elementor/issues/325))
  2746. * New: Added a tool to regenerate Elementor pages CSS files
  2747. * New: Added TinyMCE editor for Repeater control, such as Tabs, Accordion and Toggle widgets ([#176](https://github.com/elementor/elementor/issues/176))
  2748. * New: Added Time Picker control for future widgets
  2749. * Tweak: 'Edit with Elementor' button color now uses the Admin Color Scheme
  2750. * Tweak: Improved style for Multiple Select2 control
  2751. * Tweak: Removed development mode flag
  2752. * Tweak: Elementor Icon library updated with new icons
  2753. * Tweak: Align button sizes as a new forms style
  2754. * Tweak: Panel width expanded for better comfortable editing
  2755. * Tweak: TinyMCE editor toolbar reduced to basic toolbar, for comfortable editing
  2756. = 0.10.7 - 2016-11-07 =
  2757. * Fix: Image widget template for link and caption ([Topic](https://wordpress.org/support/topic/image-not-aligning-when-linked/))
  2758. * Fix: Exclude Library from search ([Topic](https://wordpress.org/support/topic/custom-templates-accidentally-show-up-in-search-results/))
  2759. * Fix: HTML of text widget not being parsed in the preview ([Topic](https://wordpress.org/support/topic/html-of-text-widget-not-being-parsed-in-the-preview/))
  2760. * Fix: Add new section button in RTL
  2761. * Fix: Stretched section in RTL
  2762. * Fix: TinyMCE editor buttons in RTL
  2763. * Fix: Error messages for template library
  2764. = 0.10.6 - 2016-11-02 =
  2765. * Fix: Some breaks layouts from previous release
  2766. = 0.10.5 - 2016-11-02 =
  2767. * Tweak: Added Compatibility for Autoptimize Plugin ([Topic](https://wordpress.org/support/topic/open-link-in-new-tab-doesnt-work/))
  2768. * Tweak: Now `elementor_library` custom post type excluded from the sitemap by Yoast SEO ([Topic](https://wordpress.org/support/topic/disable-elementor_library-sitemap-xml/))
  2769. * Tweak: Added Compatibility for Zerif Pro theme
  2770. * Tweak: Added Compatibility for themes by Bluchic
  2771. * Tweak: Added Compatibility for jQuery Masonry Image Gallery plugin ([#762](https://github.com/elementor/elementor/issues/762))
  2772. * Tweak: Added support for "multiple value" condition in Repeater control
  2773. * Fix: Bug corrupting JSON post meta on import Elementor pages ([Topic](https://wordpress.org/support/topic/pages-importexport-not-working-properly/))
  2774. * Fix: `.elementor-slick-slider` class now apply on all Elementor custom slick theme ([#424](https://github.com/elementor/elementor/issues/424))
  2775. * Fix: Added subset support for Google Fonts to fix issues with some browsers
  2776. = 0.10.4 - 2016-10-26 =
  2777. * Tweak: Updated Font Awesome v4.7.0 (41+ icons)
  2778. * Tweak: Added type attribute for text input control
  2779. * Tweak: Improved import template from library
  2780. * Tweak: Removed admin email from system info copied
  2781. * Fix: Columns overlay layer for negative top margin scenario
  2782. * Fix: Added i18n strings to Delete All Content dialog
  2783. * Fix: Target blank link in heading widget - ([Topic](https://wordpress.org/support/topic/open-link-in-new-tab-doesnt-work/))
  2784. = 0.10.3 - 2016-10-13 =
  2785. * Fix: Hover animation classes for Image widget ([Topic](https://wordpress.org/support/topic/update-issue-animation/), [Topic](https://wordpress.org/support/topic/hover-animation-2/))
  2786. * Fix: Columns gap for all devices
  2787. * Fix: Added trigger for changes on Apply button
  2788. * Fix: Inner section class on front-end
  2789. = 0.10.2 - 2016-10-10 =
  2790. * Tweak: Added Apply button for Shortcode widget to trigger loading of external scripts
  2791. * Tweak: Restore action `elementor/widgets/widgets_registered`
  2792. * Fix: Conflict with old versions of Bfi_Thumb plugin
  2793. * Fix: Conflict with other plugins ([Topic](https://wordpress.org/support/topic/0-10-1-fatal-error-with-html-editor-syntax-highlighter/))
  2794. = 0.10.1 - 2016-10-09 =
  2795. * Fix: Image size default
  2796. = 0.10.0 - 2016-10-09 =
  2797. * New: Choose which colors appear in the editor's color picker. This makes accessing the colors you choose for the site much easier
  2798. * New: Clear the entire page content in one click ([#607](https://github.com/elementor/elementor/issues/607))
  2799. * New: Added image size control for Image widget ([#537](https://github.com/elementor/elementor/issues/537))
  2800. * New: Added social icon for Twitch.tv ([#694](https://github.com/elementor/elementor/issues/694))
  2801. * Tweak: Data stored in a JSON format instead of serialize, for smoother migration ([#403](https://github.com/elementor/elementor/issues/403))
  2802. * Tweak: Added Apply button for all WP widgets to trigger loading of external scripts
  2803. * Tweak: Adding a preview icon for repeater control ([#609](https://github.com/elementor/elementor/issues/609))
  2804. * Tweak: All widgets code rewritten to allow for better API flexibility
  2805. * Fix: Icon under 20px size now looks good
  2806. * Fix: Improve CSS for Icon list alignment ([#620](https://github.com/elementor/elementor/issues/620))
  2807. * Fix: Ninja Forms widget conflict ([#546](https://github.com/elementor/elementor/issues/546))
  2808. * Fix: Global Fonts Don't Show Up on Live Preview Screen ([#606](https://github.com/elementor/elementor/issues/606))
  2809. = 0.9.3 - 2016-09-26 =
  2810. * Tweak: New method for import template library
  2811. * Tweak: Changed priority for 3rd party plugins
  2812. * Fix: Conflict with WooCommerce Memberships
  2813. * Fix: Conflict with Lifter LMS ([#612](https://github.com/elementor/elementor/issues/612))
  2814. * Fix: Icon list correct alignment ([#620](https://github.com/elementor/elementor/issues/620))
  2815. * Fix: Reload the iframe causes the panel to stop working
  2816. = 0.9.2 - 2016-09-21 =
  2817. * Fix: Added color default for Progress Bar when schemes color is disabled
  2818. * Fix: Stretched section in RTL bug
  2819. = 0.9.1 - 2016-09-20 =
  2820. * Fix: Changed again "fit to screen" to height for "content position" support
  2821. = 0.9.0 - 2016-09-20 =
  2822. * New: Added stretch section control for all parent sections
  2823. * New: Added content width option to set the default width of the content area
  2824. * Tweak: Changed Fit to Screen to `min-height` for better behavior on mobile and content overflow scenarios.
  2825. * Tweak: Added Switcher control for editor panel ([#143](https://github.com/elementor/elementor/issues/143))
  2826. * Tweak: Improved Integration with 3rd party plugins and themes
  2827. * Fix: Hidden templates library items from nav menu
  2828. * Fix: Added color default for Button and Icon when schemes color is disabled
  2829. * Fix: Added default size for the Heading widget - ([#533](https://github.com/elementor/elementor/issues/533))
  2830. * Fix: Button border color hover control - only shown when border is set
  2831. = 0.8.1 - 2016-09-11 =
  2832. * Tweak: Changed prevent scroll default to `Yes` for Maps widget
  2833. * Tweak: Removed `asp_tags` requirements
  2834. * Tweak: Added alignment responsive support for Image Box and Icon Box widgets
  2835. * Tweak: Added mobile editing for Spacer widget
  2836. * Tweak: Added title spacing for Image Box and Icon Box
  2837. * Tweak: Removed quick link to Edit with Elementor for non-Elementor pages ([#539](https://github.com/elementor/elementor/issues/539))
  2838. * Fix: Correcting title link color in Image Box widget ([#531](https://github.com/elementor/elementor/issues/531))
  2839. * Fix: Resolved responsive bug in Image Gallery widget
  2840. * Fix: Resolved bug in editor for Safari ([#530](https://github.com/elementor/elementor/issues/530), [#540](https://github.com/elementor/elementor/issues/540))
  2841. = 0.8.0 - 2016-09-07 =
  2842. * New: Added columns ordering on mobile normal / reverse
  2843. * New: Now you can edit section and column in tablet or mobile mode
  2844. * New: Set font-size per device in Typography control
  2845. * New: Set line-height per device in Typography control
  2846. * New: Set letter-spacing per device in Typography control
  2847. * New: Set padding per device in Advanced tab
  2848. * New: Set margin per device in Advanced tab
  2849. * New: Heading widget - Set alignment per device
  2850. * New: Button widget - Set alignment per device
  2851. * New: Image widget - Set alignment per device
  2852. * New: Icon widget - Set alignment per device
  2853. * New: Divider widget - Set alignment per device
  2854. * New: Icon List Widget - Set alignment per device
  2855. * Tweak: Elementor Library connection status indicator added in System Info
  2856. * Tweak: Default content-width is now set by css and not by the panel
  2857. * Tweak: Added shortcode and oEmbed support for Tabs / Accordion / Toggle / Text Editor widgets
  2858. * Tweak: Removed Default font size in custom option
  2859. * Tweak: Hide update notice from outside Elementor
  2860. * Tweak: Removed mobile-landscape and laptop sizes from preview mode
  2861. * Tweak: Rearrange TinyMCE buttons ([#444](https://github.com/elementor/elementor/issues/444))
  2862. * Tweak: Changed range for font size control
  2863. * Tweak: Compatibility with `asp_tags`
  2864. * Tweak: Improved compatibility for old webkit browsers ([#484](https://github.com/elementor/elementor/issues/484), [#403](https://github.com/elementor/elementor/issues/403), [#370](https://github.com/elementor/elementor/issues/370))
  2865. * Fix: Removed style from gallery caption
  2866. * Fix: Wrong index in section sorting
  2867. * Fix: Column indication on inner section dragging
  2868. * Fix: Gap for Columns Widget (nested section)
  2869. * Fix: Preview mode with real sizes for mobile and tablet
  2870. * Fix: Sortable inner section not showing placeholder
  2871. * Fix: Network plugins included in System Info
  2872. * Deprecated: Column width option for mobile portrait is deprecated. Use Mobile Width option instead
  2873. = 0.7.4 - 2016-08-24 =
  2874. * New: Added Shortcode widget
  2875. * Tweak: Now compatible with password protected pages
  2876. * Fix: Library RTL bug in template preview
  2877. * Fix: Bug with `p` tag in Icon Box widget
  2878. * Fix: Style in Icon widget
  2879. * Fix: HTML widget now is working
  2880. = 0.7.3 - 2016-08-19 =
  2881. * Fix: Allow columns gap on mobile
  2882. * Fix: Content position for section
  2883. = 0.7.2 - 2016-08-18 =
  2884. * Tweak: Hide add section area for mobile device
  2885. * Tweak: Optimization assets files
  2886. * Fix: Intrusive Slick Carousel CSS ([#424](https://github.com/elementor/elementor/issues/424))
  2887. * Fix: Display content position for custom height section option
  2888. = 0.7.1 - 2016-08-17 =
  2889. * Tweak: Added column/content position for inner section
  2890. * Tweak: Block template library in the frontend
  2891. * Fix: Export template ([topic](https://wordpress.org/support/topic/template-export-not-working-in-070))
  2892. * Fix: Fatal Error during update plugin ([#412](https://github.com/elementor/elementor/issues/412))
  2893. * Fix: Separating link attributes from classes attributes in Icon Box widget ([#414](https://github.com/elementor/elementor/issues/414))
  2894. * Fix: Allow column and content position for mobile
  2895. * Fix: Removed `overflow: hidden` from `#elementor-inner` ([#415](https://github.com/elementor/elementor/issues/415))
  2896. * Fix: Aspect ratio issue for Video widget ([topic](https://wordpress.org/support/topic/video-embeds-have-black-bars-top-and-bottom))
  2897. * Fix: Image Carousel "slides to show" on tablet ([#372](https://github.com/elementor/elementor/issues/372))
  2898. * Fix: RTL style for library
  2899. * Fix: Handle errors on wrong export action
  2900. = 0.7.0 - 2016-08-16 =
  2901. * New: Template Library ([Release Post](https://elementor.com/introducing-template-library/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme))
  2902. * New: Save your pages and sections to template library
  2903. * New: 20+ beautifully pre-designed templates
  2904. * New: Export / Import templates
  2905. * Fix: Changed code structure in Icon/Icon-Box/Social-Icons widget templates
  2906. * Fix: Screen size for hidden tablet class
  2907. * Fix: Blank page detection in empty pages for editing
  2908. = 0.6.6 - 2016-08-11 =
  2909. * Tweak: Improved Drag & Drop area to new section
  2910. * Tweak: Make changes in new section
  2911. * Fix: Resize columns with Widgets using iframe (YouTube, Google Maps, etc)
  2912. * Fix: Adding columns widget in 'Add new Section' area
  2913. * Fix: Allow blank target link for social-icons widget
  2914. = 0.6.5 - 2016-08-08 =
  2915. * Tweak: Added border and box shadow controls for Image widget ([#224](https://github.com/elementor/elementor/issues/244))
  2916. * Tweak: In new page don't create empty section
  2917. * Tweak: Embed Roboto font from Google Fonts in editor mode
  2918. * Fix: Reset structure or remove column after resize
  2919. = 0.6.4 - 2016-08-04 =
  2920. * Tweak: Google Fonts list updated ([#371](https://github.com/elementor/elementor/pull/371))
  2921. * Fix: Content overflow in "fit to screen" sections for mobile ([#369](https://github.com/elementor/elementor/issues/369))
  2922. * Fix: Icon Box Widget: Better support for Safari browser
  2923. * Fix: Text Editor Widget: Added listening to undo & redo events ([#340](https://github.com/elementor/elementor/issues/340))
  2924. = 0.6.3 - 2016-08-01 =
  2925. * Tweak: Show element title in delete dialog ([#337](https://github.com/elementor/elementor/pull/337))
  2926. * Tweak: Added responsive support for Image Gallery widget ([topic](https://wordpress.org/support/topic/galery-not-responsive))
  2927. * Tweak: CSS files for entrance animation and hover animations combine to `animations.min.css` file
  2928. * Fix: Columns resize cannot be repeated ([#349](https://github.com/elementor/elementor/issues/349))
  2929. * Fix: Anchor Menu widget in Safari browser
  2930. * Fix: Bug when global font set as a default ([topic](https://wordpress.org/support/topic/font-family-bug))
  2931. = 0.6.2 - 2016-07-27 =
  2932. * Tweak: Improve the way using attachment details
  2933. * Tweak: Verifies the AJAX request to prevent processing requests external of the editor
  2934. * Fix: Hover animation classes in Image widget
  2935. * Fix: Icon spacing on mobile in Icon Box widget
  2936. * Fix: Image spacing on mobile in Image Box widget
  2937. = 0.6.1 - 2016-07-26 =
  2938. * Tweak: Improved editor UI for blank pages
  2939. * Fix: Hide empty widgets in preview mode
  2940. * Fix: Bug with Section background overlay and background video ([#323](https://github.com/elementor/elementor/issues/323))
  2941. * Fix: Minor security issue
  2942. = 0.6.0 - 2016-07-25 =
  2943. * New: Added 27 Hover Animations for Image / Icon / Button widgets
  2944. * New: Editor panel now is resizable
  2945. * New: Added smooth scrolling for anchors in Anchor Menu widget
  2946. * Tweak: Improved performance
  2947. * Tweak: Improved speed in live editing
  2948. * Tweak: Optimization for memory usage (30% less!)
  2949. * Tweak: Improved UI for preview editor
  2950. * Tweak: Add `contain` background image CSS option ([#297](https://github.com/elementor/elementor/pull/297))
  2951. * Tweak: Added compatibility for NextGen Gallery plugin ([#296](https://github.com/elementor/elementor/issues/296))
  2952. * Tweak: Print JS scripts in the footer
  2953. * Tweak: Set color picker control `alpha` for all widgets
  2954. * Fix: Remove `maxlength` attribute from color picker input ([#298](https://github.com/elementor/elementor/issues/298))
  2955. * Fix: Background video: Set object-fit only HTML5 player (solved Safari YouTube issue)
  2956. * Fix: Bug with target blank link in Icon List widget
  2957. * Fix: Bug with alignment in Icon List widget ([#283](https://github.com/elementor/elementor/issues/283))
  2958. * Fix: Improved responsive in Tabs widget ([#279](https://github.com/elementor/elementor/issues/279))
  2959. * Fix: RTL bug in Alert widget ([#287](https://github.com/elementor/elementor/issues/287))
  2960. = 0.5.2 - 2016-07-17 =
  2961. * New: Added Animation Duration control for all elements
  2962. * New: Added Prevent Scroll control for Google Maps widget
  2963. = 0.5.1 - 2016-07-14 =
  2964. * Tweak: Added details image sizes in Image Sizes control
  2965. * Fix: Chrome bug with flex mode in Image Box widget
  2966. * Fix: Textarea control: set `label_block` to `true` by default
  2967. * Fix: Textarea control style for Icon Box Widget
  2968. * Fix: Removed translations from system-info for better understanding support
  2969. * Fix: Design fixes for Icon List widget
  2970. = 0.5.0 - 2016-07-13 =
  2971. * New: Added more than 35 Entrance Animations to all elements
  2972. * New: Added Box Shadow control to all elements
  2973. * Tweak: Added option to disable colors palettes in the settings
  2974. * Tweak: Added option to disable fonts default in the settings
  2975. * Tweak: Added hidden title to alert & image box widgets
  2976. * Tweak: Added group posts widget from Pojo themes
  2977. * Tweak: Remove extra margin bottom on Textarea ([#182](https://github.com/elementor/elementor/issues/182))
  2978. * Tweak: Applying border-radius on background overlay ([#249](https://github.com/elementor/elementor/issues/249))
  2979. * Tweak: Fixed toggle widget RTL style
  2980. * Tweak: Updated Font Awesome v4.6.3
  2981. * Tweak: Changed Textarea control markup according to the general concept
  2982. * Tweak: Fixed modal RTL style
  2983. * Fix: Fade effect in Image Carousel widget ([#245](https://github.com/elementor/elementor/issues/245), [#253](https://github.com/elementor/elementor/issues/253))
  2984. * Fix: Don't print anything when no have link in Video widget
  2985. = 0.4.1 - 2016-07-05 =
  2986. * Tweak: Default structure presets changed for new section
  2987. * Tweak: Added more strings to translate
  2988. * Fix: Fixed alignment for Image widget
  2989. * Fix: Some compatible to underscore 1.6.0 (Bundle from WordPress v4.4)
  2990. = 0.4.0 - 2016-07-04 =
  2991. * New: Section: Background Overlay for image and video background
  2992. * New: Added Social Icons widget
  2993. * New: Added Testimonial widget
  2994. * New: Added SoundCloud (Audio) widget
  2995. * Tweak: Fixed Bug with background in Image widget ([#180](https://github.com/elementor/elementor/issues/180))
  2996. * Tweak: Assign a field to be used as the item title for Repeater control
  2997. * Tweak: Rearrange column settings panel
  2998. * Tweak: Add link to carousel widget
  2999. * Fix: Bug carousel widget with `dir="rtl"`
  3000. = 0.3.2 - 2016-06-27 =
  3001. * Tweak: Added fully compatible for Cache plugins
  3002. * Tweak: Image widget: `<img>` alt and title fetch from Media library
  3003. * Tweak: Image widget: Added link to file media
  3004. * Tweak: Image-Box widget: `<img>` alt and title fetch from Media library
  3005. * Tweak: Carousel widget: `<img>` alt fetch from Media library
  3006. * Tweak: Add more columns options for responsive mode
  3007. * Tweak: Add `<title>` in Elementor editor
  3008. * Tweak: Rearranged section settings
  3009. * Tweak: Add more gap size (Wider)
  3010. * Tweak: Add more color schemes
  3011. * Tweak: Add negative value for letter spacing
  3012. = 0.3.1 - 2016-06-22 =
  3013. * Tweak: Added a quick tour video for Elementor
  3014. * Tweak: Enqueue YouTube API from JS (Better compatible for more themes)
  3015. * Tweak: Added compatible to WooCommerce widgets
  3016. * Tweak: Fixes re-render elements performance
  3017. * Fix: Border & Radius options for Image Carousel widget
  3018. = 0.3.0 - 2016-06-21 =
  3019. * New: Added Image Gallery widget
  3020. * New: Added Image Carousel widget
  3021. * Tweak: Fixed schemes area
  3022. * Tweak: Added spacing icon in Button widget
  3023. * Fix: Themes without `the_content()` stop the Editor
  3024. * Fix: Height option in Columns widget
  3025. = 0.2.5 - 2016-06-16 =
  3026. * Tweak: Added Vimeo support for widget Video
  3027. * Tweak: Improved UI in admin area and panel
  3028. * Tweak: Added body class `elementor-page` in frontend ([#58](https://github.com/elementor/elementor/issues/58))
  3029. * Fix: Elementor seems to get stuck while loading ([#77](https://github.com/elementor/elementor/issues/77))
  3030. * Fix: WP Widgets with multiple checkboxes ([#90](https://github.com/elementor/elementor/issues/90))
  3031. = 0.2.4 - 2016-06-13 =
  3032. * Tweak: Added some compatible to Cache plugins
  3033. * Tweak: Added shortcode support in Text Editor widget
  3034. * Tweak: Added title attribute for Image and Image Box widgets
  3035. * Fix: Replace icon for Icon Box widget with the right icon
  3036. * Fix: Scroll issue in Safari browser ([topic](https://wordpress.org/support/topic/scroll-issue-in-safri))
  3037. * Fix: Text alignment justify ([topic](https://wordpress.org/support/topic/on-text-aligning))
  3038. = 0.2.3 - 2016-06-08 =
  3039. * Tweak: Added HTML tag control for icon box title
  3040. = 0.2.2 - 2016-06-08 =
  3041. * Tweak: Minor change from the last release
  3042. = 0.2.1 - 2016-06-08 =
  3043. * New: Icon Box widget
  3044. = 0.2.0 - 2016-06-07 =
  3045. * New: Image Box widget
  3046. * Tweak: Added reset preset section structure
  3047. * Tweak: Fixed visibility mobile for small-screen
  3048. = 0.1.7 - 2016-06-06 =
  3049. * Tweak: Changed default image size control
  3050. * Fix: Custom CSS Classes in frontend
  3051. = 0.1.6 - 2016-06-05 =
  3052. * Tweak: Improved speed live edit
  3053. * Tweak: Background Control: Removed default image
  3054. * Tweak: Add responsive tab on section element
  3055. * Tweak: Responsive mode: fixed included visibility style
  3056. * Fix: Tabs & Accordion Widgets: indexes detection fixed
  3057. = 0.1.5 - 2016-06-03 =
  3058. * Tweak: Add check for `asp_tags` php config
  3059. = 0.1.4 - 2016-06-02 =
  3060. * New: Added new widget: Spacer
  3061. * Tweak: Added default category for widgets
  3062. * Tweak: Added size and opacity controls for Image widget
  3063. * Tweak: Added fallback font for custom fonts
  3064. * Tweak: Added development mode flag (filter `elementor/utils/is_development_mode`)
  3065. * Fix: Issue with duplicate after element sort
  3066. = 0.1.3 - 2016-06-01 =
  3067. * New: Added background video for all formats
  3068. * Tweak: Pojo Framework & Themes supported
  3069. * Tweak: Updated Elementor Icons v1.1
  3070. * Tweak: Added elements categories in the panel
  3071. * Fix: UI bug with WordPress widgets (panel)
  3072. * Fix: Remove fallback image placeholder in background video
  3073. = 0.1.2 - 2016-05-31 =
  3074. * Tweak: Added structure control for section element
  3075. * Tweak: Elementor Icons moved to lib (standalone)
  3076. * Fix: Better check if YouTube API is loaded
  3077. * Fix: Fixed applying value in dimensions
  3078. * Fix: Bug in resize columns
  3079. = 0.1.1 - 2016-05-30 =
  3080. * Tweak: Added alpha for background color (Button Widget)
  3081. * Tweak: Added string context and moved to WP translate repo
  3082. * Tweak: Icon Box: removed alt text control
  3083. * Fix: content position in full height section
  3084. = 0.1.0 - 2016-05-30 =
  3085. * Initial Public Beta Release