-
Notifications
You must be signed in to change notification settings - Fork 11
/
changelog.txt
1588 lines (1520 loc) · 69.7 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version 2.7.10 ( updated 08-18-2016 )
- Fixed the issue with the Divi Builder not loading on some websites due to loading delay of TinyMCE in the latest version of WordPress.
* includes/builder/scripts/builder.js
version 2.7.9 ( updated 08-15-2016 )
- Fixed settings page font issues in WordPress 4.6
* core/admin/css/core.css
* core/functions.php
* epanel/core_functions.php
* epanel/css/panel.css
* includes/builder/functions.php
* includes/builder/layouts.php
* includes/builder/styles/notification_popup_styles.css
* includes/builder/styles/roles_style.css
* includes/builder/styles/style.css
version 2.7.8 ( updated 06-25-2016 )
- Added Google Maps API setting ( Google no longer support keyless access )
* options_divi.php
* includes/builder/framework.php
* includes/builder/functions.php
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
* includes/builder/styles/style.css
version 2.7.7 ( updated 06-23-2016 )
- Fixed the issue with some custom hover styles not working for Buttons
* includes/builder/class-et-builder-element.php
- Text Module: Removed excessive padding that was mistakenly added to the final paragraph
* style.css
version 2.7.6 ( updated 06-21-2016 )
- Fixed the issue with scroll-to position for anchor links that was calculated before the page had fully loaded
* functions.php
* js/custom.js
* options_divi.php
- Fixed unwanted collapse on mega menu's fourth column in RTL layout
* style.css
* rtl.css
- Fixed unwanted spacing caused by setting menu height when vertical nav option is activated
* functions.php
* js/theme-customizer-controls.js
* js/theme-customizer.js
* style.css
- Login module: Replaced deprecated get_currentuserinfo() function
* includes/builder/main-modules.php
- Fixed the error when sub-menu requires 2 clicks on some devices
- Accordion module: Fixed a bug which appears when clicking toggle title if vertical nav is activated
* includes/builder/scripts/frontend-builder-scripts.js
- Contact Module: Changed email field requirement
* includes/builder/main-modules.php
- Fixed the issue with Magnific Popup script on default galleries
* includes/builder/functions.php
* styles.css
- Slider Module: Fixed the issue with Background Video, shown in Fullscreen on iOS devices
* includes/builder/scripts/frontend-builder-scripts.js
- Button Module: Fixed Custom padding inside the module
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
- Slider module: Fixed some issues with Advanced settings / Header Font Size option on mobile
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
* style.css
- Text Module: Added header font options
* includes/builder/class-et-global-settings.php
* includes/builder/main-modules.php
- Fixed different aspect ratio for embedded video on post content and post format's content
* includes/builder/functions.php
- Added wider margin for aligned images
- Mega Menu: Fixed some issues with links positions
* style.css
version 2.7.5 ( updated 05-16-2016 )
- Fixed issue where incorrect margin values were used in the Shop module.
* epanel/shortcodes/css/shortcodes.css
- Fixed issue where Slide In header style was closed when an internal link was clicked.
* scripts/frontend-builder-global-functions.js
- Fixed the issue with Page Builder styles, missing for non-admin users
* core/init.php
- Fixed issue that caused menu items to stack in mega menus with more than 5 sub menus.
* style.css
version 2.7.4 ( updated 05-10-2016 )
- "Below posts and above comments" code integration is now placed in the correct location on post pages.
* single.php
- Links inside of gallery module captions will now function correctly.
* includes/builder/scripts/frontend-builder-scripts.js
- Added missing structured data classes to the Post Title modules.
* includes/builder/main-modules.php
- Fullwidth Portfolio module images will now crop to a more optimal size.
* includes/builder/main-modules.php
* post_thumbnails_divi.php
- Custom row padding in the Divi Builder will no longer be overwritten by custom row padding in from the Theme Customizer.
* includes/builder/main-structure-elements.php
- Updated core and epanel submodules to latest versions (Fonts files were moved to /core. If you are currently calling these font files, your CSS files should be updated with new file paths).
* /core
* /epanel
- Updated Google+ icon to match the new Google+ logo & branding guidlines.
* core/admin/fonts
- Fixed "Theme Options / Post Meta" settings
* epanel/core_functions.php
- Improved alignment in the Fullwidth Header module
* style.css
version 2.7.3 ( updated 04-13-2016 )
- Fixed the update notification text in WordPress 4.5
* core/admin/includes/class-updates.php
version 2.7.2 ( updated 04-12-2016 )
- Theme Options Page: Added option to configure auto updates from the ePanel
* epanel/core_functions.php
* epanel/css/panel.css
* epanel/custom_functions.php
* epanel/js/functions-init.js
* epanel/js/wp-color-picker-alpha.min.js
* /core
- Customizer: Fixed the issue with Responsive preview in WordPress 4.5
* css/theme-customizer-controls-styles.css
* functions.php
* js/theme-customizer-controls.js
version 2.7.1 ( updated 04-01-2016 )
- Theme Options Page: Fixed modal windows vertical alignment
* epanel/css/panel.css
* epanel/js/functions-init.js
- Code Module: Fixed the issue with broken images with names that have "x" letter
* includes/builder/functions.php
- Fixed some issues with Split Test setup "cancel" action
* includes/builder/scripts/builder.js
version 2.7 ( updated 03-30-2016 )
- Added Split Testing feature
- Added option to configure Gutter Width for individual pages
- Added option to configure Light/Dark text color for individual pages
- Added option to configure Content Area and Section background color for individual pages
- Added option to define custom css for individual pages
- Added ability to import/export Customizer settings, ePanel settings, Roles settings and Layouts of particular posts/pages made with Divi Builder
- Improved import/export of Divi Library
- Added option to configure color palette for color pickers in Divi Builder
- Added mechanism which diagnoses common issues in Divi Builder ( such as cached files, low memory limit, etc ) and helps to resolve them
* /includes/builder
* /epanel
* functions.php
- Added "Disable Global" option into right click menu
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Added option to defined the item color for excluded option in pricing table module
* includes/builder/main-modules.php
- Improved Accordion module to make it automatically scroll to the title of active tab
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the issue when parallax background is not recalculated if error in contact form occurs
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the typing lag with Yoast plugin
* includes/builder/scripts/builder.js
- Updated jQuery-UI scripts to 1.11 version in support of upcoming WordPress 4.5
* includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js
* includes/builder/scripts/builder.js
* includes/builder/functions.php
- Fixed the issue when php warning in preg_replace_callback() function appears in some cases
* includes/builder/core.php
* includes/builder/functions.php
- Fixed the issue with image overlay size in image module
* includes/builder/styles/frontend-builder-style.css
- Fixed the issue when predefined layouts are not showing with WPML
* includes/builder/core.php
- Fixed the issue when Yoast SEO analysis didn't work properly with Divi Builder shortcodes
* includes/builder/framework.php
* includes/builder/core.php
- Fixed conflicts with events manager plugin
* includes/builder/core.php
* includes/builder/framework.php
- Fixed the issue with Column padding option for smartphones
* includes/builder/class-et-builder-element.php
- Fixed the issue with comments appearance on small screens
* includes/builder/styles/frontend-builder-style.css
- Fixed the issue with incorrect number of posts in "mine" field in the Divi Library
* includes/builder/functions.php
- Fixed the issue when animation is not triggered for the very bottom elements on the page and they never become visible
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the issue with appearance of WooCommerce cart page on tablet screens
* css/main-styles.css
version 2.6.4.4 ( updated 02-25-2016 )
- Fixed the issue when Customizer is not saving settings
* includes/builder/framework.php
version 2.6.4.3 ( updated 02-24-2016 )
- Added several performance enhancements. Those experiencing slow builder loads, server slowdown or 500 errors should update to fix these issues.
* includes/builder/class-et-builder-element.php
* includes/builder/core.php
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Fixed issue where < br > tags were replaced with physical line breaks in the post editor while in Text mode.
* includes/builder/scripts/builder.js
- Fixed issue where new categories and widget areas did not appear in Divi Builder module settings.
* includes/builder/core.php
version 2.6.4.2 ( updated 02-20-2016 )
- Page Builder: Fixed Text Formatting Issues
* includes/builder/scripts/builder.js
- Page Builder: Page Load Speed Improvements
* includes/builder/class-et-builder-element.php
* includes/builder/functions.php
* includes/builder/scripts/builder.js
version 2.6.4.1 ( updated 02-18-2016 )
- Fixed escaping issues in comment count
* includes/builder/functions.php
- Fixed the issue with line breaks, stripped from modules in Page Builder
* includes/builder/scripts/builder.js
version 2.6.4 ( updated 02-17-2016 )
- IMPORTANT: Fixed critical privilege escalation security vulnerability that, if properly exploited, could allow unprivileged registered WordPress users to perform a subset of actions within the Divi Builder, including the potential to manipulate posts.
* For more detailed information, please refer to the full public disclosure that was emailed to all customers on 2-17-2016: http://bit.ly/1Q9P13N
- Added clear cache warning to remind users to clear their cache when Divi Builder files have been updated.
* includes/builder/functions.php
- Reduced PHP memory usage within the Divi Builder to help reduce errors on hosting accounts with low memory limits.
* includes/builder/class-et-builder-element.php
version 2.6.2 ( updated 02-04-2016 )
- Fixed issue with malformed search for appearing the in the Theme Customizer
* header.php
* js/theme-customizer.js
- Fixed issue with blog module pagination not functioning correctly in some situations.
* functions.php
- Fixed issue with broken Divi Theme Options styling when the parent theme name was changed.
* functions.php
* epanel/core_functions.php
- Added excerpt support for pages.
* epanel/custom_functions.php
- Fixed bug where clearing selected color failed in some situations.
* scripts/builder.js
- Fixed bug that caused Admin Labels to not be available for Sections.
* includes/builder/main-structure-elements.php
- Fixed bug where responsive padding values where applied to the incorrect breakpoint in the Post Slider module.
* includes/builder/main-modules.php
- Fixed bug where custom column CSS classes were incorrectly applied to the parent Row in some situations.
* includes/builder/scripts/frontend-builder-scripts.js
- Removed the inapplicable Read More button from the tinyMCE editor when used inside the Divi Builder.
* includes/builder/functions.php
- Fixed bug that caused various plugin incompatibilities.
* includes/builder/layouts.php
* includes/builder/functions.php
* includes/builder/template-preview.php
version 2.6.1 ( updated 01-25-2016 )
- Fixed bug where builder would not load in certain browsers
* includes/builder/scripts/builder.js
- Fixed bug where ePanel CSS would not load when a child theme was enabled.
* epanel/core_functions.php
version 2.6 ( updated 01-25-2016 )
- Customizer: Added standard fonts
* functions.php
* includes/builder/functions.php
- Added option to display project navigation on projects created with Page Builder
* includes/builder/scripts/builder.js
* single-project.php
- Added option to enable/disable Divi gallery for [gallery] shortcode
* includes/builder/functions.php
- Fixed the issue when default accent color not being used for background color
* functions.php
- Fixed the issue when page container top padding not updated correctly on resize
* js/custom.js
- Fixed the issue with header animation in IE11
- Added fixed header default height
- Fixed vertical nav sidebar styling issues
- Removed IE's clear input button on search input fields
- Fixed the issue with appearance of Woocommerce 2.5 cart page on mobile screens
* css/main-styles.css
- Fixed the issue with excluding more than one category for menu on epanel
* epanel/custom_functions.php
- Added option to configure the orientation of vertical navigation
* css/main-styles.css
* functions.php
* js/theme-customizer-controls.js
* js/theme-customizer.js
- Added Slide In and Fullscreen header styles
* css/main-styles.css
* css/theme-customizer-controls-styles.css
* functions.php
* header.php
* includes/functions/choices.php
* js/custom.js
* js/theme-customizer.js
- Customizer: Fixed the issue when custom widget areas not displaying in theme Customizer
* et-pagebuilder/et-pagebuilder.php
- ePanel: Updated ePanel To Look Like Divi
* /epanel
- Customizer: Fixed menu bar appearance in customizer when secondary menu is empty
* header.php
* js/custom.js
* js/theme-customizer.js
- Customizer: Fixed the issue with Background Image Stretch setting not working before first save
* functions.php
- Fixed the issue with duplicated video on video post format when YOAST SEO plugin is used
* functions.php
* single.php
- Fixed the issue with localization of WooCommerce items in header
* functions.php
* single.php
- Updated Waypoints library to version 4.0.0
* includes/builder/scripts/waypoints.min.js
- Fixed reset color picker to default error
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
- Fixed the issue with wrong appearance of reset button for the Font options
* includes/builder/class-et-builder-element.php
- Fixed JetPack Related Posts unwanted shortcode
* includes/builder/functions.php
- Fixed the issue with Video Post format when the first uploaded video is not updated if it's replaced by another video
* includes/builder/functions.php
- Fixed the issue with modules saving when limited tabs available for user
* includes/builder/class-et-builder-element.php
- Fixed the isue with missing "delete" button on custom widget areas
* includes/builder/scripts/ext/widgets.js
- Fixed incorrect divi builder icon placement in RTL layout
* includes/builder/styles/style.css
- Fixed translation issues in various modules
* includes/builder/framework.php
* includes/builder/functions.php
- Gallery Module: Fixed image overlay styling in Safari
* includes/builder/styles/frontend-builder-style.css
- Fixed the issue when custom widget areas not displaying in theme customizer
* includes/builder/functions.php
- Fixed JetPack Related Posts unwanted shortcode issue
* includes/builder/functions.php
- Сontact Form Module: Improved email validation
* includes/builder/scripts/frontend-builder-scripts.js
- Сontact Form Module: Improved spam protection
- Сontact Form Module: Added ability to add/remove/sort fields
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.css
- Fixed the issues with translation in Russian localization files
* includes/builder/languages/ru_RU.po
* includes/builder/languages/ru_RU.mo
- Fixed the issue with preview error in library
* includes/builder/layouts.php
- Page Builder: Fixed the issue with CTRL+Z not working inside input fields
* includes/builder/builder.js
- Page Builder: Fixed the issue with disappearing predefined layouts sometimes
* includes/builder/layouts.php
- Page Builder: Added animations to Modals and different elements in Builder interface
* includes/builder/styles/style.css
* includes/builder/builder.js
- Added overlay option for the Blog and Image modules
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
* includes/builder/styles/frontend-builder-style.css
- Added Image overlay and Text overlay options for the Slider module
* includes/builder/main-modules.php
* includes/builder/styles/frontend-builder-style.css
- Added missing reset button for Columns advanced settings
* includes/builder/class-et-builder-element.php
- Slider Module: Fixed the Hide CTA on mobile and Hide Content on mobile options
* includes/builder/main-modules.php
- Fixed the issue with duplicated entries in "Built For" filter in Library
* includes/builder/functions.php
* includes/builder/layouts.php
- Moved CSS Class and CSS ID options on Custom CSS tab
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
- Page Builder: Optimized the Builder loading and made load faster
* includes/builder/class-et-builder-element.php
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Removed all monarch share button from preview screen
* includes/builder/styles/preview.css
- Fullwidth Portfolio: Added Advanced settings
* includes/builder/main-modules.php
- Fixed the issue when playing audio module stopped video background
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the issue with saving a row or section as global when it contains global items
* scripts/builder.js
- Accordion Module: Fixed the issue with Open/Closed toggle text color option.
* includes/builder/main-modules.php
- Custom CSS: Improved custom css options and made the selector visible for each option
- Custom CSS: Added useful css options to various modules
- Custom CSS: Added custom css options to columns
- Added Responsive Settings to various options in Builder
- Added Option to hide module/row/section on certain devices ( Phone, Tablet, Desktop )
* Almost all files updated in the /framework directory
- Added support of swipe gestures in Slider modules
* includes/builder/frontend-builder-scripts.js
* includes/builder/framework.php
- Added Posts Nav module
- Added Search module
- Added Button module
- Added Comments module
- Added Posts Slider module
- Added Fullwidth Posts Slider module
* includes/builder/main-modules.php
- Added system to sync the default Advanced Settings of child modules with current values of parent module
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
version 2.5.9 ( updated 12-14-2015 )
- Fixed the issue with SEO titles, not working in ePanel
* epanel/custom_functions.php
- Bumped version number
* style.css
version 2.5.8 ( updated 12-08-2015 )
- Fixed the issue with permalinks when Yoast plugin is activated and page contains Blog or Portfolio module
* includes/builder/functions.php
- Bumped version number
* style.css
version 2.5.7 ( updated 12-07-2015 )
- Customizer: Fixed checkboxes position in WordPress 4.4
* css/theme-customizer-controls-styles.css
- Customizer: Fixed the issue with some default styles printed out on front-end
- Customizer: Fixed the issue with copying Color field custom values
- Customizer: Fixed the issue with Logo resizing with Centered Navigation header style and Fixed Nav enabled
- Customizer: Fixed blog header spacing sanatizing callback to allow negative values
- Fixed the issue with some ET Settings not saved on custom post type pages
* functions.php
* includes/builder/functions.php
- Fixed the issue with layout padding top value, calculated incorrectly on a post page, using Page Builder, with at least 1 comment
* js/custom.js
- Page Builder: Fixed Close Preview button position in WordPress 4.4
- Page Builder: Fixed the issue with expand/collapse button outline in WordPress 4.4
* includes/builder/styles/style.css
- Page Builder: Fixed the error with Rows Duplication, where columns count became incorrect
- Page Builder: Fixed the issue with Global Modules Admin Label reset, when a module is being duplicated
* includes/builder/scripts/builder.js
- Page Builder: Fixed the issue with content analysis in Yoast SEO 3.0 plugin
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Updated FitVids.js to version 1.1
* includes/builder/scripts/jquery.fitvids.js
- Fixed the issue with {{unknown}} tag, appearing on pages with non-supported oEmbed videos
- Portfolio Module: Added help text to the category option
* includes/builder/functions.php
- Fixed the issue with incorrect video width and height saved values
* includes/builder/main-modules.php
* includes/builder/main-structure-elements.php
- Map Module: Fixed unwanted pin title and info box behaviour
* includes/builder/main-modules.php
* includes/builder/scripts/frontend-builder-scripts.js
- Circle Counters: Fixed the issue with counters not being fully responsive on page load
* includes/builder/scripts/frontend-builder-scripts.js
- Video Slider: Fixed the issue with Cover Image low resolution
* includes/builder/functions.php
* includes/builder/main-modules.php
* includes/builder/scripts/frontend-builder-scripts.js
- Social Media Follow: Fixed the issue with wrong skype URL
* includes/builder/main-modules.php
- Updated some localization files
* lang/nb_NO.mo
* lang/nb_NO.po
* lang/hu_HU.mo
* lang/hu_HU.po
* lang/cs_CZ.mo
* lang/cs_CZ.po
* includes/builder/languages/nb_NO.mo
* includes/builder/languages/nb_NO.po
* includes/builder/languages/da_DK.mo
* includes/builder/languages/da_DK.po
* includes/builder/languages/cs_CZ.mo
* includes/builder/languages/cs_CZ.po
- Section: Fixed the issue when unwanted circle appearing in Section with video background on iOS
- Bumped version number
* style.css
version 2.5.6 ( updated 11-06-2015 )
- Fixed the issue with deprecated wp_title function in WordPress 4.4
* functions.php
* epanel/custom_functions.php
- Bumped version number
* style.css
version 2.5.5 ( updated 10-21-2015 )
- Fixed the issue with undefined et_get_option function, when some plugins are active on a site
* functions.php
- Fixed the issue with incorrect font icons order
* includes/builder/functions.php
- Fixed the issue with line-height default units in Page Builder advanced settings
* includes/builder/functions.php
* includes/builder/class-et-builder-element.php
- Blog Module: Fixed the issue with WP-Pagenavi plugin
* includes/builder/main-modules.php
- Bumped version number
* style.css
version 2.5.4 ( updated 10-20-2015 )
- Fixed builder hotkeys, mistakenly capturing ALT + Z to undo changes
* includes/builder/scripts/builder.js
- Image Module: Fixed the issue with Center alignment setting
- Pricing table: Fixed the issue with Center alignment option not working properly
* includes/builder/main-modules.php
* includes/builder/styles/frontend-builder-style.css
- Removed @import declarations from style.css. CSS code is located in style.css file now
* style.css
- Fixed small design issues in predefined layouts
* includes/builder/layouts.php
- Sidebar Module: Made the first registered sidebar default
* includes/builder/main-modules.php
- Fixed the issue with Divi Library export feature when all the items were exported without Layout Type
* includes/builder/framework.php
- Fixed the issue with right click feature not working on some elements inside the Row
* includes/builder/scripts/builder.js
- Fixed the issue with gallery module caption custom styles not applied properly
- Gallery and Filterable Portfolio: Fixed the issue with border option not applied properly
- Person Module: Fixed the issue with hover icon color option not working properly
- Portfolio module: Fixed the issue with "Caption color" option and renamed it to "Meta color"
- Fullwidth Menu: Fixed the issue with broken menu styles, when Primary menu is not defined
- Email Optin: Fixed the issue with Focus fields custom options not working
* includes/builder/main-modules.php
- Fixed the issue with some float line-height values not working ( for example, 1.1em, 2.2em, 3.3em etc. )
* includes/builder/functions.php
- Now multiple contact forms can be used on a page
* includes/builder/framework.php
* includes/builder/main-modules.php
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the conflict of button custom color option with color scheme colors
* functions.php
* includes/builder/class-et-builder-element.php
- Fixed the unexpected behavior when gutter width is set to 0 in Rows
* includes/builder/main-structure-elements.php
- Fixed the issue when unwanted circle appearing in slider with video background on iOS
* includes/builder/styles/frontend-builder-style.css
- Fixed the issue with wrong behavior of Enter and Esc hotkeys, when WordPress modal windows are open ( ex. Image Upload )
* includes/builder/scripts/builder.js
- Fixed the issue with Page Builder editor fullscreen mode incorrect display in Firefox
* includes/builder/scripts/builder.js
- Gallery Module: Fixed the issue with pagination, when multiple galleries exist on a page and one of them has ID attribute
* includes/builder/scripts/frontend-builder-scripts.js
- Global Modules: Fixed the issue with Admin labels not being saved properly
* includes/builder/scripts/builder.js
- Replaced enable/disable text in Dutch language to shorter version ( Aan/Uit )
* includes/builder/languages/nl_NL.po
- Contact Form: Fixed wrongly decoded ampersand in module's email title
* includes/builder/main-modules.php
- Updated Magnific Popup script to 1.0.0 version
* includes/builder/scripts/jquery.magnific-popup.js
- Slider: Fixed item title's discrepancies
* style.css
* functions.php
* js/theme-customizer.js
* includes/builder/main-modules.php
* includes/builder/styles/frontend-builder-style.css
- Added Parallax background images option for columns
- Added Left/Right padding option for sections
- Added custom margin options for Rows
- Added Header Image to the CSS Tab in the Fullwidth Header module
- Updated padding/margin/width option sanitization to accept "vh" and "vw"
- Fixed the issue with CTA "max width" not being applied correctly
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
* includes/builder/main-structure-elements.php
* includes/builder/scripts/builder.js
* includes/builder/styles/frontend-builder-style.css
- Fullwidth header: Fixed the issue when the module becomes inactive, when specific button icons are selected
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
- Fixed the issue with Background color Reset button in Section settings
* includes/builder/main-structure-elements.php
* includes/builder/scripts/builder.js
- Fixed encoding issue with French localization in Code Module
* includes/builder/class-et-builder-element.php
- Countdown Module: Improved responsive layout on small screens
* includes/builder/main-modules.php
* includes/builder/scripts/frontend-builder-scripts.js
- Added missing "gift" icon into the Icon Picker option in all Modules
* includes/builder/functions.php
- Improved localization in Contact Form Module
* includes/builder/framework.php
* includes/builder/scripts/frontend-builder-scripts.js
- Added support of Microformats
* includes/builder/functions.php
* includes/builder/main-modules.php
* index.php
* page.php
* single-project.php
* single.php
- Fixed the issue with disappearing "Export Divi Layouts" button in FireFox
* includes/builder/scripts/library_scripts.js
* includes/builder/styles/library_pages.css
- Fixed the issue with Submit button icon styling on hover in Contact Form module
* includes/builder/styles/frontend-builder-style.css
- Blurb Module: Fixed the issue when description text alignment is always centered for 768px breakpoint and lower
* includes/builder/styles/frontend-builder-style.css
- Fixed post title module padding issue
* includes/builder/styles/frontend-builder-style.css
- Email Optin: Fixed the issue with 25 lists limit for MailChimp
* includes/builder/functions.php
- Replaced curl function with wp_remote_post funciton in MailChimp_Divi class to avoid some issues
* includes/builder/subscription/mailchimp/mailchimp.php
* includes/builder/functions.php
- Added Custom CSS tab to Individual Slides, Pricing tables, Bar Counters and Toggles
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
- Added Basic ( websafe ) fonts into the Font options in Page Builder
* includes/builder/functions.php
- Fixed the issue when preview in Customizer stops working with certain options, if fixed menu is disabled
* js/theme-customizer.js
- Added "Disable Translations" option which forces Divi to use English regardless of Wordpress language
* epanel/options_divi.php
* functions.php
- Fixed the issue with WooCommerce product image popup appearing under the header
- Fixed "Comments Reply" button position on mobile breakpoints
* style.css
- Fixed the calendar pagination issue with Events+ plugin
* js/custom.js
- Added option to control number of Products displayed on WooCommerce archive pages
* epanel/custom_functions.php
* epanel/options_divi.php
- Fixed the issue with "Hide Nav Before Scroll" option, not working correctly on Single Pages
* functions.php
- Added ability to enter the values manually in Customizer range options
* css/theme-customizer-controls-styles.css
* functions.php
* js/theme-customizer-controls.js
- Improved theme security by adding sanitization to all options in Customizer
* js/theme-customizer.js
* js/theme-customizer-controls.js
* includes/functions/sanitization.php
* includes/functions/choices.php
* header.php
- Removed various backward compatibilities from ePanel which are no longer relevant
* epanel/custom_functions.php
version 2.5.3 ( updated 09-05-2015 )
- Code Module: Fixed the issue with shortcodes, not working in the module with WYSIWIG Text mode activated
* includes/builder/class-et-builder-element.php
* includes/builder/functions.php
* includes/builder/main-modules.php
- Fixed HTML5 input elements styling issues
* css/main-styles.css
- Fixed 'Show Thumbs on Index pages' option
* index.php
- Fullwidth Post Title Module: Fixed the issue with the module preview in Page Builder
* includes/builder/functions.php
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
- Fixed single quote escaping issue in a module preview
* includes/builder/template-preview.php
- Bumped version number
* style.css
version 2.5.2.1 ( updated 09-04-2015 )
- Code Module: Fixed encoding issues
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
- Fixed the issue with bulleted text and tables, displayed incorrectly in a module preview
* includes/builder/css/main-styles.css
- Fixed incorrect module item height, when admin label is not defined
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
* includes/builder/styles/style.css
- Fixed the issue with "read more" button, when a blog post contains Blog module
* includes/builder/main-modules.php
- Map Module: Fixed "uncaught range" error, appearing in some cases
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Bumped version number
* style.css
version 2.5.2 ( updated 09-03-2015 )
- Updated lock/unlock permissions to use Divi's lock_module role
- Fixed the conflict with BackupBuddy plugin and probably some other plugins
* includes/builder/functions.php
- Updated Blog Module Thumbnail selector field to on/off field
- Fixed the issue with disappearing Blurb module images on some sites
* includes/builder/main-modules.php
- Fixed fullscreen header height issue, when vertical nav is activated and no secondary nav is defined
* includes/builder/scripts/frontend-builder-scripts.js
- Fixed the issue with loading of Page Builder files on Import page
* includes/builder/framework.php
- Page Builder hotkeys improvements
* includes/builder/scripts/builder.js
- Bumped version number
* style.css
version 2.5.1 ( updated 09-02-2015 )
- Fixed issue with elements not appearing in Live Previews and on pages using the Blank Page Template.
* js/custom.js
- Fixed "preg_match(): Compilation failed: nothing to repeat at offset 1" warning message
* includes/builder/functions.php
- Bumped version number
* style.css
version 2.5 ( updated 09-02-2015 )
* All files changed/updated
- Page Builder: Added Right Click Menu into
- Added Role Editor feature
- Added Lock Module feature
- Added Disable Module feature
- Added option to collapse Sections and Rows
- Added option to copy and paste modules inside the Page Builder
- Added Preview feature into the Page Builder
- Added Undo/Redo and History of changes into the Page Builder
- Added new field to allow users to define admin label for slides
- Added option to display products from selected categories into Shop Module
- Added captions support for the Divi galleries
- Added Enter and Escape buttons support in Page Builder modals
- Added option to disable custom padding for columns on mobile
- Added quicktags panel into the tinyMCE editor inside the Page Builder
- Code Module: Fixed the issue with some content, stripped off from the module
- Fullwidth Menu Module: Added advanced design settings
- Blog Module: Added option to display comment count
- Added Author support to Project Post Types
- Customizer: Added logo height option into
- Customizer: Added secondary menu link color option in fixed nav option in
- Customizer: Added Site Identity section
- Modules are sorted alphabetically by name now
- Global Tabs Module: Fixed the issue with duplication of tabs in a Global module
- Fixed various line height range issues in Page Builder
- Fixed the issue with more tag inside modules
- Fixed the conflict between Blog module and Shop module, when products are ordered by popularity
- Fixed the issue with adding saved rows with 1 column into specialty sections
- Fixed image zoom on page load when using blog grid
- Fixed the issue with custom icons in Gallery/Portfolio modules
- Testimonial Module: Changed images width and height range settings to 1-200
- Fixed the issue with image in blurb module when wrong image path defined
- Fixed the conflict with some plugins that use different MailChimp class
- Fixed the Fullscreen mode of tinyMCE editor when enabled from the builder modal window
- Social Media Follow Module: Fixed the issue with Skype Button link
- Fixed the issue with infinite blog loop if a post contains Portfolio module
- Optimized Page Builder files loading in WP-Admin
- Fixed the issue with Settings icon, disappering from specialty section in some cases
- Fixed the issue with preview in customizer, when different WordPress Address and Site Address are defined
- Fixed the issue with unexpected behavior, when Enter button is pressed in the builder
- Fixed the issue with image edit tooltip, not showing in Page Builder's editor
- Fixed the issue with duplication of predefined layouts, when a child theme is activated
- Fixed the issue with overlay border color when custom overlay color is selected in Gallery, Portfolio, Filterable Portfolio and Shop modules
- Fixed the issue with wrong total number of layouts displayed on Library page
- Fixed some errors when Video or Video slider modules are added with no settings configured
- Text Module: Fixed the issue with "Justified" text orientation
- Fixed the issue with appearance of WooCommerce Related Products when Sidebar is enabled
- Fixed the conflict between active menu color and color scheme options
- Fixed the issue with Gallery post types appearance on category pages
- Fixed the conflict between accent color option and button color in customizer preview
- Fixed the issue with z-index of Side Navigation and Back to Top button to make sure it is always on top
- Fixed unwanted space in main nav, if inline centered logo and hide logo are used together
- Fixed the issue with logo transition on scroll ( made it more smooth )
- Fixed the issue with disappearing adsense in footer widget
- Fixed the issue with Primary Nav that breaks if user uses .svg based logo
- Various bug fixes and code improvements
version 2.4.6.4 ( updated 08-18-2015 )
- Fixed issue with WordPress 4.3 that caused shortened post titles and excerpts to not be truncated correctly
* epanel/custom_functions.php
- Bumped version number
* style.css
version 2.4.6.3 ( updated 08-18-2015 )
- Fixed WP_Widget class constructor warning message
* includes/widgets/widget-about.php
* includes/widgets/widget-ads.php
* includes/widgets/widget-adsense.php
- Fixed Customizer styling issues
* css/theme-customizer-controls-styles.css
- Fixed "Layouts / Add New" functionality issue with WordPress 4.3
* includes/builder/scripts/library_scripts.js
* includes/builder/styles/library_pages.css
- Bumped version number
* style.css
version 2.4.6.2 ( updated 08-12-2015 )
- Fixed the issue with WooCommerce v2.4.2, where product tabs were not clickable
* js/custom.js
- Bumped version number
* style.css
version 2.4.6.1 ( updated 07-22-2015 )
- Improved WYSIWYG functionality in the builder
- Fixed various bugs related to the TinyMCE editor that caused unwanted line breaks to be added to builder content
* includes/builder/scripts/builder.js
- Bumped version number
* style.css
version 2.4.6 ( updated 07-16-2015 )
- Added print styles to improve the page format when printed
* epanel/shortcodes/css/shortcodes_responsive.css
* rtl.css
* style.css
- Customizer: Fixed the issue with menu/logo height option when "Fixed Navigation" is disabled
* js/custom.js
* js/theme-customizer.js
* style.css
- Customizer: "Hide navigation until scroll" option is hidden if fixed nav is disabled now
- Blog and Portfolio modules: Fixed the issue with pagination, not working properly on single pages with non-default permalinks
- Pricing Table Module: Fixed the issue with "-" sign, not being recognized properly in some cases
- Fixed the issue with custom body class, ovewritten in WP-Admin
* functions.php
- Fullscreen Header Module: Fixed the issue with scrolling on pages with multiple Fullscreen Header modules
- Circle Counter, Number Counter modules: Fixed the conflict with Form Maker Pro plugin
* js/custom.js
- Countdown Timer Module: Fixed the issue with time, displaying incorrect values for visitors in different locations
* js/custom.js
* includes/builder/main-modules.php
- Fixed the issue with the following setup: More than 1 fullwidth module in the first section + transparent navigation
- Fullwidth Header Module: Fixed the issue with Down Arrow, not being visible with Transparent Navigation enabled
* js/custom.js
* js/theme-customizer.js
- Megamenu: Added support for less than four columns
- Fixed the issue with dropdown menu animation on iPad in landscape mode
- Image module: Fixed 'Remove Space Below The Image' option functionality
* js/custom.js
* style.css
- Updated localization files:
* lang/nl_NL.mo
* lang/nl_NL.po
* includes/builder/languages/nl_NL.mo
* includes/builder/languages/nl_NL.po
- Customizer: Fixed incorrect page padding top value, applied when changing "Header Style" to "Center"
* js/theme-customizer.js
- Fixed the issue with Gallery Post Format, combining all galleries in one single gallery
- Fixed the issue with "Gallery" Posts, not displaying JetPack's tiled gallery format when it's enabled
* functions.php
* index.php
- Fixed the issue with slider animations, not working properly in Firefox
* includes/builder/main-modules.php
* style.css
- Applied alpha sliders to background color options in advanced settings
- Contact Form Module: Improved Accessibility
- Fixed the issue with Custom Margin Settings overridden, when custom gutter width is defined
- Blurb Module: Fixed the issue with Title color option, conflicting with "color scheme" setting
- Page Builder: Fixed some line height settings ranges in advanced settings
* includes/builder/main-modules.php
- Slider Module: Added the option to animate the slider on hover, when Automattic Animation is enabled
- Bar Counters: Fixed the issue with background color, not covering percentage text properly in some cases
* js/custom.js
* includes/builder/main-modules.php
- Fixed various modules line-height issues
- Contact Form Module: Fixed incorrect id attribute
* includes/builder/class-et-builder-element.php
* includes/builder/main-modules.php
- Page Builder: Fixed the issue with changes, not being saved in Text mode, when Elegant Builder plugin is enabled
* functions.php
* includes/builder/scripts/builder.js
- Slider Module Advanced Settings: Fixed the issue with custom fonts settings
- Page Builder: Fixed the issue with the ability to move a section above the main builder buttons
- Page Builder: Improved Content WYSIWIG editors functionality
- Gallery Module: Removed thumbnail-size options that is shown when choosing images
* includes/builder/scripts/builder.js
- Fixed the issue with non-working icons in Page builder
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
- Global Modules: Fixed the issue with shortcodes, not working in a module
- Page Builder: Fixed the issue with 1px border setting, ignored on front-end
* includes/builder/class-et-builder-element.php
- Advanced Design Settings: Added validation to some settings
* functions.php
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
- Fullwidth Header Module: Fixed the issue with wrong icon set, provided for the "Icon" setting
* functions.php
* includes/builder/main-modules.php
* includes/builder/scripts/builder.js
- Fixed the issue with Row width on Projects, when boxed layout is enabled
- Fixed the issue with Row background, overriding column backgrounds if parallax background setting is enabled
- Fixed the widths of select boxes on WooCommerce variable products pages
- Text Module: Removed 100% width from Text Module to avoid custom margin overlap
- Blog Module: Fixed the issue with items, overlapping the blog grid in small columns in Firefox
- Megamenu: Fixed alignment issues, when "Vertical navigation" is enabled
- Divider Module: Fixed some issues with the module rendering in IE11
- Fixed Sub menu animation on some mobile devices
- Fixed Project page layout width issues
- Fixed centered inline logo padding issue on mobile
- Fullwidth Header Module: Fixed Vertical alignment in IE 9-10
- Added cursor pointer to mobile menu
- Removed default search icon from webkit browsers
- Reorganized style.css file
- Bumped version number
* style.css
version 2.4.5.1
- Updated builder versioning on load to prevent potential problems due to browser cache.
* includes/builder/functions.php
version 2.4.5 ( updated 07-02-2015 )
- Fixed the issue with 404 page, displaying instead of "Edit Page / Post" page in WP-Admin on some servers
* includes/builder/class-et-builder-element.php
* includes/builder/functions.php
* includes/builder/scripts/builder.js
- Fixed the issue with shortcodes, not working in Pricing Table Module content
* includes/builder/functions.php
- Fixed the issue with global modules and rows, not saving content properly inside the Specialty Section sidebar
- Fixed the issue with <br/> tag, added to content in Text mode, when a new module is created
* includes/builder/scripts/builder.js
- Pricing Table Module: Fixed some Custom CSS settings
- Fullwidth Header Module: Added "Logo Title" and "Logo Image Alt Text" options
* includes/builder/main-modules.php
- Updated some localization files
* lang/nl_NL.mo
* lang/nl_NL.po
* lang/it_IT.mo
* lang/it_IT.po
* lang/pl_PL.mo
* lang/pl_PL.po
* lang/fi.mo
* lang/fi.po
* includes/builder/languages/es_ES.mo
* includes/builder/languages/es_ES.po
- Fixed the issue with Centered Inline Logo in IE
- Bumped version number
* style.css
version 2.4.4 ( updated 06-26-2015 )
- Customizer: Fixed the issue with Footer Layout option, not working with localized text
* css/theme-customizer-controls-styles.css
* js/theme-customizer-controls.js
- Customizer: Fixed the issue with light font variants, not being displayed properly in Live Preview
* epanel/google-fonts/et_google_fonts.js
* functions.php
- Customizer: Fixed the issue with range slider tooltips, not being visible in Safari
* js/theme-customizer-controls.js
- Fixed the issue with Customizer, not working properly if the Wordpress Address is different than Site Address
* functions.php
- Fixed various formatting issues in WYSIWIG editor.
* includes/builder/scripts/builder.js
- Fixed the issue with double quotes, disappearing in modules settings
* includes/builder/functions.php
* includes/builder/class-et-builder-element.php
* includes/builder/scripts/builder.js
- Made transparent background for pagebuilder sections to be used on single pages only
- Fixed some RTL layout issues
* js/custom.js
* rtl.css
* includes/builder/styles/style.css
- Removed unneeded space at the top of the site on mobile, when 'Fixed Navigation' option is disabled in ePanel
* functions.php
* style.css
- Fullwidth Portfolio: Fixed the issue with resizing on the page with Blog module
* js/custom.js
* includes/builder/main-modules.php
- Login Module: Fixed the issue with "Log out" link, not being displayed for logged in users
- Fullwidth Header Module: Buttons and Logo image now show up, even if Title and/or Subheading is not set
- Map / Fullwidth Map Module: Fixed the issue with Custom CSS settings, not being applied on frontend
- Blog Module: Changed blog module output to not show post content if it also has a blog module enabled
* includes/builder/main-modules.php
- Mega menu width is 100% in centered inline logo header style now
- Fixed the issue with modules visibility inside rows and fullwidth section with parallax background
- Blurb Module: Fixed Blurb image incorrect display in Firefox
- Bumped version number
* style.css
version 2.4.3 ( updated 06-22-2015 )
- Fixed the issue with CSS parallax section, not working after the Map module
* js/custom.js
* style.css
- Fixed the Accent Color conflict with some Advanced color settings
- Updated the Project taxonomy labels for better readability
* functions.php
- Fixed the issue with submenus, being visible at all times
- Fixed custom dropdown animation in Safari
- Fixed dropdown menu, not working in Safari with "Hide menu until scroll" option enabled
- Fixed animation glitch in header when using "expand" animation in Firefox
- Fixed the issue with mobile sub-menu links, not working with flip animation
* style.css
- Fullwidth Header Module: Fixed the issue with header content alignment when no image is selected
* includes/builder/main-modules.php
* style.css
- Customizer: Fixed the issue with primary menu background option preview
* js/theme-customizer.js
- Page Builder: Fixed the issue with modules alignment
* includes/builder/styles/style.css
- Contact Form Module: Fixed the issue with custom button icon
* includes/builder/main-modules.php
- Fixed some issues with Global Modules, not being in sync in some cases
* includes/builder/class-et-builder-element.php
- Fullwidth Header Module: Added 'Text Max Width' setting
* includes/builder/main-modules.php
- Bumped version number
* style.css
version 2.4.2 ( updated 06-18-2015 )
- Fixed the issue with image module animation when default animation selected
version 2.4.1 ( updated 06-18-2015 )
- Blog module: Fixed the issue with with stretched images in Safari
- Fixed mega menu styling issues
- Fixed the issue with Search bar, not visible in Safari
- Fixed fullwidth search field position
* style.css
- Fixed modules initialization on frontend
* functions.php
* includes/builder/framework.php
- Fixed the issue with Customizer, returning back to the homepage automatically on the page with Fullwidth Portfolio module
- Accordion Module: Fixed the issue with toggles, being opened at the same time, when a user was clicking fast.
* js/custom.js
- Updated "Masonry Blog" to "Blog Grid" to match Builder verbiage
- Updated "Full Width Slider" to "Fullwidth Slider" to match builder verbiage
* functions.php
* js/theme-customizer.js
- Added tooltips to the Builder module icons for better usability
* includes/builder/functions.php
- Fixed some visual issues with TinyMCE editor buttons in Page Builder
* includes/builder/styles/style.css
- Shop Module: Fixed sort functionality
* includes/builder/main-modules.php
- Fixed some issues with items, dragged to Global Sections and Rows
* includes/builder/scripts/builder.js
- Fixed the issue with default module settings values, being added to custom css on pages.