forked from nhannd314/flatsome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changes.txt
1375 lines (1166 loc) · 55.4 KB
/
changes.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
--- 3.3.3 ---
FIXED: Outdated WooCommerce 3.0.2 files.
--- 3.3.2 ---
FIXED: Various translation strings in WooCommerce 3.0 did not work.
FIXED: Outdated Tempalte files for WooCommerce 3.0.1.
FIXED: Disable image click if Product Lightbox is disabled.
FIXED: Lightbox / Next prev nav arrow styling.
--- 3.3.1 ---
FIXED: Product Zoom for Vertical Image Gallery.
FIXED: Various bugs with Product Element.
FIXED: Various JS problems with WC 3.0.
FIXED: Bugs with presentage sale bubble style.
FIXED: Missing WooCommerce translations.
--- 3.3 ---
NEW: Full Compatibility with WooCommerce 3.0.
NEW: New Checkout Style (Simple Style).
NEW: New Image Lightbox for Product Pages (WooCommerce 3.0 lightbox with touch support).
NEW: Option to add Top and Bottom Content to Shop Taxonomy Category pages and Tags.
NEW: Global Text Transform control for Buttons, Section Titles and Widget Titles. (Style > Typography).
NEW: Option to set Logo Max Width.
NEW: Option to change width and change color on Titles.
NEW: Add links to Icon Boxes.
NEW: Full width toggle for UX Builder.
NEW: Product videos can Now be inserted into a new product tab.
NEW: Option to Save as Draft in UX Builder.
NEW: Hungarian language added.
CHANGED: All WooCommerce Microdata (Rich snippets) is moved out from template files to JSON-LD.This is a better way to handle Microdata and is how WooCommerce 3.0 does it.
CHANGED: Updated Instagram icon to the new logo.
FIXED: UX Builder - Better compatibility with many plugins.
FIXED: Password strenght meter in Login Lightbox.
FIXED: Duplicated Share icons on product page.
FIXED: Better translation control for plurals in Countdown Element.
FIXED: Team members got a "p" in front in UX Builder.
FIXED: Quantity + - now works with various plugins that update it with Ajax.
FIXED: Bugs with Ajax Search and SKU.
FIXED: Border Hover Effects on Section now works.
FIXED: Improved My Account Orders View for Mobile.
FIXED: Pages now shows in search results.
FIXED: Problems with My Account links.
FIXED: Finished Countdown now displays correctly.
FIXED: Hidden products was visible in Product Element.
FIXED: Drop Shadow (Depth) on Hover on columns now works.
FIXED: Toggle arrow in UX Builder sidebar now works.
FIXED: Video fallback image is now hidden on Desktop.
FIXED: Author links did not work on featured blog post style.
FIXED: Links in Image Boxes was messing up the layout.
FIXED: Paginated Shop pages when header is transparent.
FIXED: Bottom content in mobile & tablet header is now centered.
FIXED: Category header for Product Tags and Custom Taxonomy.
FIXED: Problems with animations in Firefox.
FIXED: Centered Top Bar Content is now correctly centered.
FIXED: Ordered <ol> lists style.
FIXED: Improved Thank you page layout
FIXED: Disabling Footer per. page now works.
FIXED: Equal height rows in Safari.
FIXED: Stars on Testimonials visible without WooCommerce active.
FIXED: Continue Shopping button visible for Mobile screens.
FIXED: Better styling on Grouped products Qty and price.
FIXED: Various CSS layout issues.
--- 2.9.7 (For those stuck on old version) ---
FIXED: Compatibility with WooCommerce 2.7.
FIXED: Menu was auto closing on mobile when scrolling.
FIXED: Problems with My Account links.
--- 3.2.5 ---
NEW: Option to set Visibility to hidden to tempoary disable elements in UX Builder.
NEW: Option to Lazy Load Flatsome Icons (Fixes the "data:application/x-font-ttfAAAAAwAAAAAAAAAAAAA" optimize error from Pingdom)
NEW: Product List element added to UX Builder (Same style as Product Widgets.)
FIXED: Various PHP 7+ error notices.
FIXED: Possible to translate "Be the first to review..."
FIXED: Lists in texts had wrong align.
FIXED: My Account Dashboard links now looks better on mobile.
FIXED: Remove link from Logo element if no link is set.
FIXED: Better aligment of Language dropdown flags.
FIXED: Dropdown content size did not work on front-end.
FIXED: Google Rich Snippets on Product Page.
FIXED: Sale badge for Grouped products now gets "Sale" text.
FIXED: Login popup from lost-password page.
FIXED: Option to not open cart after product is added to cart now works.
Changed: Made it easier to override many of functions inside /inc folder in a Child Theme.
Changed: Back to Top button moved to template file (template-parts/footer/back-to-top.php)
Changed: Category filter button moved to template file (woocommerce/loop/filter-button.php)
Changed: Product page filter button moved to template file (woocommerce/single-product/filter-button.php)
Changed: Continue Shopping button moved to template file (woocommerce/cart/continue-shopping.php)
Changed: product-searchform.php moved into "woocommerce" folder.
Changed: Moved Flatsome Icons css to assets/css/fl-icons.css
--- 3.2.2 ---
FIXED: Cleaner Customizer for WordPress 4.7
--- 3.2.1 ---
FIXED: Product image glitch on Android devices.
FIXED: Theme Options in Child Themes did not open.
FIXED: Difficult to slide products on touch devices.
FIXED: Quick View did not work with WP Rocket.
--- 3.2 ---
NEW: Navigation Element. Create sub navigation etc.
NEW: Page header element. Create beautiful page titles for pages.
NEW: Option to remove dropdown arrow.
NEW: Option to change dropdown border radius.
NEW: Option to disable "Next/Prev" navigation on product page.
NEW: Option to change dropdown content size.
NEW: Option to set "Flat" form style on product add to cart.
NEW: Search products by SKU in live search.
NEW: Option to set custom Search placeholder text.
NEW: Custom Sticky Logo padding option.
NEW: Auto slide option added to products, and post elements.
NEW: Hebrew translation added.
NEW: Option to add a Site loader when opening a site.
NEW: Get Products by Tag.
BUILDER: Improved Visibility options.
BUILDER: Visibility options added to Banners.
BUILDER: Various styling issues.
BUILDER: Various options improvements.
BUILDER: Compatibility with WordPress 4.7.
FIXED: Off-canvas filter button was visible even without a sidebar.
FIXED: Infinitive spinning on WooCommerce default lightbox.
FIXED: Enable / Disable looping on Video Backgrounds now works.
FIXED: % Sale bubble now works for Affiliate(external) products.
FIXED: Problems with Share icons and lightbox.
FIXED: Various RTL layout issues.
FIXED: Selecting custom products now works in Product Flip element.
FIXED: YouTube Follow link opened in lightbox.
FIXED: Coupon field went missing in checkout if coupon was invalid.
FIXED: Custom cart icon in IE11.
FIXED: Various CSS improvements.
FIXED: Improved loading spinner on ContactForm7 forms.
FIXED: Slider nav position for Pages and Portfolio.
FIXED: Yith Infinitive Scroll + Quick View now works.
FIXED: Possible to translate "Login with Google" and "Login with Facebook".
FIXED: Bugs with Shortcodes inside Image Box element.
Changed: Made the Dropdown faster and smoother.
Changed: Include pages and blog posts in search result by default.
--- 3.1.6 ---
FIXED: Bugs with grids and images in IE versions.
FIXED: Problems changing product variations on some iOS versions.
FIXED: Bugs with Visual Composer and .row classes.
FIXED: Customizer now requires less memory.
FIXED: Improved security in UX Builder.
FIXED: Bugs with Countdown styling.
FIXED: Bugs with Portfolio list.
FIXED: Better compatibility with WP Rocket.
FIXED: Various mobile styling issues.
FIXED: Option to disable Flatsome 2.0 content fallback. (Better speed). Disable in Advanced > Global Settings.
--- 3.1.5 ---
BUILDER: Changed style on discard and apply button to prevent confusion with save.
BUILDER: Improved Media upload options.
BUILDER: Option to Copy and Paste styles from an element to an other.
BUILDER: Improved speed.
FIXED: Saving Advanced options sometimes did not work.
FIXED: Improved live search. You can now also use the live search without WooCommerce.
FIXED: Possible to scroll product pages if zoom was enabled.
FIXED: Better styling of mobile off-canvas sidebar for product page.
FIXED: Possible to select category on Portfolio element.
FIXED: Product Zoom if only one image.
FIXED: Thank you script was rendered wrong.
FIXED: Google share wishlist icon.
FIXED: H1 Headlines added to default page template. (Disable in Theme Options > Pages)
FIXED: Problems with Ultimate Member plugin.
FIXED: Various CSS bugs.
NEW: YouTube added to Team member.
NEW: New hooks - flatsome_before_breadcrumb, flatsome_after_breadcrumb.
--- 3.1.4.1 ---
FIXED: Bugs when saving Theme Options.
FIXED: More speed improvements.
--- 3.1.4 ---
FIXED: Lazy loading on IE10/IE11.
FIXED: Custom CSS Theme Options went missing in Chrome when making changes or change screen mode.
FIXED: Image position bug.
FIXED: Speed improvements.
--- 3.1.3 ---
FIXED: Titles went missing.
FIXED: Google fonts sometimes was not loading.
FIXED: Bugs with ampersand (&) in Button links.
FIXED: Filters and breadcrumbs if Shop page has custom header.
FIXED: Builder filters for fixing old content was missing.
FIXED: Menu labels now works without WooCommerce plugin.
FIXED: Some strings added to translations. (Click Sync in Loco translate).
FIXED: Custom content before and after products added back.
FIXED: Gallery now shows correct ordering.
FIXED: Various CSS problems.
NEW: French translation added.
NEW: Option to add divider to a column element (For creating sidebar columns etc).
--- 3.1 ---
NEW: Option to change mobile logo position (Left or Centered).
NEW: Option to change spacing between header menu elements.
NEW: Option to replace newsletter popup with a block.
NEW: Widget Area (Sidebars) added to UX Builder.
NEW: Better UberMenu support. Add full width UberMenu option.
NEW: Spanish and Danish languages added.
NEW: Option to enable / disable lazy loading of Google fonts.
Changed: Advanced > Optimization is now called "Lazy loading".
FIXED: Target now works on Buttons.
FIXED: Changing variation images sometimes did not work.
FIXED: Possible to add class to grid columns.
FIXED: Improved Mobile Cart layout.
FIXED: Wishlist icon for iPad horizontal.
FIXED: Various CSS layout bugs.
FIXED: Rotate Text box now works.
FIXED: Follow icons in footer.
--- 3.0.30 ---
NEW: Single Page Navigation templates (Use together with Scroll To Shortcode).
NEW: Option to remove Portfolio completely.
NEW: Search documentation live from Flatsome > Help & Guides.
NEW: Option to remove purchase code (Just remove code and click update).
NEW: Option to set Column background colors from Row element.
NEW: Option to set Lowercase on buttons.
NEW: Option to expand buttons.
NEW: Option to set base font size for desktop and mobile.
FIXED: Compatibility with YITH Infinitive scroll.
FIXED: Custom Ids for portfolio element now works.
FIXED: Possible to edit Portfolio and Product pages with UX Builder added back.
FIXED: Option to disable bullets for Scroll To shortcode.
FIXED: Possible to add comments to pages.
FIXED: Possible to link to Tabs with http:/link.com/#tab-title-id
FIXED: LinkedIn was missing from Follow icons options.
FIXED: Custom Mobile menu now works.
FIXED: Improved security some places.
FIXED: Global border radius for some buttons did not work.
FIXED: Possible to remove elements from wishlist.
FIXED: Various bugs.
--- 3.0.29 ---
FIXED: Possible to disable post and pages in search results.
FIXED: Option to disable live search.
FIXED: Theme now requires less memory.
FIXED: Possible to translate "Zoom".
FIXED: Tabbed content on safari.
FIXED: Bugs with empty background images.
FIXED: Various IE10 & IE11 bugs.
FIXED: Add to cart button now gets checkout color.
FIXED: Various UX Builder improvements.
FIXED: Shortcodes allowed in Footer Right text.
FIXED: Wishlist icon for mobile.
FIXED: Coupon layout on mobile.
FIXED: Zoom correct image on product variations.
FIXED: Targets for Image and Logo element.
FIXED: Force first position on mobile.
FIXED: Global disable reviews
Changed: "Post and pages" search results moved to bottom.
--- 3.0.28 ---
FIXED: Render the secondary footer only if it has any content.
FIXED: Google Maps in UX Builder on SSL.
FIXED: Google Maps content width did not work.
FIXED: Bugs with saving images in customizer.
FIXED: Added Sensei page wrappers.
FIXED: Footer content on category pages was missing.
--- 3.0.27 ---
FIXED: Dropdowns on iPad.
FIXED: Scroll arrows on mobile row sliders.
FIXED: Various CSS bugs.
--- 3.0.26 ---
NEW: Custom CSS also added to Advanced.
NEW: Option to set preset upon installation.
--- 3.0.25 ---
FIXED: WPML logo.
FIXED: Infinitive page reloading.
FIXED: Checkout design improvements.
FIXED: 500px icon in header.
FIXED: Updated demo content.
FIXED: Old content wrapped in [row] was hidden.
--- 3.0 (06.09.16) ---
NEW: Created our own minimal Flatsome CSS Framework.
NEW: Completely re-written theme. Over 50% smaller CSS file, but tons of new features.
NEW: New incredible Front-End Page Builder. (UX Page Builder).
NEW: New Option Panel using Customizer. Preview changes live.
NEW: Live Drag and Drop Header Builder.
NEW: Change sticky header for Header Top, Header Main or Header bottom.
NEW: Show header Cart in Off-Canvas or Dropdown.
NEW: Open Header Login in a Lightbox for quick login.
NEW: New Header element: Contact. Add Email and Phone number to header easily.
NEW: Added Category dropdown to Search Box.
NEW: Built-in Live Search (You can disable YITH Live search if you want).
NEW: New Search Box Styles. / Outline
NEW: Add Icons to buttons that can be visible all the time or reveal on hover.
NEW: Option to set custom Transparent Header Height and Mobile Header Height.
NEW: Option to set custom Transparent Header background color.
NEW: Add drop shadow to Columns, Buttons and Images.
NEW: Possible to add slogan under logo.
NEW: Option to change global site width.
NEW: Section Dividers. (Arrow, Angled and Fade Out).
NEW: Added 'Scroll for more'-arrow option for Sliders, Banners and Sections.
NEW: Shrink and fade sticky style.
NEW: Built in Language dropdown for WPML and Polylang.
NEW: Change position of Product Up-sells (Sidebar, Below description, disabled)
NEW: Options to Have full Width / Container header.
NEW: Option to set Up-sells in sidebar or below description.
NEW: New ways to display Account and Cart in header.
NEW: Make Account or search visible for mobile view.
NEW: Option to add Thumbnails to Blog Post Widget.
NEW: New Page Template. Show header on scroll.
NEW: Option to always show slider arrows (Not only on hover).
NEW: Add radius to buttons. [button radius="10px"]
NEW: Google Fonts are now loaded with JS (Faster Page Loading).
NEW: Updated to Flickity 2.0 on all sliders.
NEW: Added parallax option to Slider.
NEW: Added Height option to newsletter element.
NEW: Catalog Mode products now has Variation select.
NEW: Snapchat & 500px added to Follow Icons.
NEW: Option to create Custom Maintenance page.
NEW: Header Checkout element.
NEW: Add 'Focus Point' to Banner Backgrounds.
NEW: New button styles.
NEW: New Form Style - Flat.
NEW: Page Titles Control. Add Amazing Page Titles.
NEW: New page options for footer. Simple / Transparent / Disabled.
NEW: Replace footer with a custom Block.
NEW: Option to center Absolute Footer.
NEW: Video Element. Embed responsive YouTube videos etc.
NEW: Optimisation options added to Advanced options.
NEW: Enable / Disable lazy load of banners and section backgrounds.
NEW: Added "Tutorials" tab to Flatsome Panel.
NEW: Change global default page templates. (Can be overridden pr page).
NEW: Change width of Product Image Gallery on product page.
NEW: Option to change how many product pr row on Tablets.
NEW: Option to Center content in Top Bar.
NEW: Option to set custom Sale bubble text.
NEW: Many new product image hover styles. Zoom, Zoom Fade, Blur ++.
NEW: Option to use Default WooCommerce Zoom (PrettyPhoto) instead of Flatsome Lightbox.
NEW: Option for Google+ login on Account.
NEW: Improved My Account Page Template.
NEW: Newsletter Header element.
NEW: Add Blocks to header.
NEW: Google Fonts are now loaded with JS (Faster Page Loading).
NEW: Light Absolute Footer option.
NEW: Setup Wizard for new installations.
NEW: Option to add Payment Icons to footer.
NEW: Blocks Widget added.
NEW: Added parallax option to Slider.
NEW: Count Up Number text option.
NEW: Fancy Underline text option.
NEW: Icons for Titles.
NEW: New layouts for Portfolio post type.
NEW: Possible to set custom products in Product Flip Shortcode.
NEW: Filter option for portfolio.
NEW: New layouts for blog.
NEW: Option to have different blog layout on archives.
NEW: New Hotspot element for UX Banners.
NEW: Video Icon for Images with Youtube links. Also opens video in a lightbox.
NEW: Hundres of new options for all our shortcodes. Try them out in our new page builder.
NEW: Lazy Loading of images.
Changed: Full Product templates now uses shop sidebar as default if no product sidebar widgets are empty.
Changed: Default included form plugin is now Contact Form 7, but Ninja Forms plugin is still supported.
Changed: Featured Items is now called 'Portfolio'.
Changed: Featured Box is now called Icon Box.
Changed: No more IE8 support. (But should still be accessible)
Updated: New Theme Screenshot.
NEW: Many new page templates you can add to a blank page.
FIXED: Bugs with extra product bubble.
FIXED: Bugs with custom success color.
FIXED: Possible to enable YouTube in follow icons.
FIXED: Various CSS improvements.
FIXED: Long dropdown links was not wrapping.
FIXED: Could not grab google maps.
FIXED: Bugs with Page Builder on SSL sites.
FIXED: Easier to resize mobile columns.
FIXED: Responsive grid heights.
FIXED: Bugs with Masonery layouts.
FIXED: Bugs with product lightbox slider.
--- BETA 3.0.22 ---
NEW: Added 'Drag' icon to Text Boxes in UX Builder.
NEW: Added presets to the Products Shortcode.
NEW: Added presets to Blog Post Shortcode.
NEW: Added presets to category shortcode.
NEW: Added presets to portfolio shortcode.
NEW: 'Default' Product style now uses default Shop style settings.
NEW: Snapchat added to Team Member element.
NEW: Added presets to logo shortcode + new hover option.
NEW: Icon styles added to Team member element.
NEW: Presets added to Instagram element.
NEW: Sticky Sections option. Create cool sticky sections when scrolling.
FIXED: Show slider arrows on mobile screens. (like FL2.0)
FIXED: Bugs with Tabs in the builder.
FIXED: Accordion is not closed by default.
FIXED: Bugs with Accordion.
FIXED: Bugs with Product Flip book.
FIXED: Auto height on product gallery. (For small and tall images).
FIXED: PHP Syntax error from Kirki plugin.
FIXED: Bugs with comments styling.
FIXED: Added HTML after blog posts field.
--- BETA 3.0.21 ---
Changed: Moved the Mobile sidebar menu option to 'Header Sidebar / Mobile'.
FIXED: Share / Meta went missing on product page if the option was not set.
FIXED: Bugs with responsive banner texts.
FIXED: Bugs with UX Gallery shortcode.
FIXED: Custom class for columns now works.
FIXED: Various bugs with the Portfolio Shortcode.
FIXED: PHP errors in footer for old PHP versions.
NEW: Class added for sections and banners.
NEW: Added hover effects to banner borders.
NEW: Added hover effects to Text Box.
NEW: Option to change Video Button size.
NEW: Change content position on maps.
--- BETA 3.0.20 ---
NEW: Option to remove the Header Divider in Main Header.
NEW: Option to disable inline SVG on Icon Boxes.
FIXED: Added Pinterest to header follow icons.
FIXED: Bug with opening Widgets screen.
FIXED: Better styling of Terms and Conditions text in checkout.
FIXED: Categories and Meta was missing from Product Pages.
FIXED: Various CSS bugs.
--- BETA 3.0.19 ---
FIXED: Styling for WooCommerce notices.
FIXED: Login button was only an icon.
FIXED: Various layout and CSS bugs reported.
NEW: Option to replace payment icons with an image.
NEW: Added iDeal to payment icons.
--- BETA 3.0.18 ---
NEW: Google Fonts are now loaded with JS (Faster Page Loading).
NEW: Updated to Flickity 2.0 on all sliders.
NEW: Added parallax option to Slider.
NEW: Added Height option to newsletter element.
NEW: Catalog Mode products now has Variation select.
NEW: Snapchat & 500px added to Follow Icons.
NEW: Light Absolute Footer option.
NEW: Option to create Custom Maintenance page.
NEW: Option to add Payment Icons to footer.
NEW: Margins option added to Columns.
NEW: Setup Wizard for new installations.
NEW: New 'Label' style for various elements.
NEW: Icon added to Coupon in cart.
NEW: Option to create custom shop homepage content.
NEW: Automatic Child Theme Creation on Installation.
NEW: Effects added to Section.
NEW: Option to disable / enable footer 1 and footer 2.
NEW: Option to enable / disable top bar.
NEW: Option to change slider arrow color to dark/light on various elements.
NEW: Experimental Gradient button style.
NEW: Blocks Widget added.
NEW: Option to change icon colors on main header.
UX Builder:
NEW: Edit Blocks from Category pages (or any category/page).
NEW: Admin label added to Sliders and Banners.
NEW: Visibility option added to Sections and Sliders.
NEW: Easier column resizing in UX Builder.
NEW: New hover effect. Fade out/in Overlay 50%.
FIXED: Various bugs.
FIXED: Custom ordering of categories.
FIXED: 'Kirki Typo error' in error log.
FIXED: Correct banner and section background image size is now beeing loaded.
FIXED: Improved page speed (hopefully).
FIXED: Option to add Social login to checkout.
FIXED: Better Category Navigation styling.
FIXED: Better Pagination styling.
FIXED: Default/Normal grid style is now displayed normally.
FIXED: Bugs with Parallax.
FIXED: Better Sliding and scrolling on mobile.
FIXED: Bugs with portfolio filtering.
FIXED: Bug with vidoes in slider not playing.
FIXED: Changing Lightbox background color did not work.
--- BETA 3.0.17 ---
NEW: Custom CSS from style.css file is now added inline.
FIXED: Problems with Vertical product gallery and one image.
FIXED: Google Maps now uses the API set in Advanced > Google APIs
FIXED: Make sure first tab is always automatically opened on product pages.
FIXED: Bug with HTTPS logos.
FIXED: Dupliacted blog posts results.
FIXED: Product Lightbox and Color variations.
FIXED: Improved Parallax.
FIXED: Various UX Builder bugs.
--- BETA 3.0.16 ---
NEW: Option to Lazy Load Images.
NEW: More options for "Read more" button in Blog Posts.
NEW: Option to change 'Excerpt length' on blog post shortcode.
NEW: Added smart links to Button. 'shop' links to shop page. 'cart' links to cart page.
NEW: Better Compatibility with WP Rocket plugin.
Changed: Catalog Mode moved to Advanced options.
FIXED: Secondary image on category pages was too big. (Used wrong image size).
FIXED: Bugs with Page and post results.
FIXED: Bug with portfolio items.
FIXED: Bug with Search results & Category dropdown.
FIXED: Better styling for Product Page Section style.
FIXED: Improved and fixed bugs with Accordion.
FIXED: Bugs with dupliacated header elements in the Header builder.
FIXED: Various CSS bugs.
FIXED: Problems with Tabs and no product description.
FIXED: Problems with Catalog Mode and prices.
FIXED: Improved "Getting Start" tab in Flatsome Panel.
FIXED: Various Optimisation.
FIXED: Bugs with vertical product page gallery and too many thumbnails.
FIXED: Various Builder bugs.
FIXED: Improved Portfolio layout & CSS.
FIXED: My account icon when not logged in.
FIXED: Wrong active class for menus on some pages.
FIXED: Disable slider on related product if it's less than selected products pr row.
--- BETA 3.0.15 ---
NEW: Optimisation options added to Advanced options.
NEW: Enable / Disable lazy load of banners and section backgrounds.
NEW: Added default WooCommerce product shortcodes.
NEW: Option to add scale share shortcode.
NEW: "Pause on Hover" and "Draggable" added to slider options.
NEW: Added "Tutorials" tab to Flatsome Panel. (Work in progress).
FIXED: Accordion product tab style.
FIXED: Disable Arrows for sliders.
FIXED: Correct color helpers in Page Builder.
FIXED: Wishlist is now added automatically to my account menu.
FIXED: Outdated WooCommerce files.
FIXED: Added extra class to product page price.
FIXED: Possible to set background for boxed layout.
FIXED: Custom CSS buttons in Theme Options.
FIXED: Boxed layout drop-shadow.
FIXED: Possible to select categories for blog posts.
FIXED: Logo Shortcode height bug.
FIXED: Clear responsive option tooltip.
FIXED: Slide effects in Page Builder.
FIXED: Various CSS improvements.
FIXED: Mainenance logo bug.
CHANGED: Improved Header builder design.
CHANGED: Moved logo position option to Theme Options > Logo & Site Identity.
--- BETA 3.0.14 ---
NEW: Beautiful full width gallery product page layout.
NEW: Added admin label to rows.
NEW: Lazy load section and banner backgrounds.
NEW: Added "Explore" template.
NEW: Added "Clear content" button to settings in Page builder.
FIXED: IE10 / IE11 / IE12 Support.
FIXED: Banner links.
FIXED: Bugs with Price table.
FIXED: Various CSS bugs.
FIXED: Various HTML errors.
FIXED: Various JS errors.
Updated: Full Product templates now uses shop sidebar as default if no product sidebar widgets are empty.
Updated: Restructure of flatsome panel.
--- BETA 3.0.13 ---
NEW: Added page templates to UX Builder. Quickly add pre-made templates to new pages.
NEW: Icons for Titles.
FIXED: Showing license expired even if support is active.
FIXED: Bugs with Text Box position on Banners.
FIXED: Category grid shortcode was showing sub categories.
FIXED: Various builder bugs.
FIXED: Allow Search element in Text Box.
FIXED: Possible to translate 'All'.
FIXED: Various shortcode bugs.
Updated: New Theme Screenshot.
--- BETA 3.0.11 ---
Improved: Made the Scroll to top button bigger.
FIXED: Bugs with Login lightbox and messages.
FIXED: Various JS Bugs.
--- BETA 3.0.10 ---
NEW: Delete and duplicate elements from sidebar in UX Builder.
Changed: New default primary color for Flatsome 3.0.0
NEW: New parallax script (Work in progress).
Improved: Header builder layout.
Improved: Various UX Builder improvements.
Improved: 404 page.
FIXED: Button styling bugs.
FIXED: Various CSS glitches.
FIXED: Banner hover effects.
FIXED: Bugs with Mobile Nav icon.
FIXED: Maintenance bugs.
--- BETA 3.0.09 ---
NEW: Video Element. Embed responsive YouTube videos etc.
NEW: Enable / disable Theme plugins from Flatsome Panel.
Changed: Removed line height option from Text Box. Can be added in the text editor instead in the 'Format' menu.
Changed: Icon labels are now default primary color.
Improved: RTL (Work in progress).
FIXED: Possible to search posts and pages with ajax search.
FIXED: Open and edit blocks from any page.
FIXED: Bugs when duplicating shortcodes.
FIXED: Focus point on Banners.
FIXED: Filter button was default theme color.
FIXED: Gallery thumbnails on product page (mobile).
FIXED: Go back to admin if user came from admin and exits the builder.
FIXED: Out of stock badge to product shortcode.
FIXED: Loading spinner on sliders was too long.
--- BETA 3.0.08 ---
FIXED: Secondary color for underline buttons
FIXED: Styling of search live results.
FIXED: Large product gallery thumbnails.
FIXED: Issues with star rating.
--- BETA 3.0.07 ---
FIXED: Improved Header Builder design.
FIXED: Top bar background color if custom color is set.
FIXED: Center align absolute footer.
FIXED: Correct Theme Version in Flatsome Panel.
FIXED: Scrollbar visible before slider is loaded.
FIXED: Portfolio Image height can now be set.
FIXED: Better placement of big dropdowns.
FIXED: Banner background image in various browsers.
FIXED: Possible to remove wishlist icon + fixed icon options.
FIXED: Improved Instagram Widget styling.
FIXED: Possible to set background image in Theme Options > Layout.
FIXED: Better preloading of product sliders etc.
FIXED: Update QTYs now works after Cart refresh.
FIXED: Product Image Zoom now works.
FIXED: Image get properly saved in the Theme Options panel.
IMPROVED: Moved the Customizer reset to 'Advanced' location.
NEW: Options to set margins top and bottom for Title element.
NEW: Option to set font size on Title element.
NEW: Input field for sliders in UX Builder.
--- BETA 3.0.06 ---
NEW: Experimental Visibility option for columns.
FIXED: Builder Slider bugs.
FIXED: 'Dashboard' link in My Account sidebar/dropdown.
FIXED: Div cart css styling.
FIXED: Div builder css improvements.
--- BETA 3.0.04 ---
FIXED: Too many images in Quick view gallery.
FIXED: Make sure my account links works on other pages that my account page.
FIXED: Opening draft with Page Builder.
FIXED: Correct cart price and items when product is added with ajax.
FIXED: Styling issues with vertical product gallery.
FIXED: Share icons on Wishlist.
--- BETA 3.0.03 ---
FIXED: Option to disable/enable default WooCommerce account links.
FIXED: Vertical Sub Nav page.
--- BETA 3.0.02 ---
NEW: Improved blog layout options.
NEW: Added option to change "Contact" label in Contact element.
NEW: Added option to change "Location" label in Contact element.
Changed: Header buttons are divided into 'Button 1' and 'Button 2' header elements.
FIXED: Left / Right page template.
FIXED: Register text for login.
FIXED: Content added with to pages in Excerpt. (Will be editable in page builder soon).
FIXED: Out of stock badge.
FIXED: Widget links styling.
FIXED: Wishlist button on product page.
FIXED: UX Builder Thumbnails when using child theme.
FIXED: Sale bubbles for vertical product galleries.
FIXED: Category pages off-canvas sidebar added to bottom after closing.
FIXED: Images in Quick view sometimes not loading.
FIXED: Add to cart button in grid.
FIXED: Various bugs with Off-canvas cart.
FIXED: 'HTML after header' added to Header options
FIXED: 'Ola Nordmann' was added to Testimonials.
FIXED: Old 'Background' shortcodes to work with builder.
--- 2.9.6 ---
NEW: German translation added.
NEW: Swedish translations added.
NEW: Possible to add Google Maps API. (Theme Options > Global settings).
FIXED: Outdated WooCommerce Files for WooCommerce 2.6.3.
FIXED: Account Menu Endpoint urls link to cart page.
FIXED: Unable to select Country/Stat dropdown on mobile.
FIXED: Scroll to top now animates correctly.
FIXED: Possible to change QTY after cart refresh.
--- 2.9.5.1 ---
FIXED: Outdated WooCommerce 2.6.1 files.
--- 2.9.5 ---
FIXED: Various bugs with WooCommerce 2.6.
FIXED: Problems with Category Grid shortcode and WooCommerce 2.6.
FIXED: Bugs with zoom on single image products.
FIXED: Possible to use lightbox login when account is on top.
FIXED: Various CSS improvments.
--- 2.9.2 ---
FIXED: Missing Transparent header templates
FIXED: Various bugs.
--- 2.9 ---
FIXED: Ready for WooCommerce 2.6.
NEW: Option to disable reviews globally. (Theme Options > Product Page)
NEW: Option to add custom content before and after product pages pr. product. Can be edited in the Extra tab on product edit page.
NEW: Change Image size of Banners and Images (Original, Large, Medium, Thumbnail).
NEW: Option to open Product page sidebar in Off-canvas on small screens. (Adds a link to the top).
NEW: Added loading spinner when checkout is processing.
NEW: Option to open login as a lightbox.
CHANGED: Account dropdown and Account sidebar now uses default endpoint links. Can be disabled in Theme Options > Account.
CHANGED: 'Update Cart' buttons has been moved to below cart.
FIXED: Improved style of Coupons added to cart.
FIXED: Better Compatibility with YITH Infinitive Scroll (And other infinitive scroll plugins).
FIXED: Better compatibility with WordPress 4.5.
FIXED: Image size bugs on Product Page.
FIXED: Various translation bugs.
FIXED: Bugs with Featured Items.
FIXED: Top Bar dropdown on iPads.
FIXED: Share shortcode now works on category pages.
FIXED: Updated Theme JS Plugins to newer versions.
ADDED: 'Work Sans' Google Font.
--- 2.8.5 ---
NEW: Added Product List Shortcode.
NEW: Added Alt and Title tag to UX Images.
NEW: LinkedIn added to share icons.
FIXED: Bugs with Ajax Add to Cart Variations.
FIXED: Added Srcset to Product Image Gallery.
FIXED: Countdown now works on safari.
FIXED: Disable Product slider if there is only one image.
FIXED: Increased the limit of Up-sell products.
FIXED: Option to disable video loops now works.
FIXED: Removed the 'Taxonomy Metadata' plugin. It was not needed anymore.
FIXED: Duplicated links on Category boxes.
FIXED: Bugs with Countdown on Mobile / Safari.
FIXED: Problems with selecting languages at checkout.
FIXED: Various SEO Improvements.
FIXED: Various CSS Improvements.
CSS FIX: Removed auto hide of 'Comments' publish button.
CSS FIX: !important on fonts removed.
--- 2.8 ---
FIXED: Outdated Template files in WooCommerce 2.5.
NEW: Cool Countdown Shortcode added.
NEW: Option to add custom HTML content to checkout sidebar.
NEW: Possible to Auto slide Blog Posts sliders and Product Sliders.
NEW: Option to disable/enable Blog Archive titles.
FIXED: Better styling for Extra Product Options plugin.
FIXED: Custom Content on Thank You page can now be shortcodes.
FIXED: Better compatibility with WordPress 4.4
FIXED: Wishlist compatibility problems.
FIXED: Sticky header glitch.
FIXED: Blog Shortcode: Comment count is now visible only if there is any comment.
FIXED: WPML Dropdown problems.
--- 2.7.8 ---
Maintenance Update.
FIXED: Problems with Variations and Image updates.
FIXED: Outdated WooCommerce files for WooCommerce 2.4.10.
FIXED: Various CSS and JS improvements.
FIXED: Support for Premium Wishlist version.
FIXED: Support for Advanced Product Labels.
FIXED: Blog Masonery bug.
FIXED: Alt image tag on Custom Cart icon.
FIXED: Page jumping on Scroll sometimes.
FIXED: 'Quick View' added to translation file.
FIXED: 'Coupon code' translation issues.
FIXED: Apply Coupon by clicking enter.
TRANSLATION ADDED: Dutch (nl_NL).
TRANSLATION ADDED: Persian (fa_IR).
TRANSLATION ADDED: Norwegian (nb_NO).
--- 2.7.5 ---
FIXED: Slider CSS glitches
FIXED: Improved content formatting.
FIXED: Banner BG color
FIXED: Bugs with 'Enable Coupon on Checkout'.
FIXED: Flatsome Page Builder is now disabled if Visual Composer is active.
FIXED: Various spelling mistakes.
--- 2.7.4 ---
FIXED: Bugs with [ux_image] in sliders.
FIXED: Bugs with Sliders in Banner Grids.
FIXED: Product Categories was showing child categories.
FIXED: Possible to translate 'Posted on' and 'By'.
FIXED: Category shortcodes is now ordered by Category Order.
IMPROVED: Cleaned up Main translation file (en_US).
--- 2.7.3 ---
FIXED: Related products options.
FIXED: Breadcrumb bugs.
FIXED: We now use default WooCommerce breadcrumb functionality for better compatibility.
--- 2.7.2 ---
FIXED: Double Page Titles
FIXED: Better Compatibility for Fancy Product Designer
FIXED: Cart Dropdown RTL bug.
--- 2.7.1 ---
NEW: Added Telephone to Team Member shortcode. [team_member tel="000 000 000"]
FIXED: Missing Excerpt box for Pages.
--- 2.7 ----
**** RELEASE NOTES ****
HUGE UPDATE. The theme file structure has changed a lot.
You might need to update or remove files in your Child Theme.
IMPROVED: All sliders completely re-written to work better on any device.
IMPROVED: Better Mobile Cart style.
IMPROVED: Mini Cart dropdown now uses default woocommerce_mini_cart() for better compatibility.
IMPROVED: Added product attributes to Cart dropdown.
IMPROVED: Sticky header is disabled on cart and checkout for better UX.
NEW: Added Product Video Popups to Product pages.
NEW: New Slider Navigation styles.
NEW New Slider Styles (Full-Width, Container and Focused).
NEW: Change 'NEW' text on New bubbles to anything.
NEW: Added Lazy Loading to Product Image Gallery
NEW: Updated loading indicator to a faster and more minimal style.
NEW: Possible to Swipe to close mobile menu.
NEW: Added target="" added to UX Images and UX Banners.
NEW: Change Wishlist Icons. (Star, List, Pen, Plus).
NEW: Added Tumblr to Share and Follow.
FIXED: We now use default wp_site_icon for Favicons. (With Fallback to old)
FIXED: In Stock display problem.
FIXED: Better Compatibility with Color Swatches plugin.
FIXED: FlipBook is now more responsive. We now use default slider script for this.
--- 2.6.1 ---
IMPORTANT FIX: Bug with Banner Grids and WordPress 4.3
--- 2.6 ---
IMPORTANT FIX: Outdated Template files for WooCommerce 2.4
NEW: You can now get products by Tags, or Categories in all product shortcodes. Try in Page Builder!
NEW: You can now set "display type" for any product shortcodes. Available types: slider, normal, masonry and lookbook.
NEW: Instagram Feed Widget and Instagram Feed Shortcode added. [ux_instagram_feed username="instauser" photos="10" text="Follow us"]
NEW: Option to upload custom font file in 'Theme Options > Fonts' (.ttf or .otf file).
NEW: Slide Effects on UX Banners (Ken Burns Effects) [ux_banner slide_effect="zoom-in / zoom-out"]
NEW: Share on WhatsApp. (Only Visible on Mobile)
NEW: Spanish translation added.
NEW: Added class="" to [ux_slider]
FIXED: Next / Prev products now works correctly.
FIXED: Color change on Product Zoom now works correctly.
FIXED: Div JS and CSS improvements.
FIXED: Issues with WordPress 4.3
--- 2.5.6 ---
BUG FIX: WooCommerce 2.3.11 bug fixes.
BUG FIX: Javascript Errors caused by latest Ajax Search version.
--- 2.5.5 ----
FIXED: Better Compatibility with Polylang and WPML plugin.
FIXED: Blocks can now be translated with Polylang and WPML.
FIXED: Cart not translating correctly when changing language.
FIXED: Improved Compatibility with Nested Category plugin.
FIXED: Updated TGM Plugin Activation plugin to latest version.
FIXED: Share links now opens in small popup window instead of new tab.
FIXED: Various Google Rich Snippet bugs.
--- 2.5.3 ---
FIXED: Missing select boxes.
FIXED: iPad horizontal navigation.
FIXED: Hide slider on mobile phones.
FIXED: Various CSS bugs.
--- 2.5.2 ---
FIXED: Custom styles in style.css now works with minified CSS enabled.
FIXED: Style.css for Child themes updated. You can remove the @import css tag.
FIXED: Various CSS glitches and bugs.
FIXED: Cleaned up all SCSS files.
FIXED: Wishlist now works for non-logged in users.
--- 2.5 ---
NEW: Smoother and faster mobile menu.
NEW: Filter button added for mobile category view with sidebar.
NEW OPTION: Possible to hide UX Slider on mobile screens. [ux_slider mobile="false"]
NEW OPTION: Blog Post Grid / masonry style. [blog_post type="grid"] [blog_post type="masonry"]
NEW OPTION: Open lightboxes automatically! [lightbox auto_open="true" auto_timer="3000" auto_show="always/once"]
NEW OPTION: Add ID attributes to sections and row shortcodes. (id="example")
NEW OPTION: 'Continue Shopping' button added to Checkout and Thank you page (optional).
NEW OPTION: Category list view.
NEW OPTION: Custom Sticky header logo.
NEW OPTION: Off-canvas Shop sidebar / Filter button.
NEW OPTION: Set custom mobile main navigation.
NEW OPTION: Replace share icons with custom icons or share scripts.
NEW OPTION: Change product pr row on Category pages.
NEW OPTION: Add Cart and Account dropdown to Top bar.
NEW OPTION: Add HTML / Shortcodes to Top Bar right side.
NEW OPTION: Change Featured Items URL.
FIXED: Outdated WooCommerce files
FIXED: Various CSS and JS fixes and cleaning.
FIXED: Compatible with YITH Ajax Search Premium version.
FIXED: Various RTL CSS bugs
FIXED: Various bugs with the UX Slider.
FIXED: Various Windows Phone bugs.
FIXED: Setting main nav right + catalog mode now works.
FIXED: Search disappearing in latest Ajax Search plugin version.
FIXED: Various problems with WordPress 4.2
FIXED: Plugin support for Nested Category plugin.
Important file changes:
functions.php, header.php, theme.js has been changed.
You need to update them if you use them in your child theme.
--- 2.2.3 ----
FIXED: Nofollow added to Share and Follow icons.
FIXED: Product slider only show half sometimes.
FIXED: Shipping Calculator sometimes does not update.
FIXED: Problems with uploading images in Page Builder and latest WordPress version.
FIXED: Various CSS bugs.
NEW OPTION: Show 'In Stock' text on product page.
NEW OPTION: Full height right sidebar on product page.
NEW OPTION: Full width product page.
--- 2.2.1 ----
FIX: Wishlist issues with WooCommerce 2.3
FIX: Add to cart from grid now works with WooCommerce 2.3
FIX: Outdated WooCommerce template files.
FIX: Various layout bugs.
--- 2.2 ----
IMPORTANT FIX: Compatible with WooCommerce 2.3!
NEW OPTION: Upload Footer background image.
NEW OPTION: Option to change footer 1 and footer 2 columns (6, 4, 3, 2, 1).
NEW OPTION: New grid option. Add to cart button below name/price.
NEW OPTION: Boxed and Framed product grid style.
NEW OPTION: Pinterest/Masonry Product grid option.
NEW OPTION: Add HMTL or Shortcodes after a Blog post.
NEW: Flatsome Child Theme now has a custom function file.
FIXED: Cart total in header is now correct.
FIXED: Animation glitch on animated banners.
FIXED: Product Zoom scrolling bugs for mobile devices.
FIXED: Various CSS fixes.
--- 2.1 ---
NEW OPTION: Quick Zoom on product page.
NEW OPTION: Simple Maintenance Mode option
NEW OPTION: Select header presets in Theme Options.
NEW OPTION: Add scripts to the Thank You page in Theme Options > HTML Blocks.
NEW OPTION: Add scripts to HEAD in Theme Option > HTML Blocks
NEW OPTION: Added size="" to [search] to make search box bigger or smaller.