forked from ramiy/astra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1607 lines (1398 loc) · 102 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
v4.1.3
- Fix: Container - Content Boxed layout removes Spectra column or container left padding.
- Fix: Offcanvas - Due to clickable hidden area toggle buttons don't work in RTL mode.
- Fix: Header Builder - Cart - On adding product to cart, quantity plus & minus buttons gets disappear.
- Fix: Topic tags div visible multiple times and goes into infinite loop in case of BBPress.
- Fix: Offcanvas - Builder component popup overlaps on customizer controls section.
- Fix: WooCommerce - Widget's dropdown arrow is moving to top corner.
- Fix: Header Builder - Cart - Slide cart goes blank when Elementor Pro is active with latest version.
- Fix: get_the_excerpt() callback breaks the functionality of external plugins like BuddyPress Registration, Five Star Restaurant Reservations, Formidable Form.
v4.1.2
- Fix: Post content shrinks on one side for the blog archive.
- Fix: Menu - CSS menu arrow icons are coming along with SVG icons.
- Fix: Menu - Submenu arrows are hidden in case of SVG icons are disabled.
v4.1.1
- Fix: Single Post - Related Post Title Font Size is not working for responsive devices.
- Fix: PHP notice "Warning: Array to string conversion" while parsing button styling CSS.
v4.1.0
- New: Accessibility options to change color and style of highlighted element. ( https://wpastra.com/docs/accessibility-controls/ )
- New: WooCommerce - Shop - Introducing new redirect actions on add to cart click. ( https://wpastra.com/docs/introducing-new-add-to-cart-trigger-actions-for-shop-and-single-product-pages/ )
- New: WooCommerce - Sortable support for payment options on single product page.
- New: Published, last-updated date support for post meta date field.
- New: Date format option for post meta date field.
- New: Introduced new filter 'astra_custom_logo_attributes' to add attributes into custom logo.
- Improvement: Hardened the security.
- Improvement: Compatibility with WordPress-6.2.
- Improvement: Starter Templates admin menu nav-link removed when Whitelabel is enabled.
- Improvement: Improved accessibility for header menu navigation.
- Fix: Customizer - Typography and Button Preset options selected preset not highlighting and reset button not functioning.
- Fix: Author Info box is visible multiple times and goes into infinite loop in case of BBPress.
- Fix: W3 validation - Builder - Menu - Duplicate IDs for responsive devices.
- Fix: Block editor - Image breaking outside the entry container when left/right aligned.
- Fix: WooCommerce - Real Time Quantity Updater not working in case of shortcode used.
- Fix: WooCommerce - CSS overriding Global H2 tag font size WooCommerce pages.
- Fix: Customizer - Global buttons text and background hover color not working in customizer preview.
- Fix: Customizer - Global outline button styling not reflecting in block editor for some cases.
- Fix: Footer builder - Widgets dynamic CSS gets added multiple times on the frontend.
- Fix: WooCommerce - Error, info content messages UI breaking on the frontend.
- Fix: Builder - Off-canvas menu - Dropdown menu arrow icon is misplaced in case of toggle for desktop.
- Fix: Spectra Compatibility - Spectra spacing options for applying custom margin and padding not working.
- Fix: Content background color does not apply to Author Box in customizer preview.
- Fix: Cost Calculator Builder - compatibility range slider.
- Fix: Disable the title from Elementor setting is not working as expected.
- Fix: Footer menu alignment issue for responsive devices.
- Fix: Inside container spacing for single posts affecting the related posts section.
- Fix: PHP error 'Uncaught TypeError: ltrim()' for getting taxonomy term link.
- Fix: Single post title transformed to capitalize with 4.0 update.
- Fix: WooCommerce - Console throwing an event listener error when a product has only 1 item in stock.
- Fix: Customizer - Typography and Button Preset options selected preset not highlighting and reset button not functioning.
- Fix: WooCommerce - Buttons does not inherit global button styling from the theme customizer. ( https://wpastra.com/docs/global-button-styling-now-supports-woocommerce-store-buttons/ )
v4.0.2
- Deprecated: Filter 'astra_single_banner_post_meta' for single post meta markup has been deprecated instead use 'astra_single_post_meta'.
- Fix: get_option database call increase page loads for fetching theme options.
- Fix: exclude_from_search query parameter removed from get_post_types list to get CPTs under Customizer > Custom Post Types section, case of CartFlows Step custom post type.
- Fix: Archive - Title area 2 - Archive type title gets added as prefix on archive pages.
- Fix: Text transformed to 'capitalize' for single post titles & archive titles after 4.0.0.
- Fix: Single Post - "Read Time" option missing from metadata.
- Fix: Comment form fields should be stack on responsive devices.
- Fix: iframe breaks out of parent container on responsive devices.
- Fix: UI glitch typography input box control on Firefox browser.
- Fix: Multiple times fetching custom post types list callback executes for dynamic customizer.
- Fix: Theme preview showing title area on the banner section for the homepage.
- Fix: Importing wp-starter-content template on fresh setup overriding the existing site title.
- Fix: Dynamic customizer - Single-archive section titles and taxonomy meta names getting by its slug name instead of title.
- Fix: Admin dashboard's Site Identity quick setting link redirecting to Header Builder > Logo section instead of redirecting to Site Identity section.
v4.0.1
- Improvement: Introducing filter 'astra_dynamic_get_post_types_query_args' for getting post types list to load further dynamic sections in customizer.
- Fix: Header Builder - Visibility control options missing from header sections & respective element sections.
- Fix: Header Builder - Header or the elements on the frontend gets hide directly if previously back in past it got disabled temporary.
- Fix: Header Builder - Account - PHP error E_PARSE gives syntax error for customizer configurations.
- Fix: Smooth scroll to ID - Navigation hash link which redirect to other page's section is not clickable.
- Fix: Archive type title gets added as prefix on archive pages.
v4.0.0
- New: Redesigned the entire admin area with better user experience. ( https://wpastra.com/updates/astra-4 )
- New: Narrow Width Container layout for Single Posts, Blogs/Archives & Pages. ( https://wpastra.com/docs/narrow-width-container-layout/ )
- New: Introduced Smooth scroll to ID option for smooth scrolling to section ID on one page site navigation.
- New: Added elegant starter-content theme support for wordpress.org preview & for fresh setup. ( https://wpastra.com/docs/replicating-the-screenshot/ )
- New: Added text decoration and text transform options to each customizer typography settings.
- New: Dynamic content layout & sidebar layout support added for all custom post types. ( https://wpastra.com/docs/how-to-use-dynamic-customizer-from-astra-4-0/ )
- New: Dynamic single & archive banner title area support for all custom post types. ( https://wpastra.com/docs/how-to-use-dynamic-customizer-from-astra-4-0/ )
- Improvement: Moved Scroll to Top pro extension from addon to theme. ( https://wpastra.com/docs/scroll-to-top-pro/ )
- Improvement: Redesigned customizer typography control's UI for better experience.
- Improvement: Customizer typography & color defaults updated to get better UI experience for fresh setup.
- Improvement: Introduced new filter 'astra_global_color_palette' to extend default color palette settings.
- Improvement: Block Editor - Editor experience improved in relation with the frontend.
- Improvement: Responsive toggle selection customizer options replaced with new multi-selector control for better experience.
- Improvement: Performance related customizer options moved to new admin dashboard under Settings tab.
- Fix: Customizer's responsive font-size control UI is misaligned.
- Fix: Off-canvas - Full screen - Mobile Menu gets very long scroll when Elementor plugin is activated.
- Fix: Full Width/Contained layout Layout is showing extra padding above in the Transparent Header.
- Fix: Block editor - Getting "wp.data.select( 'core/editor' )getBlocks()" console warning in editor as being deprecated in WordPress version 5.3.
- Fix: Block editor - Button background color gets overridden by core styles for Legacy block editor setup.
- Fix: Elementor Global button style overrides theme's submenu button style.
- Fix: Getting console error in customizer when trying to update footer columns.
- Fix: Block editor - Color gradient angle input field not visible in the block settings.
- Fix: Block editor - Content background gets explicitly set to white in responsive view.
- Fix: WooCommerce - Sticky add to cart is not working on old header footer.
- Fix: Margin applying for the last child 'li' tag inside widget section.
- Fix: Block editor - Button background color gets overridden by core styles for the Legacy block editor setup.
- Fix: Customizer - Content background color reflections not working in customizer preview.
v3.9.4
- New: WooCommerce Cart - "Cart Page" click action introduced to redirect the user to the cart page.
- Improvement: Added Spectra plugin compatibility for a better experience.
- Improvement: WooCommerce Cart - Moved border width option for cart icon from the addon to theme.
- Improvement: WooCommerce - Clear button is aligned on top for WooCommerce active filter widget when the "Chips" option is enabled.
- Improvement: WooCommerce - Single Product - Edit shortcut link assigned to sticky add to cart for easy navigation in respective customizer section.
- Improvement: WooCommerce - Added product images for tablet users on the cart page.
- Improvement: To have an elegant fresh setup UI, updated the customizer sidebar layout by default to No-Sidebar.
- Improvement: WooCommerce Cart - Responsive slider option to adjust Slide-in Cart width for Desktop, Tablet, & Mobile devices.
- Fix: WooCommerce - Content background colour not working in the customizer preview.
- Fix: WooCommerce - Shop - Sale badge text is misaligned on the front end.
- Fix: WooCommerce - Custom image and icon support for payment section.
- Fix: WooCommerce - Payment list styling is broken inside quick view.
- Fix: Block Editor - Astra Meta settings do not save when the Custom Fields option is enabled from the preferences.
- Fix: Two search buttons are visible on the empty archive search result page.
- Fix: Disabled Astra meta setting for the Blog page, which does not work from meta box, as it acts like an archive page on the frontend.
- Fix: Megamenu spacing conflicts with the primary menu top offset option on mobile devices.
- Fix: WooCommerce - Cart icon size is not working on the starter template site.
- Fix: Top border showing up for related post section on a single post when Boxed & Content Boxed layout is active.
- Fix: Editor - External toggle controls reverse their direction due to the theme's CSS.
- Fix: Block editor - Getting console error for reading properties of undefined for getEditedPostAttribute.
v3.9.3
- Improvement: Compatibility with WordPress 6.1.
v3.9.2
- Improvement: WooCommerce - Admin bar's customize link updated on WooCommerce pages for quick landing to it's respected customizer section.
- Improvement: WooCommerce - Added WPML translation support for cart dynamic input, proceed to checkout input & free-shipping text input through wpml-config.xml file. (Props - OnTheGoSystems)
- Improvement: WooCommerce - Shop - Shop skin layout design 3 option moved from addon to theme.
- Improvement: WooCommerce - Shop - Product card alignment option moved from addon to theme.
- Improvement: WooCommerce Cart - Hide cart total when cart is empty option.
- Improvement: WooCommerce - Single Product - Moved sticky add to cart from addon to theme.
- Improvement: WooCommerce - Moved Add to cart quantity button to cart from addon to theme.
- Improvement: WooCommerce - Single Product - Moved structure options from pro to free theme.
- Improvement: WooCommerce - Moved Add to cart quantity button to cart from addon to theme.
- Improvement: Earth (default) icon for selected color improved for better visibility on brighter & dim colors.
- Improvement: Redesigned the Astra Meta Settings layout control similar to customizer layout selection options.
- Fix: WooCommerce - Single Product - Alignment issue with content added by plugin near add to cart section.
- Fix: WooCommerce - Dropdown icon cart link does not redirect to cart page.
- Fix: WooCommerce - Cart element is adding primary header height on below and above header section.
- Fix: WooCommerce - Cross sell grid products showing with 50% width when modern cart layout is enabled on cart page.
- Fix: WooCommerce - Single Product - Flex CSS conflicting with third party plugins which adds custom functionality aside add-to-cart button.
- Fix: WooCommerce - Checkout - Misalignment for order products quantity in order summary box.
- Fix: WooCommerce - Show password eye icon is not visible on My Account page.
- Fix: Block Editor - 2em Block gap spacing appearing in container blocks.
- Fix: Customizer range slider control not accepting decimal values for 'em' unit.
- Fix: Padding being added to the Full Width/Stretched Layout when using Brizy Page Builder.
- Fix: Search element not clickable on above header, moving old to new header builder.
- Fix: Showing deprecated function warning on frontend after installing Elementor with theme.
- Fix: The Menu gets disappeared on the Android mobile device when you select Header Type is set as Dropdown.
- Fix: Footer - Footer global background color and padding is not working in the frontend.
- Fix: Spectra plugin settings page link redirect to old 'uag' admin page.
v3.9.1
- Fix: WooCommerce - Child theme's WooCommerce custom templates gets overridden by parent theme.
- Fix: Block editor - Row block's layout stack in editor.
- Fix: PHP error with uncaught function 'ctype_xdigit' not found in common-functions.php on some specific servers.
v3.9.0
- New: Redesigned the entire customizer UI for better user experience.
- New: WooCommerce - Product Catalog - Introduced content layout & sidebar option.
- New: WooCommerce - General - Introduced store notice text color & background color options.
- New: WooCommerce - General - Introduced store notice position option.
- New: WooCommerce - Single Product- Introduced Option to add free shipping text next to WooCommerce single product price.
- New: WooCommerce - Single Product - Introduced Product Variation Orientation option.
- New: WooCommerce Cart - Option for enabling desktop offcanvas cart flyout.
- New: WooCommerce Cart - Option to update offcanvas flyout direction.
- New: WooCommerce Cart - Option to change offcanvas flyout width.
- New: WooCommerce Cart - Introduced cart icon hover color option.
- New: WooCommerce Cart - Introduced cart Margin and Padding spacing option.
- New: WooCommerce Cart - Introduced cart total Label position option.
- New: WooCommerce Cart - Introduced Icon size option in the WooCommerce Cart.
- New: WooCommerce Cart - Introduced show/hide cart total badge option.
- Improvement: Categorized & segregated global options into respective sections of customizer.
- Improvement: WooCommerce Cart - Modify the Cart label section via Shortcodes. ( https://wpastra.com/docs/improvement-woocommerce-modify-the-cart-label-design/ )
- Improvement: Introduced filter 'astra_stretched_layout_with_spacing' to exclude Stretched layout around spacing CSS. ( https://wpastra.com/docs/improved-block-editor-experience/ )
- Improvement: Introduced filter 'astra_get_store_sidebar_layout' to extend sidebar option for the WooCommerce layout.
- Fix: WooCommerce - Margin issue for single shop page with the Full width & Contained Layout.
v3.8.5
- Fix: Getting top spacing for entry-header in case of page builder template.
v3.8.4
- Fix: Page layout & Sidebar option directly updating after the last update.
v3.8.3
- New: Block editor - Padding presets for container blocks. ( https://wpastra.com/docs/improved-block-editor-experience/ )
- Improvement: Default sidebar layout is improved.
- Improvement: Moved Single Post and Page spacing option to theme from addon.
- Fix: Block editor - Bottom margin is not set as per customizer setting for Paragraph block.
- Fix: Table block not aligned centrally for Legacy block editor setup.
- Fix: Sticky header - Offcanvas menu do not close when header menu link is set to #target.
- Fix: Blog Achieve layout 2 and layout 3 broken between 769px to 921px.
- Fix: Image block not aligned centrally for Legacy block editor setup.
- Fix: Block editor and frontend layout mismatch for Row block.
- Fix: Primary submenus not expandable on mobile when toggle button element is not added.
- Fix: PHP Notice - Array to string conversion on widget.php page.
- Fix: ul & ol list items overlap on previous alignleft WordPress block.
- Fix: Logo markup loading on the frontend without added logo in Site Identity.
- Fix: Mobile/tablet menu not able to close when #target_id link is used.
v3.8.2
- Fix: Improvements as per WordPress coding standards.
- Fix: Compatibility with WordPress 6.0 - Image block not aligned center when Legacy option set from the Block Editor.
- Fix: Header - Account - Login popup not opening on mobile/tablet.
- Fix: The theme's responsive styles not loading with the responsive preview option in the block editor.
- Fix: Off-Canvas - button type is missing for the close button inside the Flyout header type.
- Fix: W3 validation - Parse error for background-color CSS property.
- Fix: W3 validation - aria-label attribute is missing for related posts link.
- Fix: W3 validation - Role attribute is missing for Account element link.
- Fix: Line height decimal not appearing in the Global typography section.
- Fix: Block editor - Layout settings are not visible for Group block.
v3.8.1
- Fix: Users updating from v3.7.8 in some edge cases facing resource allocation error.
- Fix: Global Typography Body and Headings font family preview changes not appearing in the customizer.
- Fix: Beaver Builder page content width not working properly with block editor CSS compatibility.
- Fix: W3 validation - Role attribute is missing for Account element link.
v3.8.0
- New: Enhanced block editor experience. ( https://wpastra.com/docs/improved-block-editor-experience/ )
- Improvement: Font variant customizer control's HTML markup was loading from PHP, which is now moved to React JS for the better and optimized customizer performance.
- Fix: Customizer's typography section loading slowly.
- Fix: Block editor - Layout settings are not visible for Group block.
- Fix: Elementor Pro - WooCommerce Checkout Form's shipping details not look appropriate in editor mode as it looks on the frontend.
- Fix: Search element not displaying in Mobile Offcanvas.
- Fix: Offcanvas Shopping cart closes automatically on mobile when scrolled.
v3.7.10
- Fix: WooCommerce - Grid layout not working properly with Products Archive shortcode.
- Fix: Toggle menu not collapsible on below IOS 13 version.
- Fix: Compatibility with WordPress 5.9.2 - Customizer block editor color More Settings getting oval shape around palette.
v3.7.9
- Fix: Added correct version number for background updater.
v3.7.8
- Improvement: Added a new filter 'astra_settings_metabox_register' to prevent loading of block based Astra Settings metabox. ( https://wpastra.com/docs/hide-astra-settings-for-user-roles/ )
- Improvement: Introducing new breadcrumb separators.
- Improvement: Site Background color will be applied as the background color for Full-Width - Contained/Stretched layouts instead of Content Background color. ( https://wpastra.com/docs/applying-content-background-to-full-width-layouts/ )
- Fix: W3 validation - Removed an attribute tabindex for dropdown menu toggle.
- Fix: W3 validation - legend HTML tag missing for comment section.
- Fix: Related Posts - Post Query - Order by Random option not working as expected.
- Fix: W3 validation - aria-label attribute is missing for cart off-canvas drawer.
- Fix: Dropdown menu appearing when flyout/fullscreen header type is selected for mobile/tablet in the customizer preview.
- Fix: W3 validation - Builder - Account - Duplicate IDs for account icons.
- Fix: Elementor Pro - WooCommerce Grid layout support in WooCommerce Products Archive widget.
- Fix: Accessibility - Tab navigation does not highlight slider search icon.
- Fix: Console error on mobile devices for Safari browsers.
- Fix: WooCommerce - Blank Flyout shopping cart appearing on checkout & cart page for mobile/tablet devices.
- Fix: Gutenberg editor - Gutenberg Blocks jerk when users edit any blocks.
- Fix: Gutenberg editor - Block Editor layout showing issue with heading block on page or post.
- Fix: Astra meta settings are not getting saved when Classic editor is enabled.
- Fix: Menu disappears on the Android mobile devices when Header Type is set as Dropdown.
- Fix: Elementor Popup – Youtube video fullscreen not working when the cart element is added.
- Fix: Submenus are misaligned with the old Astra header menu for specific cases.
- Fix: WooCommerce - Product Categories widget's hierarchy layout is missing on the Frontend.
- Fix: Column Block - Layout options missing when nested inside Group/Cover Blocks.
v3.7.7
- Improvement: Compatibility with WordPress 5.9.
- Fix: var() colors code appearing in block editor theme palette picker.
- Fix: There is no gap between the post edit title & first content block in the block editor.
- Fix: Color picker's UI breaking in customizer & in block editor.
- Fix: Gradient picker's UI breaking inside color picker.
- Fix: Column figure blocks overlapping on one another in block editor.
- Fix: WooCommerce - Variation product label is not align properly with WooCommerce 6.1 version.
v3.7.6
- Improvement: Added a new filter 'astra_web_stories_position' to change the position of web stories. ( https://wpastra.com/docs/change-web-stories-position/ )
- Improvement: Builder - Button - Added typography options from Astra Pro to free theme.
- Fix: Mobile menu does not close when you click a one page navigation link inside them.
- Fix: Responsive color options from 'color-group-control' are hiding when trying to set them in responsive devices.
- Fix: Global button design options are not working in customizer preview for WooCommerce buttons.
- Fix: Removed unwanted title and desc tag present for search icon.
- Fix: WooCommerce Pagination markup misaligned on mobile devices.
- Fix: Gutenberg separator dots not appearing properly on frontend.
- Fix: JS console error when Custom Layout is added for header.
- Fix: Accessibility - Tab navigation does not highlight menu with submenus.
- Fix: Filter to disable all Meta Settings of Page/Post by default is not working in Gutenberg based metabox. ( https://wpastra.com/docs/disable-all-meta-settings-of-page-post-by-default/ )
v3.7.5
- Improvement: Added compatibility for Elementor Pro v3.5.0 WooCommerce widgets.
- Fix: WPForms submit button not inheriting global button text color.
- Fix: 'Disable Below Header' option is not visible in Astra meta settings.
- Fix: LearnDash - Astra meta settings are not getting saved for the course page.
v3.7.4
- New: Breadcrumb compatibility with SEOPress plugin. ( https://wpastra.com/docs/add-breadcrumbs-with-astra/#support-for-third-party-plugins )
- Improvement: Gutenberg editor core blocks UI/UX improvement. ( https://wpastra.com/docs/gutenberg-ui-improvements-with-astra/ )
- Improvement: Code refactor – Some filters, functions, hooks are deprecated and replaced with astra_ prefix NamingConvention. ( https://wpastra.com/docs/deprecated-astra-hooks/ )
- Improvement: Gutenberg frontend blocks UI improvement. ( https://wpastra.com/docs/gutenberg-ui-improvements-with-astra/ )
- Improvement: Global – Typography – Heading presets value should also retain in H1 to H6.
- Improvement: Moved Astra meta settings into a separate Gutenberg sidebar panel. ( https://wpastra.com/astra-3-7-4/ )
- Improvement: Added Background color and hover color for WooCommerce Cart.
- Fix: W3 validation - Getting duplicate H1 tag for site-title.
- Fix: W3 validation - Duplicate HTML id '#site-navigation' if there are multiple menus on a single page.
- Fix: W3 validation - CSS parse error for '.menu-link' & '.wp-block-button__link'.
- Fix: W3 validation - Duplicate ID: '#ast-hf-mobile-menu'. This change may break CSS if you have used custom CSS on '#ast-hf-mobile-menu' HTML ID.
- Fix: W3 validation - Duplicate ID: '#Layer_1'. This change may break CSS if you have used custom CSS on '#Layer_1' HTML ID.
- Fix: Gutenberg Editor content area showing white background color when Full-screen mode is active.
- Fix: Color picker tooltip appears on hover of selection area & its palette.
- Fix: The default "Add Widget" text alignment issue in the header.
- Fix: Image and Text blocks alignment not working properly with Image size - Medium in the editor.
- Fix: Alignwide blocks getting horizontal scrollbar on tablet breakpoint & 1400px between devices. (Props - https://github.com/ZebulanStanphill)
- Fix: Inner container Gutenberg block's content width not affected by "Container Width" option. (Props - https://github.com/ZebulanStanphill)
- Fix: Gutenberg - Font weight for the heading typography is appearing differently on the editor and frontend.
- Fix: WooCommerce - Broken grid layout on mobile view for products shortcode.
- Fix: Title is misaligned in Gutenberg editor when the Gutenberg plugin v11.4.1 and above is active.
- Fix: The hamburger button is not changing its aria-expanded attribute to true on expanding.
v3.7.3
- Fix: Builder - Offcanvas content directly visible on frontend even 'Toggle Button' component is not added in builder area.
- Fix: Full Size & Wide Size block layout options missing from core/image block.
- Fix: Button Preset preview not working for an edge case.
- Fix: Global color palette - customizer preview for Elementor pages not working.
- Fix: Customizer - Block Settings area getting irrelevant round shapes.
v3.7.2
- Fix: Incorrect Site Background Color on pages with Full Width layout.
v3.7.1
- Fix: Gutenberg - Group Block appearing full width on frontend.
v3.7.0
- New: Global Color Palette compatibility for Block editor using theme.json. (https://wpastra.com/astra-3-7/)
- Improvement: Updated labels for Global Palette colors.
- Improvement: Global Color Palette preview time optimized.
- Improvement: Footer - Copyright text color compatibility with Global Color Palette.
- Improvement: Added tooltip for palette inside colorpicker control.
- Fix: Color Palette options appearing outside control container.
v3.7.0-beta.1
- New: Introduced Global Color Palette Feature. (https://wpastra.com/docs/astra-global-color-palette-settings/)
- New: Introduced Typography Presets Feature. (https://wpastra.com/docs/astra-typography-presets/)
- New: Introduced Button Presets Feature. (https://wpastra.com/docs/astra-button-styles-presets/)
- New: Added Heading Typography options for H4-H6 also.
- New: Content background color option.
- Fix: Heading color option not working for Sidebar, Footer widget title.
- Fix: Heading color option not working for the Archive page title.
- Fix: Live preview for content background option not working.
- Fix: Content background image not working for related posts section.
v3.6.9
- Improvement: In the font size option, users cannot set the value '0'.
- Improvement: Introduced filter to exclude anchor links from text-decoration style. ( https://wpastra.com/docs/remove-underlined-content-links/ )
- Improvement: Clear asset cache of theme and addon on every new update of the theme.
- Improvement: Moved addon related Toggle for Desktop frontend-pro.js file from theme to the addon.
- Improvement: Moved the 'Site Icon' control to a separate section, 'Site Identity'.
- Fix: Auto-scroll not working on clicking Footer Builder in the customizer preview.
- Fix: WooCommerce - Cart icon not appearing correctly on Tablet & Mobile devices.
- Fix: Dropdown target as a link not working if the menu item has a link.
- Fix: WooCommerce - Cart count is overlapping on submenu section.
- Fix: The submenu toggle is not working when 'Flyout Menu' is used, and the page is resized.
- Fix: Customizer color group control's reset position misaligned.
- Fix: Desktop logo width is applying on the mobile devices during page load.
- Fix: Social icon does not change in the customizer preview.
- Fix: Gutenberg Editor content area showing white background color when Full-Width Contained / Stretched layout is active.
- Deprecated: Builder - Account Element - Deprecated transparent header's responsive options for menu colors.
v3.6.8
- Improvement: Added WPML translation support for all customizer's strings through wpml-config.xml file.
- Fix: Elementor Pro's Header-Footer theme builder layouts does not override theme's Header-Footer builder layouts.
- Fix: Bulk action selection not working on any WordPress list table when theme's "Get Started" notice is active.
- Fix: Header Footer Widgets: Off-canvas content is displaying over Legacy widget's preview in the customizer for WordPress 5.8.
- Deprecated: Header Footer Widgets - Deprecated design specific options for better compatibility with WordPress 5.8. ( https://wpastra.com/docs/enable-astra-widget-design-options/ )
v3.6.7
- Improvement: Rendered Addon dependent toggle code conditionally and removed unwanted code.
- Improvement: Changed the screen reader text tag from 'h2' to 'span' for better SEO.
- Fix: Changing Off-canvas flyout close button color not reflecting on frontend.
- Fix: Broken layout WooCommerce Shop/Archive page on mobile view when using elementor template or Product archive widget.
- Fix: Next and Previous pagination button is not aligned with page numbers for mobile view.
- Fix: Added dynamic breakpoint support for the responsive view of the sidebar and main content.
- Fix: Heading color h1-h6 of customizer not working in the Gutenberg editor.
- Fix: Global headings font family not working in the Gutenberg editor.
- Fix: Footer Builder - Widgets - Right margin space not working. ( https://wpastra.com/docs/fix-footer-widget-right-margin/ )
- Fix: Search icon color is not applying to the Standard and Transparent Header Search Box style.
- Fix: Removed the spacing applied for the menu items in the customizer section.
- Fix: Builder - WooCommerce & EDD cart - Cart and Checkout buttons not visible when multiple products added to cart flyout.
- Fix: Builder - Social Icons - Tiktok icon not appearing in customizer and on frontend.
- Fix: 'Disable Footer' option is missing in Page meta settings for new Header Footer builder.
- Fix: Removed 'Disable Footer Widgets' option in Page meta settings for new Header Footer builder.
- Fix: Sidebar block editor width changes on the widgets page.
- Fix: Off-canvas menu closes on scrolling on mobile devices.
- Fix: Customizer builder section not scrollable when multiple elements dropped in builder area.
- Fix: Theme's default margin space of OL tag apply to Elementor's TOC widget. ( https://wpastra.com/docs/remove-spacing-elementor-toc/ )
- Fix: Menu dropdown icons showing at incorrect position in RTL languages.
- Fix: “Search” string in Search Form is not translatable.
- Fix: Transparent header showing border even if it is not set from customizer in FireFox browser.
- Fix: AMP - Old header center layout is not compatiblle.
v3.6.6
- Fix: Installing Starter Templates plugin notice's "Get Started" button not working.
v3.6.5
- Improvement: Compatibility with WordPress 5.8.
- Improvement: Added default styling for - Site Logo, Site Tagline, Login/out and Search blocks.
- Improvement: Widget Element - block editor and design section added.
- Improvement: Theme support added for Rank Math plugin - breadcrumbs module.
- Fix: Customizer not working due to conflict with block editor JS.
- Fix: Alignment of title and content in the editor.
- Fix: WP 5.8 UI conflict with extra control spacing and section title font in the customizer.
- Fix: Widget page block editor width not appearing properly.
- Fix: Headers showing border even though its not set from customizer in FireFox browser.
v3.6.4
- Improvement: Introducing content links underline option.
v3.6.3
- Improvement: Global button default padding values updated.
- Fix: Global button padding settings not working for Gutenberg buttons. ( https://wpastra.com/docs/apply-default-button-padding/ )
v3.6.2
- Fix: Enable 'Preload Local Fonts' option affects on height of Gutenberg Cover edit block.
- Fix: Related Posts articles showing meta structure based on current active post.
v3.6.1
- Fix: Theme check warning - Replaced search form markup with get_search_form().
- Fix: Both desktop and mobile headers appearing on desktop due to Astra's cache.
v3.6.0
- New: Performance - Load Google Font locally. (https://wpastra.com/docs/self-hosted-google-fonts/)
- New: Performance - Preload locally hosted Google Font. (https://wpastra.com/docs/self-hosted-google-fonts/)
- Improvement: Added SVG logo height option to resolve the CLS issue. (https://wpastra.com/docs/fix-svg-logo-cls-issue/)
- Improvement: Added close button for multiselect selected items in Google font variants.
- Improvement: Changed customizer submenu control title from 'Container Animation' to 'Submenu Animation'.
- Improvement: Moved 'Submenu Animation' control from General tab to Design tab.
- Improvement: Changed sub-menu container animation option name from 'Default' to 'None'.
- Improvement: Added headings font-weight support to widget-title headings. (https://wpastra.com/docs/font-weight-for-widget-titles/)
- Improvement: Changed Transparent Header Border Bottom default value from '' to 0;
- Fix: Customizer's font & color settings not reflecting in Gutenberg editor. (https://wpastra.com/astra-3-6/)
- Fix: Max-width responsive CSS enlarges logo size on mobile devices in old header layout.
- Fix: Cart Icon not working with Sticky Header after enabling the option "Hide when scrolling down" on mobile devices.
- Fix: Secondary menu not expendable on mobile when it is outside of Off Canvas.
- Fix: CLS – Flashing desktop menu on mobile view.
- Fix: WooCommerce - product search widget button not aligned on other than shop and single product page.
- Fix: Sticky Header - Transition effect of headers when Shrink Effect is enabled.
- Fix: Two search buttons visible on the result page when Astra SVG icons enabled.
v3.5.0
- Fix: Aspect ratio is changed for YouTube embed block.
- Fix: Spacing CSS missing when 'Inline Logo and Title' option is enabled.
- Updated the theme screenshot.
- Fix: JS Console error in blog/archive customizer settings.
- Fix: WooCommerce - Product's Sale bubble appears on the header on scroll due to z-index.
- Fix: Site Title and Tagline context not working properly for new Header Footer builder.
- Fix: Version compare updated to v3.5.0 to support Site Title & Tagline pro color controls dependency.
v3.5.0-beta.1
- New: Related Posts - Option to change "Related Posts" title.
- New: Related Posts - Alignment option for "Related Posts" title.
- Improvement: Frontend optimization by reducing static CSS and loading it conditionally. (https://wpastra.com/astra-3-5/)
- Improvement: Added Site Title & Tagline color options from Astra Pro to free theme.
- Improvement: Builder - WooCommerce Cart & EDD Cart - Filter to change "Shopping Cart" text in responsive flyout. (https://wpastra.com/docs/update-mobile-cart-title/)
- Improvement: Related Posts - Added responsive support to posts Grid Column Layout.
- Improvement: Core Web Vital – Accessibility - always show aria-label attribute on builder social icons. (Props - https://github.com/tristanmason)
- Improvement: Core Web Vital - Accessibility - Background and foreground colors do not have a sufficient contrast ratio.
- Improvement: Increase max submenu width option value from 200 to 1920 same as the container.
- Improvement: Added responsive control for 'Display Site Title' and 'Display Site Tagline' settings.
- Fix: PHP error with Uncaught Error: Class 'Astra_Icons' not found in searchform.php when using plugin 'LearnDash Ratings Review Feedbacks'.
- Fix: Added accessibility for search button of search form.
- Fix: Text alignment issue for footer Widget 3 and Widget 4 when Astra Pro is deactivated.
- Fix: Removed unwanted dividers from customizer setting sections.
- Fix: Builder - WooCommerce & EDD cart - Duplicate transition CSS avoided in case normal Astra CSS icons.
- Fix: WooCommerce - "Product Categories" widget's child elements have missing icon when Astra's SVGs enabled.
- Fix: Footer Builder - Hide on mobile/tablet for above footer is not working on frontend.
v3.4.8
- Fix: Customizer not working when Gutenberg plugin v10.7.0 and above is active.
v3.4.7
- Updated the theme screenshot and added license information for the images used in the screenshot.
v3.4.6
- Fix: Footer alignment not working after update of v3.4.5.
v3.4.5
- Fix: Compatibility with Google Web Stories plugin v1.7.0.
v3.4.4
- Fix: Dropdown menu disappears while scrolling on mobile device.
- Fix: Editor selection color not visible on default background color setting.
- Fix: Placeholder for title not visible when the default(white) background is set for the content.
- Fix: Image caption not visible in the editor view.
v3.4.3
- Improvement: Builder - WooCommerce & EDD Cart - Compatibility with Border width option for cart outline style from Astra Pro. (https://wpastra.com/docs/remove-border-around-cart/)
- Fix: Search widget not working inside menu on mobile devices.
- Fix: Elementor popup close on click of input fields.
- Fix: Page Builder's menu elements show double arrow icons when Astra's SVG icons are enabled.
- Fix: WooCommerce - Shop Grid and Related Product's column layout not working for new users on responsive devices.
v3.4.2
- Fix: JS console error when Off-canvas type 'Dropdown' is selected.
- Fix: Dropdown does not close when you click a one page navigation link inside them.
- Fix: Zero value not accepting in slider customizer settings.
- Fix: Existing comments are not styled when post comments are disabled.
- Fix: Gutenberg editor getting Grey overlay when layout is Full-width Contained or Full-width Stretched.
v3.4.1
- Fix: Off-canvas - Mobile - Left aligned flyout style not working.
- Fix: Mobile Menu hides when menu item having hash(#) link is clicked.
v3.4.0
- New: 'Related Posts' feature for single post layout. (https://wpastra.com/docs/display-related-posts/)
- Improvement: Customizer - Reduce one click in Global Colors section by popping out Base Colors into parent section.
- Improvement: Gutenberg Editor - Compatibility with Starter Templates Blocks design in editor. (https://wpastra.com/docs/fix-spacing-gb-blocks/)
- Improvement: Update toolset-config.json towards Toolset 1.5 compatibility. (Props - https://github.com/decodekult)
- Improvement: Frontend optimization by reducing one request for Menu animation CSS in default theme though option is available to add menu animation.
- Improvement: Frontend optimization by replacing Flyout Menu with Dropdown menu for default theme.
- Fix: AMP - Mobile menu not working for AMP pages for the Header Footer builder.
- Fix: Cart & Toggle Button elements are not aligned with each other on Mobile Devices.
- Fix: Search Element alignment in Off-Canvas & Dropdown.
- Fix: Builder - Menu - Submenu hover color from Transparent Header directly applying to nested sub-menu items without hovering them.
- Fix: Search - Search Box opens & gets closed automatically on click of search icon in slide search style on mobile devices.
- Fix: Customizer - Edit shortcut button design breaks when Elementor template kit is active on site.
- Fix: Customizer - Maintained identical reset buttons UI in background control.
- Fix: Builder - HTML - If element is used in Primary Header & line-height is blank in element then it's inheriting from Primary Header bar which is 3em.
- Fix: Builder - Footer - Background Color picker popup cutting at it's edge in Footer Builder section.
- Fix: Menu Hover/Active link not working in Customizer & Frontend for tablet & mobile.
- Fix: Off-Canvas & Dropdown does not close when you click a one page navigation link inside them.
- Fix: Gutenberg Editor - Unable to edit content in editor when background styles applied to Content and Site Layout is Max-Width.
- Fix: Height of Mobile Header increases when we open Dropdown for Old Header.
- Fix: Builder - Menu – After partial refresh megamenu's width & left position removes in customizer.
- Fix: Transparent Header - Normal colors not working for transparent header if colors are not set from Transparent Header settings.
- Fix: Container Width option hides in Container section when Astra Pro is active but all addons are deactivate.
- Fix: Context Switch does not work if there are no elements in Primary Header for both Desktop & Mobile.
- Fix: Deprecated the Cart Style 'None' & merged it with existing option 'Outline' for WooCommerce and EDD.
- Fix: Accessibility - Tab navigation does not highlight menu with submenus.
- Fix: JavaScript error when clicking on the Dropdown Toggle for Sticky Header on Mobile.
- Fix: Scroll does not work in Off-Canvas.
- Fix: Spacing not working properly for Social Element when 'Stack on' & 'Icon Spacing' options value is changed in Customizer Preview.
- Fix: RTL WooCommerce Shop page - on Mobile Grid single column was appearing when two columns were set from the customizer setting for existing users.
v3.3.3
- Fix: Elementor - Theme Builder archive page contents are not aligned center.
- Fix: Elementor - Elementor editor panel switches back to the main panel while using the responsive view.
v3.3.2
- Fix: Transparent Header disappears if we add Widget 2 element.
- Fix: Builder - Multiple headers visible on frontend.
- Fix: Builder - Menu - not able to hover and click on submenu.
- Fix: Blog Archive - Layout 1 and Layout 2 are not working for existing users when addon activated.
v3.3.1
- Fix: WooCommerce Shop page - on Mobile Grid single column was appearing when two columns were set from the customizer setting for existing users.
- Fix: Fatal error on sites due to incorrect migration flag.
v3.3.0
- New: Transparent Header - WooCommerce Cart & EDD Cart icon color options.
- New: Builder - Off-Canvas - Added spacing option for Off-Canvas.
- New: SVG Icons support ( deprecating astra.woff font file ). (https://wpastra.com/docs/ast-font-icons-to-svg/)
- Improvement: Builder - Mobile Menu - Renamed Mobile Menu to Off-Canvas Menu.
- Improvement: Builder - Added instructive message in the builder side panel when builder layout does not have any element in use.
- Improvement: Replaced responsive number control with a responsive slider control for Base Font Size in Typography section.
- Improvement: Gutenberg Editor - Block patterns compatibility. (https://wpastra.com/docs/fix-spacing-gb-blocks/)
- Improvement: Compatibility with WordPress 5.7.
- Improvement: Code quality improvements for better performance.
- Improvement: Load minified customizer preview files for better performance.
- Improvement: Frontend optimization - Comments, Pagination, Single Page, Single Post, Archive Page. (https://wpastra.com/docs/optimize-css-html-before-3-3/)
- Improvement: Frontend optimization - WooCommerce - Shop Page, Single Product Page.
- Improvement: Frontend optimization - EDD - Shop Page, Single Product Page.
- Improvement: Frontend optimization - LifterLMS - All Courses Page.
- Improvement: Frontend optimization - LearnDash - All Courses Page, Single Course Page.
- Improvement: Added AMP Meta in style.css. ( Props - https://github.com/milindmore22 )
- Fix: White Label – White-labeled the Astra Header Footer setting notice.
- Fix: WooCommerce - Single Product page - Save review form fields cookies consent is misaligned.
- Fix: Builder - Off-Canvas - Close submenu toggle icon not changing in Mobile Menu element when the submenu is in the expanded state.
- Fix: Builder - Header - Frontend grid layout overlaps on the content section when multiple elements added in the same header layout.
- Fix: Builder - Footer - Customizer's 2nd column stack layout SVG is missing in footer layouts for responsive devices.
- Fix: Builder - Footer - Responsive control for layouts gets hidden with the click of WordPress default responsive controls.
- Fix: Block Editor - Code Block spacing CSS tweaks when it is left aligned.
v3.2.0
- New: Support for the Web Stories plugin by Google - Show off your web stories in the header of your website.
- Fix: Transparent Header - Submenu background alpha not working for the old header.
v3.1.2
- Fix: Customizer not working due to fatal error in Color Group control for some edge cases.
- Fix: Header getting hidden in a rare case on some first loads in chrome due to miscalculated browser window width.
- Fix: Showing multiple menu locations on the menu admin page.
- Fix: Transparent Header - Submenu color not working for the older header.
- Fix: Transparent Header - Submenu background color not working for the older header.
v3.1.1
- Fix: Saved value is overridden by Default value for HTML Element and Copyright Element in Customizer.
- Fix: Header Builder margin option default units were missing.
- Fix: Transparent Header - Submenu background color not working.
v3.1.0
- Improvement: Redesigned the entire customizer UI for better user experience. (https://wpastra.com/docs/revamped-astra-customizer/)
- Improvement: Added design options for Builder - Toggle Menu in Transparent header.
- Improvement: Optimized dynamic CSS functionality to reduce unwanted CSS on the page.
- Improvement: Overall HTML Structure improvement which includes removing blank spaces and removing unwanted HTML Tags.
- Improvement: Optimized customizer by removing PHP controls.
- Improvement: Optimized the SVG icons.
- Improvement: Builder - Transparent Header - Placeholder Text and Color options for Search.
- Improvement: Builder - Social Icons - Ability to add an extra Phone and Contact icons.
- Improvement: Builder - Social Icons - Added ability to select icon from an Icon Picker for individual social elements
- Improvement: Builder - Social Icons - Added a color option for labels of social icons.
- Improvement: Builder - Off-Canvas - Added an option to manage spacing between inner elements of the Off-Canvas.
- Improvement: Added new Page meta options for Above, Below and Mobile header.
- Fix: Footer vertical alignment option not working.
- Fix: Above Footer & Below Footer showing up an unwanted border in the customizer preview.
- Fix: Updated Learn More Links on Astra Options page for Nav Menu & Easy Digital Downloads addon.
- Fix: Overflowing content not wrapping as per grid layout on responsive device for Header Footer builder layout.
- Fix: Builder - Transparent Header - Social icon, label custom color & official color not working.
- Fix: Builder - Transparent Header - Menu & Submenu style applying to Off-Canvas Menu.
- Fix: Block Cover align full CSS compatibility in Block editor with sidebar.
- Fix: Color picker icon not visible on hover.
- Fix: Font size not reverted back to the initial size when the value is deleted.
- Fix: Menu active link style not working when sub-menu item is active.
- Fix: Menu line height not being applied in frontend.
- Fix: Global Button Border and Typography controls are not working in the customizer preview.
- Fix: Breadcrumb position misalignment issue for inside header option.
- Fix: Search box misaligned in Dropdown option for Off-Canvas in Mobile.
- Fix: Submenu divider option adding heavy border around menu items on responsive devices.
- Fix: JS console error with Elementor – Header, Footer & Blocks plugin.
- Fix: Console error in customizer due to third party plugin dependency.
- Fix: Menu font size not working with old Header.
- Fix: Transparent Header - Menu link, background and hover colors not working for old header.
- Fix: Builder - Menu - Submenu container get hides when hover in between Top Offset spacing.
v3.0.3
- Fix: JS console error when Theme Header is replaced with third-party plugins header.
v3.0.2
- Fix: Dropdown link target option not working for menus inside Off-Canvas, when Off-Canvas type is Flyout or Full-Screen.
- Fix: Responsive option missing for typography.
- Fix: Submenu divider option adding heavy border around menu items on responsive devices.
v3.0.1
- Fix: Astra assets cache regeneration issue when Astra Pro is updated to v3.0.0 prior to theme. ( https://wpastra.com/docs/clear-astra-cache/ )
- Fix: UI Tab switching in color options for RTL websites.
- Fix: Builder - Duplicate listing of social icons in customizer.
v3.0.0
- New: Account element added for Header Builder. ( https://wpastra.com/astra-3-0/ )
- Improvement: Removed old CSS that is already supported by browsers.
- Improvement: Removed unused grid layout related CSS.
- Improvement: Overall HTML Structure improvement which includes removing blank spaces and removing unwanted HTML Tags.
- Improvement: Conditionally loaded Elementor, EDD, Comment and Pagination related CSS only when they are used.
- Improvement: Replaced flex related CSS with theme predefined CSS classes.
- Improvement: Main JS code optimization.
- Improvement: Added customizer partial refresh support in a few options.
- Improvement: Added Stack and Inline option for Footer.
- Improvement: Builder - Menu - Added Submenu container width option.
- Improvement: Builder - Menu - Added Submenu container radius option.
- Improvement: Builder - Menu - Added Submenu container top offset.
- Improvement: Builder - Menu - Added menu hover animation styles.
- Improvement: Builder - Off-Canvas - Added container alignment option.
- Improvement: Removed extra localized variable declaration.
- Fix: RTL fixes for customizer custom controls.
- Fix: Black patch being shown while transitioning between show/hide click of the builder.
- Fix: Socials element edit pencil icon was misaligned in Header and Footer.
- Fix: Margin and Padding option for Header / Footer Elements not working with defaults.
- Fix: Builder - Social spacing option not accepting 0 as a value.
v3.0.0-beta.2
- New: Visibility options - Now user can hide few options as per devices.
- New: Divider Element - Horizontal & Vertical Divider for both Header and Footer
- New: WooCommerce Cart and EDD Cart Element for Header
- New: Added new Mobile Menu element.
- Improvement: Load CSS only when their respective options are enabled - Frontend optimization.
- Improvement: Removed .wp-smiley CSS - Frontend optimization.
- Improvement: Removed unused extra CSS from main CSS file - Frontend optimization.
- Improvement: Replace flex related CSS with the predefined CSS classes present in theme - Frontend optimization.
- Improvement: Faster Customizer experience with respect to Design/General Tab change.
- Improvement: Ability to add any number Elements in Header and Footer using a filter from child theme.
- Improvement: Loaded animation CSS only when needed.
- Improvement: Improved the UI in customizer for Footer Builder.
- Improvement: Custom Layouts - Added compatibility to new Custom Layouts Hooks with respect to the new Header/Footer.
- Improvement: Page Header - Added compatibility to Page Headers with respect to the new Header/Footer.
- Improvement: Responsive - Added responsive compatibility to Footer Inner Column Spacing.
- Improvement: Responsive - Added responsive compatibility to Social Icon Size and Social Icon Spacing.
- Improvement: Responsive - Added responsive compatibility to Search Icon Color.
- Improvement: Responsive - Added responsive compatibility to HTML Element related Colors.
- Improvement: Responsive - Added responsive compatibility to Widget Element related Colors.
- Improvement: Responsive - Added responsive compatibility to Above, Below and Primary Header height.
- Improvement: Responsive - Added responsive compatibility to Footer Menu layout.
- Improvement: Responsive - Added responsive compatibility to Footer Column Layout.
- Fix: Allowed negative margin values
- Fix: Fixed the issue with Global Button hover color not being applied to Header/Footer Buttons.
- Fix: Sticky Header - Shrink option issue with alignment.
- Fix: Primary Menu - Font Weight not being applied in frontend.
- Fix: Off Canvas - Fixed issue with Sub Menu colors, typography and other inheriting properties.
- Fix: Primary Menu - Fixed an issue with Stack on Mobile option not in action in some rare scenario.
- Fix: Footer - Added default Stack layout for Footer Columns.
- Fix: Toggle Button - Fixed an issue Toggle Button SVG looking odd.
- Fix: Button - Fixed an issue with mismatched EM/PX with respect to Margin.
- Fix: AMP Compatibility - Fixed an issue with Menu animation JS for AMP pages.
- Fix: Slider Control - Fixed an issue with zero value not being accepted by the Slider Control.
v3.0.0-beta.1
- New: Header Builder
- Introducing a new visual Header Builder that gives a flexible and advanced header designing experience.
- It offers different layers for header - Above Header, Primary Header, and Below Header.
- You can drag-n-drop elements in different sections of the header. It gives you the freedom to place elements at any location in the header quickly.
- It offers different essential header elements like Button, HTML, Widget, Social Icon, Search, Menu, etc. So that you can add all the required information easily with few clicks.
- Get background and height options for Above, Below, and Primary header.
- Spacing options for each element in the header.
- You can design a completely different header for responsive devices with handy mobile header options.
- Refer to a detailed comparison of features available with Astra free and Pro. ( https://wpastra.com/astra-free-vs-pro/ )
- New: Footer Builder
- Introducing a new visual Footer Builder that gives the ability to design unique footers for your website.
- It offers different layers for the footer - Above Footer, Primary Footer, and Below Footer.
- You can drag-n-drop elements in different sections of the footer. It gives you the freedom to place elements at any location in the footer quickly.
- It offers different essential footer elements like Copyright, Button, HTML, Widget, Social Icon, Search, Footer Menu, etc. So that you can add all the required information easily with few clicks.
- It provides a flexible columns-based structure where you can select column count and column layouts. This lets you manage the footer look easily.
- Create responsive layouts for the footer.
- Spacing and alignment options for each element in the footer.
- Refer to a detailed comparison of features available with Astra free and Pro. ( https://wpastra.com/astra-free-vs-pro/ )
- Improvement: Improved Customizer
- Experience faster loading customizer. Astra customizer is now upgraded with ReactJS that gives a quick and swift customizer experience.
- For quick access and faster editing, customization options are segregated and served with two different tabs - General and Design.
- Now get a faster customizer preview than before. Header and Footer sections will be partially refreshed on any change in the customizer.
v2.6.2
- Fix: Gradient Color control UI compatibility with WordPress 5.6.
- Fix: Background Image control UI compatibility with WordPress 5.6.
- Fix: Fatal error on changing the value of some controls in Customizer - compatibility with PHP 8.0.
v2.6.1
- Improvement: Compatibility with the Gutenberg plugin.
v2.6.0
- New: Gradient color option for background control in customizer. ( https://wpastra.com/docs/new-color-controls-in-astra/ )
- New: Partial refresh for Mobile Menu Label option in the customizer.
- Improvement: Color, Responsive Color, Background & Responsive Background control now uses Gutenberg's control in customizer. ( https://wpastra.com/docs/new-color-controls-in-astra/ )
- Improvement: All custom controls HTML markup was loading from PHP, which is now moved to React JS for the better and optimized customizer performance. ( https://wpastra.com/astra-2-6/ )
- Improvement: Use "customize_controls_enqueue_scripts" action for enqueueing customizer script to avoid loading on all admin pages. (Props - https://github.com/westonruter)
- Improvement: Compatibility with the Gutenberg plugin. ( https://wpastra.com/astra-2-6/ )
- Fix: JS Console error with PWA plugin.
- Fix: Remove the customizer section description link when White Label is enabled.
- Fix: Partial refresh was not working for the Button text in the customizer.
- Fix: CSS conflict with Product Search widget of WooCommerce in Firefox.
- Fix: ID mismatch JS console error in case of RTL languages while changing Hover/Active color in the customizer.
- Fix: Extra top spacing appearing in Tablet and Mobile when the transparent header is enabled.
v2.5.5
- Fix: Improvements as per WordPress coding standards.
v2.5.4
- Fix: Code improvements as per WordPress theme review coding standards.
- Fix: Incorrectly printed styles causing JS error with the PWA Plugin.
- Fix: Block pattern compatibility with WordPress 5.5.
- Fix: Gutenberg editor image alignment compatibility with WordPress 5.5.
v2.5.3
- Fix: Code improvements as per WordPress theme review guidelines.
- Fix: Removed third-party recommended plugins from options page.
- Fix: RGB color not working in Customizer for WordPress 5.5.
v2.5.2
- Fix: Footer Widgets background color option not working for new users.
v2.5.1
- Fix: CSS not working on Menu with third-party plugins having filter 'nav_menu_link_attributes' of lower priority.
v2.5.0
- New: Typography options for Header Button.
- Improvement: Filters to support CPT for Blog Meta & Single Blog Meta. ( https://wpastra.com/docs/add-blog-meta-support-cpts )
- Improvement: Deprecated 'astra_google_fonts_json_file' filter. Use 'astra_google_fonts_php_file' instead. ( https://wpastra.com/docs/deprecated-google-fonts-filter/ )
- Improvement: Gutenberg above and below space compatibility with Full Width / Contained layout. ( https://wpastra.com/docs/support-for-gutenberg-cover-and-group-blocks/ )
- Improvement: Header frontend CSS optimization. ( https://wpastra.com/docs/header-improvements-in-astra )
- Improvement: Support for Gutenberg Cover and Group blocks. ( https://wpastra.com/docs/support-for-gutenberg-cover-and-group-blocks )
- Improvement: Hardened security of the SelectWoo library.
- Improvement: Theme check new standards.
- Improvement: Global Button options support with WooCommerce buttons.
- Fix: PHP warning on some specific servers when the Elementor plugin is activated.
- Fix: Text highlight color issue when color is set to blank.
v2.4.5
- Improvement: Transparent Header Logo notice in Site Identity section if the logo is set from Transparent Header in customizer.
- Fix: Toggle Button contrast color not working properly.
- Fix: Introducing new CSS class for Single Product having stock available in backorder. (props @pippyn)
- Fix: Transparent Header Logo disappearing when Site Identity Logo is removed in the customizer.
- Fix: Read Time meta option appearing in customizer even when Addon is deactivated.
- Fix: Space appearing below Elementor Heading after updating Elementor plugin to v2.9.9 and above.
v2.4.4
- Improvement: Gutenberg editor improvements.
- Improvement: Hardened the security of theme.
- Fix: Added ID attribute for WP Header and WP Footer schema.
- Fix: Different image size on elementor product pages in mobile view.
- Fix: Renamed .hidden CSS class to .ast-hidden to avoid conflict with other plugins.
- Fix: UAE Nav Menu widget conflict with Mega Menu.
- Fix: Submenu icon not appearing properly on AMP pages.
- Fix: Transparent header bottom border is not working on mobile and tablet.
- Fix: Prevent PHP notice for PHP 7.4.
v2.4.3
- New: Users can now share non-personal usage data to help us test and develop better products. ( https://store.brainstormforce.com/usage-tracking/?utm_source=wp_dashboard&utm_medium=general_settings&utm_campaign=usage_tracking )
- Fix: Updated Breadcrumb schema.
- Fix: Customizer scrolling issue on Firefox.
- Fix: Gutenberg editor Full Width layout background color not working for new post.
- Fix: Gutenberg editor Headings color and typography not working.
v2.4.2
- Fix: Updated the theme screenshot and added license information for the images used in the screenshot.
- Fix: Theme check warnings.
v2.4.1
- Fix: Updated the theme screenshot and added license information for the images used in the screenshot.
v2.4.0
- New: Filter to change default breakpoint of tablet & mobile devices. ( https://wpastra.com/docs/set-update-breakpoints-tablet-mobile-in-astra/ )
- Improvement: Background color/image responsive param. ( https://wpastra.com/docs/how-to-set-background-image-for-the-site/ )
- Improvement: Updated admin Starter Templates plugin's informative strings.
- Improvement: Addon minimum version notice is now dismissible.
- Fix: Global button Color and Background Color options not working with Gutenberg button.
- Fix: W3C markup validation.
- Fix: GiveWP two 'Add-ons' submenu display issue for version 2.6.0 and greater.
v2.3.5
- Fix: WordPress 5.4 compatibility with Gutenberg Editor.
v2.3.4
- Fix: Lightning icon not appearing on astra options page.
- Fix: Breadcrumb separator appearing as HTML entity for new users.
v2.3.3
- Improvement: Compatibility with Elementor Theme Style.
- Improvement: Theme Button options dependency on Elementor global color/font settings.
- Improvement: Deprecated ast-spacing param.
- Improvement: Customizer - changed 'Learn More' button to secondary button from primary button for UX.
- Improvement: Added new Edit Shortcuts in the Customizer Preview.
- Fix: Elementor Theme Style button color conflict with customizer global button color.
- Fix: Theme check warnings and recommendations.
- Fix: Conflict with Fast Velocity Minify plugin.
- Fix: Unable to copy paste or type RGBA color code in color picker.
- Fix: Updated Iris library for Color Picker param.
- Fix: Lifter LMS certificate CSS issue with Boxed and Content Boxed layout.
v2.3.2
- Fix: Updated links for Starter Templates plugin.
v2.3.1
- Fix: Theme minimum version notice appearing in some cases even after theme is updated.
v2.3.0
- New: Options for Header Button - Open link in New Tab, add rel attribute. ( https://wpastra.com/docs/new-button-options-in-astra-theme/ )
- Improvement: Hardened the security of theme.
- Improvement: Compatibility with latest WordPress PHP_CodeSniffer rules.
- Improvement: Filter to remove featured image link on blog page. ( https://wpastra.com/docs/remove-featured-image-link-on-blog-page/ )
- Improvement: Added Fallback for database migration for some edge cases and when CRON is disabled.
- Fix: Protect theme button padding to be overridden by default values during update.
- Fix: Breadcrumb customizer doc link fix. ( https://wpastra.com/docs/add-breadcrumbs-with-astra/ )
- Fix: W3C HTML validation header button ( Replaced button tag with div tag ).
- Fix: Archive Description <p> tag missing - conflict with SEOPress.
- Fix: Duplicate search with sticky header.
- Fix: Breadcrumb compatibility with Yoast Seo 12.8.1. ( https://wpastra.com/docs/add-breadcrumbs-with-astra/#support-for-third-party-plugins )
- Fix: Comment and Search Button form compatibility with v2.2.0 button options. ( https://wpastra.com/docs/typography-module/#button )
v2.2.1
- Fix: Mobile Menu toggle not working in some cases.
- Fix: Possible recursion in the update functions.
v2.2.0
- New: Typography and color settings for Headings and Button.
- New: Added button and heading compatibility with Page Builders ( https://wpastra.com/docs/new-features-in-astra-2-2/ ).
- New: Partial refresh for Site Title & Site Tagline in Customizer.
- Improvement: Theme name updated in credit link text.
- Fix: Footer text partial refresh.
- Fix: Theme minimum version notice appearing even when theme is updated.
- Fix: Hamburger menu conflict with Mediavine Plugin.
- Fix: Breadcrumb schema before title error.
- Fix: Breadcrumb text color not working.
- Fix: Customizer WordPress 5.3 compatibility with width param.
- Fix: Default icon CSS added for Astra Font family.
- Fix: FullScreen menu with hash link click not closing the menu.
- Fix: Brizy elements not editable when transparent header enabled.
- Fix: Removed role attribute from header and footer tags for proper HTML validation.
- Fix: Search button accessibility issue.
- Fix: Schema error for author name in author info.
v2.1.4
- Improvement: Updated theme description and tags on WordPress.org.
- Improvement: Updated minimum required version of PHP on WordPress.org.
v2.1.3
- New: Introduced filter astra_blog_template_name for the overriding blog template.
- Improvement: Filters to Disable Schema. ( https://wpastra.com/docs/disable-schema-markup/ )
- Fix: Align Full and Align Wide option not working correctly for Gallery and Table GB blocks in case of full width stretched and full width contained layout.
- Fix: Added support for Gutenberg Group block, which will be introduced in WordPress 5.3 version.
- Fix: Compatibility with WordPress 5.3.
- Fix: Gutenberg editor block mover controls not visible in case of full width stretched layout.
- Fix: Primary menu padding bug on the closing of the menu on mobile devices.
- Fix: Hide last menu item not working on mobile device when Above or Below header menu is merged.
- Fix: Submenu not opening below the header. ( https://wpastra.com/docs/display-sub-menu-below-the-header/ )
- Fix: .hidden CSS class renamed to .ast-hidden class due to conflict with third-party plugins.
- Fix: Full content displayed on the archive page for post format video, image, and attachment.
- Fix: Fatal error when WordPress root directory does not have write access.
v2.1.2
- Improvement: WooCommerce Product Gutenberg blocks compatibility.
- Improvement: Displaying full content for post format video on the archive page.
- Improvement: Hide custom layout from sitemap generated by Yoast SEO.
- Improvement: Added style and script HTML5 theme support.
- Fix: Added correct admin styles for fullwidth stretch layout in WordPress editor.
- Fix: PHP Notice on the add new donation form page of Give.
- Fix: Remove unwanted schema meta of comment from creative work schema.
- Fix: Transparent header style not working in a few scenarios.
- Fix: Unwanted border appearing below header when the above header is active.
- Fix: Upload Theme button not working when Astra Notice enabled.
v2.1.1
- Fix: HTML markup break errors users facing when minify HTML is enabled from a few caching plugins.
v2.1.0
- New: Introduce filter `astra_get_pro_url`.
- New: New filter `astra_single_post_comment_time_enabled` to disable post comment time on single blog page.
- Improvement: Redesign admin notices as per WordPress standards
- Fix: Broken menu style on iOS safari browsers for version 11 or lower.
- Fix: JavaScript conflict with WP Google maps plugin.
- Fix: Drag scrollbar not working inside sections in the customizer.
- Fix: Search bar not working on android tablet devices.
- Fix: Font weights not displaying in the customizer for fonts added from Custom Adobe Fonts plugin.
- Fix: Removed extra padding that was being applied to all the Gutenberg blocks.
- Fix: SVG logo not working for mobile devices.
- Fix: Transparent Header menu background color not working on tablet devices.
v2.0.1
- Fix: JavaScript error causing customizer to not load for a few users due to conflict with some third-party plugins.
- Fix: Do not load accessibility fix for skip link in AMP endpoint as it is included in the amphtml (props @amedina)
- Fix: Rename function astra_is_emp_endpoint() to astra_is_amp_endpoint() and depracate astra_is_emp_endpoint() to fix the typo in the function name.
v2.0.0
- Improvement: Loading combined CSS and JS file for params in the customizer.
- Improvement: Remove unnecessary role attribute from HTML.
- Improvement: Crossbrowser compatibility for customizer UI.
- Improvement: Optimized number of queries executed on admin pages.
- Improvement: Live preview for controls.
- Improvement: Optimized logic for generating settings group control data.
- Fix: WooCommerce shop page cannot take fullwidth stretch layout when using Elementor/Beaver Builder page builder.
- Fix: Prevent PHP warning in the customizer for PHP 7.1.
- Fix: Infinite Scroll not working on WooCommerce Subcategory pages.
- Fix: Fonts from custom font plugin not appearing in fonts list in the customizer.
- Fix: Group popup not closing in customizer for the WooCommerce product catalog section.
- Fix: Section title does not stick in the customizer.
- Fix: RTL fixes for customizer custom controls.
v2.0.0-rc.1
- Improvement: Improved logic that is used to save the values of options inside the new popups, Earlier all the values of options inside the popup were combined and stored in JSON objects now all the values inside the popup are stored separately similar to Astra Version 1.X.X. This removes the requirement of the Database Upgrade routine when updating from Version 1.X to 2.X
- Improvement: Changed the images inside customizer to new lightweight SVGs.
- Improvement: Updated minor UI tweaks for all the customizer controls to unify the design accross all the options.
v2.0.0-beta.4
- Improvement: Layout design images.
- Improvement: Control Sequence in WooCommerce Single Product Section in the Customizer.
- Improvement: Distinguish Astra Sections from Default Sections in the Customizer.
- Improvement: Option Labels in the Customizer.
- Fix: PHP Warning in the Customizer while Woocommerce is not Active.
v2.0.0-beta.3
- New: Added Global Section for Site Options.
- Improvement: Categorization for Customizer - Theme Sections Listed under Main Panel.
v2.0.0-beta.2
- Improvement: Preview for base typography options without page refresh.
- Fix: Toggle button displays when there are no items to display in the menu.
v1.8.7
- New: Introduced wp_body_open action hook.
- Improvement: Show notification when Dropdown Target selected as "Link".
- Fix: Product widget grid design conflict with Elementor editor mobile device view.
- Fix: Padding added from Elementor product widget not working on the Front-end.
v2.0.0-beta.1
- New: Introduced a Group Param for customizer Settings.
- Improvement: Live preview for Typography options.
- Improvement: Customizer performance.
v1.8.6
- Improvement: Deprecated layout options for LearnDash 3.0 template.
v1.8.5
- New: Introduced astra_fonts_display_property filter to allow users to modify the font-display property. ( https://wpastra.com/docs/modify-font-display-property-value/ )
- New: Filter to add a title tag to Header background image as an alt text alternative. ( https://wpastra.com/docs/title-tag-in-header-background-image/ )
- New: Filter to change tag of Site Tagline Markup. ( https://wpastra.com/docs/change-html-tag-for-site-tagline/ )
- Fix: Elementor Products widget grid layout responsive design compatibility.
- Fix: Notice for HTTP_USER_AGENT when it is not set or filtered from firewall.
- Fix: Display rating notice only to users with permission to install plugins.
v1.8.4
- New: Introduced astra_the_title filter to allow users to modify the title.
- Improvement: Add a font-display property for the Google Fonts.
- Fix: Missing Inherit option added for breadcrumb typography.
- Fix: WooCommerce Shop Page row column compatibility with Elementor.
- Fix: Breadcrumb NavXT plugin schema data not correctly visible.