-
Notifications
You must be signed in to change notification settings - Fork 470
/
README.txt
943 lines (819 loc) · 55.6 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
=== Storefront ===
Contributors: automattic, tiagonoronha, jameskoster
Requires at least: 5.3.4
Tested up to: 6.5
Stable tag: 4.6.0
Version: 4.6.0
WC requires at least: 4.2
WC tested up to: 8.8
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, editor-style
Storefront is the perfect theme for your next WooCommerce project.
== Description ==
Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout & color options to personalize your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!
For more information about Storefront please go to https://woocommerce.com/products/storefront/.
For even more customization, check out Storefront extensions https://woocommerce.com/product-category/storefront-extensions/ and Storefront child themes https://woocommerce.com/documentation/products/themes/storefront/child-themes/.
== Installation ==
1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
2. Type in Storefront in the search form and press the 'Enter' key on your keyboard.
3. Click on the 'Activate' button to use your new theme right away.
4. Go to https://woocommerce.com/documentation/themes/storefront/ guides on how to customize this theme.
5. Navigate to Appearance > Customize in your admin panel and customize to taste.
== Copyright ==
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer https://meyerweb.com/eric/tools/css/reset/
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
All sizing (typography, layout, padding/margins etc) are inspired by a modular scale that uses 1em as a base size with a 1.618 ratio.
You can read more about the calculator we use in our sass here: https://github.com/modularscale/modularscale-sass
FontAwesome License: SIL Open Font License - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
Images License: GNU General Public License v2 or later
Storefront serves fonts via the hosted Google Fonts service. Storefront does not share any data with Google directly.
To the best of our knowledge, Google doesn’t track nor share end user data.
Privacy Policy for the Google Fonts API: https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users
== Changelog ==
= 4.6.0 - 2024-05-16 =
- Enhancement - support for Appearance Tools in Classic themes. #2143. ([#2143](https://github.com/woocommerce/storefront/pull/2143))
= 4.5.6 - 2024-05-15 =
- Fix - Remove site-logo support. ([#2146](https://github.com/woocommerce/storefront/pull/2146))
= 4.5.5 - 2024-04-11 =
- Fix - Update Woo.com links to Wooommerce.com. ([#2142](https://github.com/woocommerce/storefront/pull/2142))
= 4.5.4 - 2024-01-16 =
- Fix - Update WooCommerce.com links to Woo.com. ([#2132](https://github.com/woocommerce/storefront/pull/2132) and [#2136](https://github.com/woocommerce/storefront/pull/2136))
- Fix - Allow SVG in notice content. ([#2133](https://github.com/woocommerce/storefront/pull/2133))
= 4.5.3 - 2023-09-26 =
- Enhancement - Removed some unnecessary style in the Mix and Match CSS integration
= 4.5.2 - 2023-08-11 =
- Fix - Enqueue wc-cart-fragments script on all pages.
= 4.5.1 - 2023-08-10 =
- Fix - Load wc-cart-fragments-script when Mini Cart widget is active.
= 4.5.0 - 2023-08-08 =
- Fix – Add exclusion for /vendor directory in release zip build.
- Fix - Enqueue wc-cart-fragments script on woocommerce pages.
= 4.4.1 - 2023-07-12 =
- Fix – Rerun release build to fix missing files from 4.4.0 release.
= 4.4.0 - 2023-07-12 =
- Fix – Theme URI now points to Storefront page in Woo Marketplace. All links to retired theme landing page have also been updated.
= 4.3.0 - 2023-05-19 =
- Fix – Adds nofollow value to rel attribute in footer credit link. ([#2096](https://github.com/woocommerce/storefront/pull/2096))
= 4.2.0 - 2022-11-15 =
- Fix – Edit, reply and author icons are now displayed in comment list form. ([#2066](https://github.com/woocommerce/storefront/pull/2066))
- Fix – Featured Item Blocks: omit customizer styles to prevent Storefront from overriding block defaults and preventing custom colors from being applied correctly. ([#2039](https://github.com/woocommerce/storefront/pull/2039))
= 4.1.3 - 2022-08-23 =
- Enhancement - Remove styling from No Products filter results. ([#2026](https://github.com/woocommerce/storefront/pull/2026))
= 4.1.2 - 2022-08-02 =
- Fix – Update the "Development blog" link. ([#2021](https://github.com/woocommerce/storefront/pull/2021))
= 4.1.1 - 2022-06-28 =
- Fix – Fix mobile nav menu in AMP.
= 4.1.0 - 2022-03-08 =
- Dev – Update various dependencies.
= 4.0.0 - 2022-03-08 =
- Fix - Fix editor alignment issues with heading and blockquote blocks.
- Dev – Update various dependencies.
= 3.9.0 - 2021-09-27 =
- Enhancement - Update Woo's default color to #7f54b3 ([#1769](https://github.com/woocommerce/storefront/pull/1769))
- Fix - Avoid text in buttons breaking in the middle of words ([#1797](https://github.com/woocommerce/storefront/pull/1797))
= 3.8.0 - 2021-08-17 =
- Fix – Several visual issues when a Search block was added to a widget area ([#1755](https://github.com/woocommerce/storefront/pull/1755))
- Fix - Removed superfluous slashes from Star and WooCommerce fonts urls ([#1754](https://github.com/woocommerce/storefront/pull/1754))
- Fix - Fix hidden disclosure arrow on <summary> tags ([#1727](https://github.com/woocommerce/storefront/pull/1727))
- Fix - Remove full width image mobile margin and remove full width image block margins on mobile ([#1713](https://github.com/woocommerce/storefront/pull/1713))
- Enhancement – Remove skip-link-focus-fix.js. ([#1653](https://github.com/woocommerce/storefront/pull/1653))
= 3.7.0 - 2021-05-25 =
- Fix - Fix compatibility problem with Gravity forms premium ([#1690](https://github.com/woocommerce/storefront/pull/1690))
- Dev - Image optimization (imagealpha & imageoptim) ([#1691](https://github.com/woocommerce/storefront/pull/1691))
= 3.6.0 - 2021-05-11 =
- Fix – Fix potential error that can occur when product is null on sticky add to cart ([#1650](https://github.com/woocommerce/storefront/pull/1650))
- Fix – Accessibility: add aria-label on breadcrumbs ([#1668](https://github.com/woocommerce/storefront/pull/1668))
- Fix – Hide spinner when Payment Request button is disabled ([#1672](https://github.com/woocommerce/storefront/pull/1672))
- Dev – Remove deprecated functions ([#1652](https://github.com/woocommerce/storefront/pull/1652))
- Dev – Remove jQuery Pointer Events Polyfill (PEP) ([#1654](https://github.com/woocommerce/storefront/pull/1654))
- Dev – Update various dependencies.
= 3.5.1 - 2021-03-17 =
- Fix - Add missing hook to documentation [#1628](https://github.com/woocommerce/storefront/pull/1628)
- Fix - Adjust size of download button for files with long names [#1624](https://github.com/woocommerce/storefront/pull/1624)
- Fix - Close submenu for menu item on outside click [#1627](https://github.com/woocommerce/storefront/pull/1627)
- Fix - Hide handheld-footer and notice only on smaller devices [#1615](https://github.com/woocommerce/storefront/pull/1615)
= 3.5.0 - 2021-02-02 =
- Fix - Remove maximum-scale from viewport meta tag [#1600](https://github.com/woocommerce/storefront/pull/1600)
= 3.4.0 - 2021-01-27 =
- Fix - Missing icons in WC Blocks and some other parts of the UI. [#1588](https://github.com/woocommerce/storefront/pull/1588)
- Fix - Use proper escape function in comments template. [#1587](https://github.com/woocommerce/storefront/pull/1587)
= 3.3.0 - 2021-01-14 =
- Fix – Fatal error in old versions of WooCommerce. [#1583](https://github.com/woocommerce/storefront/pull/1583)
- Fix - Updated several escape functions. [#1581](https://github.com/woocommerce/storefront/pull/1581)
= 3.2.0 - 2021-01-12 =
* Fix – Replaced WooCommerce and Star icon usage with FontAwesome. [#1574](https://github.com/woocommerce/storefront/pull/1574)
* Fix - Use proper escape function for `datetime` attribute in comments template. [#1576](https://github.com/woocommerce/storefront/pull/1576)
= 3.1.0 - 2021-01-05 =
* Fix – Prevent a fatal error on activation if WooCommerce Admin is intentionally disabled.
* Fix – Removed legacy code targeting unsupported versions of WooCommerce. Storefront currently supports 4.2+.
* Dev - Update stylelint to use stylelint-config-wordpress\scss config and refactor SCSS files to follow WordPress CSS coding standards.
* Dev - Updated engines in package.json.
* Dev - Fixed PHP linting warnings.
= 3.0.0 - 2020-12-15 =
* Enhancement - Add missing link text on cart button in handheld footer bar [#1205](https://github.com/woocommerce/storefront/issues/1205)
* Enhancement - Move Storefront admin notice content to the Storefront Appearance page.[#1544](https://github.com/woocommerce/storefront/pull/1544)
* Fix - Implode parameters order compatibility for PHP8 [#1553](https://github.com/woocommerce/storefront/pull/1553)
* Dev - Update various dependencies, including major updates:
- `@wordpress/env` to v2 [#1459](https://github.com/woocommerce/storefront/pull/1459)
- `autoprefixer` to v10.0.4 [#1548](https://github.com/woocommerce/storefront/pull/1548)
- `puppeteer` to v5 [#1410](https://github.com/woocommerce/storefront/pull/1410)
- `grunt-contrib-uglify` to v5 [#1426](https://github.com/woocommerce/storefront/pull/1426)
- `bourbon` to v7 [#1388](https://github.com/woocommerce/storefront/pull/1388)
= 2.9.0 - 2020-11-10 =
* Enhancement – Added styles to the Filter Products by Price block, so the accent color is used in the slider. [#1508](https://github.com/woocommerce/storefront/pull/1508)
* Performance – Added CSS minification. [#1503](https://github.com/woocommerce/storefront/pull/1503)
* Fix - Cover block text color attributes not being applied. [#1513](https://github.com/woocommerce/storefront/pull/1513)
* Fix - Inconsistent font sizes of category and product titles in shop page. [#1501](https://github.com/woocommerce/storefront/pull/1501)
* Dev - Update various dependencies, including major updates:
- `autoprefixer` v10 and `postcss` v8 [#1502](https://github.com/woocommerce/storefront/pull/1502)
- `grunt-contrib-jshint` v3 [#1507](https://github.com/woocommerce/storefront/pull/1507)
- `node-sass` v5 [#1523](https://github.com/woocommerce/storefront/pull/1523)
= 2.8.0 - 2020-10-13 =
- Dev: Reinstate PHPcs linting #1463
- Dev: Add `wp-env` npm script alias #1489
- Dev: Tweak npm config & scripts for release tooling changes #1462
- Dev: Various dependency updates
= 2.7.0 - 2020-09-02 =
* Fix - Respect user-selected Color and Font size values for All Products' Product Title Block. [#1424](https://github.com/woocommerce/storefront/pull/1424)
* Fix - Fix issue with draft products showing up in pagination [#1452](https://github.com/woocommerce/storefront/pull/1452)
* Enhancement - Add icons to notices. [#1453](https://github.com/woocommerce/storefront/pull/1453)
= 2.6.0 - 2020-08-18 =
* Fix - Add defensive checks for WC Cart instance [#1440](https://github.com/woocommerce/storefront/pull/1440)
* Fix - Fix focus outline in My Account page with Firefox [#1428](https://github.com/woocommerce/storefront/pull/1428)
* Fix - Merge duplicate CSS Selectors [#1419](https://github.com/woocommerce/storefront/pull/1419) 👏[@ismail-elkorchi](https://github.com/woocommerce/storefront/issues?q=is%3Apr+author%3AIsmail-elkorchi)
* Fix - incorrect starter content for Home page [#1422](https://github.com/woocommerce/storefront/pull/1422)
* Enhancement - Add Cart and Checkout block styles [#1412](https://github.com/woocommerce/storefront/pull/1412)
= 2.5.8 - 2020-06-19 =
* Fix – Stylesheet storefront-woocommerce-style has storefront-style and storefront-icons as explicit dependencies, so child themes can define storefront-woocommerce-style as a dependency without the risk of breaking the stylesheets order. #1369
* Fix – Removed woocommerce-legacy.css stylesheets for unsupported versions of WooCommerce (< 4.0). #1368
* Dev - Adopt RenovateBot for managing dependencies. #1363
* Dev - Update various dependencies, including major updates:
- `@wordpress/babel-preset-default` v4 #1387
- `stylelint` v13 #1390
= 2.5.7 - 2020-06-02 =
* Fix - Edit, reply and author icons are now displayed in comment list. #1319
* Fix - Updated font-weight of the All Products block so it matches the other product grid blocks. #1344
* Dev - Include FontAwesome brands icon set. #1345
= 2.5.6 - 2020-05-05 =
* Enhancement - Custom site background color is now used in editor preview. #1317
* Fix - Ensure mobile sticky footer navigation links are visible when colours are customised (use header/nav colour scheme, consistent with 2.5.4 and earlier releases). #1321
* Fix – Fix issue where product and category images were not centered on homepage & category pages. #1313
* Fix – "Reveal password" button (eye icon) is now positioned correctly in new password fields (my account change password and signup). #1325
* Fix - Fix several mispositioned :focus rings (in Firefox and other browsers). #1318
* Fix – Ensure product images have appropriate bottom margin. #1313
* Fix – Buttons blocks now respect the border radius set by the user. #1323
* Fix - Buttons blocks no longer show an underline. #1310
* Fix – Product page, cart, and checkout layout fixes affecting stores with longer product names on smaller screens. #1326
* Fix - WordPress 5.4 compatibility – Text inside the Calendar block is now centered, in line with the Calendar widget. #1315
* Fix – WordPress 5.4 compatibility – Ensure block editor uses theme typography styling. #1316
* Fix – WordPress 5.4 compatibility – Adapt block editor width if sidebar widgets are present/disabled. #1316
* Compatibility - Disable the footer bar when used with Checkout or Cart blocks (currently in development). #1307
* i18n – Use correct direction arrow icons in RTL languages (next, previous and forward). #1306
* i18n – Fix inappropriate use of disambiguation context in admin notice 'or' string. #1303
* Tweak – Improve HTML5 compliance for enqueued scripts and styles. #1309
* Tweak – Removed unnecessary vertical-align css rule for button, select, input and textarea elements. #1295
* Dependencies – Update Font Awesome icon font to 5.13.0. #1279
= 2.5.5 - 2020-02-28 =
* Fix - Blocks: Fix vertical alignment of left/right aligned image blocks. #1265
* Fix - Blocks: Correct center alignment of product image in Top Rated Products block with small number of columns. #1267
* Fix - Blocks: Improve margins between floated embed/image block and list block. #1272 #1274
* Fix - Customizer: Ensure headings and links in the footer use colors set in Customizer. #1261
= 2.5.4 - 2020-02-19 =
* Feature - Add support for new `wp_body_open` hook. #1208
* Fix - Customizer: Move "Product Page" settings into WooCommerce tab. #1224
* Fix - Blocks: Ensure product grid blocks don't wrap unnecessarily. #1217
* Fix - Editor: Fix layout issue with image block placeholder buttons. #1242
* Fix - Improve "Sale!" badge legibility by using white background (was transparent). #1251
* Fix - Improve accessibility of screen reader skip links. #1216
* Fix - Prevent search engine indexing of add-to-cart link. #1207
* Fix - Ensure password visibility button is not hidden on login form. #1238
* Fix - Allow translation of "or" in admin notice for activating WooCommerce plugin. #1257
* Fix - Remove underline from @wordpress/components button links. #1187
* Fix - Use `noreferrer` on footer credit link. #1243
* Dev - Update npm dev dependencies. #1258
* Dev - Automatically exclude storefront folder & zip when preparing release. #1199
= 2.5.3 - 2019-08-19 =
* Fix - Remove directory that was included in the previous release by mistake.
= 2.5.2 - 2019-08-19 =
* Fix - Introduce extra block styles to fix issue with WooCommerce 3.7 blocks. #1189
* Fix - Make Storefront admin notices conform to new WP.org theme rules. #1190
* Dev - Add filter to alter credit links. #1191
= 2.5.1 - 2019-07-04 =
* Feature - WooCommerce Product Recommendations integration.
* Enhancement - Add support for color styles in the "Table" block.
* Fix - Move privacy link outside credit link conditional.
* Fix - "Separator" block styles preview styling.
* Fix - Increase Shipping Methods cell size on the Checkout page.
* Fix - Stop logo image from overlapping with the "Menu" toggle on small screens.
* Fix - Cover block placeholder layout.
* Fix - Cover block paragraph size and default color.
* Fix - Floated images alignment when using the "Image" block.
* Fix - Uneven form input widths on checkout page.
* Fix - Composite Products: Layout issue limited to Bundles contained in Composites when the "Hide Thumbnail" option of a bundled product is hidden.
* Fix - Fixed an edge case where a PHP warning could show up when going through the NUX.
* Fix - Removed CSS rule that forced a 2-column layout on cart cross-sells.
* Fix - "Product Filter" widget styling on small screens.
* Fix - Add styling for number input type.
* Fix - Warning in the Query Monitor plugin when using Jetpack without the "Infinite Scroll" module enabled.
* Dev - Removed minification from front-end stylesheets since it makes the files impossible to read for folks trying to do simple tweaks.
* Dev - Moved style.css "do not edit" note to a non important comment.
* Dev - Updated node dependencies.
= 2.5.0 - 2019-05-09 =
* Feature - Updated Starter Content to make use of WooCommerce 3.6 blocks, and also the new cover block introduced in WordPress 5.2, to create a custom editable homepage.
* Tweak - Added edit link to post, pages, and products.
* Fix - Prevent overlap of site title and handheld menu button when not using a logo image.
* Fix - Added error styling to T&C checkbox and Country select in the Checkout page.
* Fix - Ensure all inputs use accent color set in the Customizer.
* Fix - Don't show sticky add to cart if product cannot be purchased.
* Fix - Added margin to view cart link in the "Added to cart" notice.
* Fix - Replaced CSS calc with Sass math when calculating block gallery column widths for better compatibility with IE11.
* Fix - Change color and size of "remove" icon in the Cart page.
* Fix - Change product pagination z-index for compatibility with PhotoSwipe.
* Fix - Fix double scrollbar when original length of the mini cart surpasses the end of the page.
* Fix - Move all Gutenberg assets to Gutenberg hooks.
* Dev - Updated Composite Products integration for compatibility with version 4.0.
* Dev - Updated FontAwesome to 5.8.1.
= 2.4.6 - 2019-04-26 =
* Fix - Sort homepage template categories by `menu_order` instead of `name`.
* Fix - Remove menu transition when no menu is assigned to primary location.
= 2.4.5 - 2019-03-15 =
* Fix - Revert changes made to the navigation menus that in some cases could cause menus to be hidden on the page.
= 2.4.4 - 2019-03-14 =
* Tweak - Update UTM parameters on WooCommerce.com links.
* Tweak - Compress and minify `pep.min.js`.
* Tweak - Minify CSS files in the `base` folder.
* Fix - Underline links in post content, footer, and breadcrumbs for better accessibility.
* Fix - Bolder outline styles for better accessibility.
* Fix - Stop Handheld Navigation items from being read by screen readers when the menu is collapsed.
* Fix - Add styling for product columns on the header widget area.
* Fix - Hide bundle/composite child cart items below the desktop size threshold.
* Fix - Split Jetpack styles into separate files to fix a flash of content when using the infinite scroll option.
* Dev - Update node dependencies.
* Dev - Handheld Footer Bar JavaScript moved from `navigation.js` to `footer.js`.
= 2.4.3 - 2019-02-05 =
* Feature - Replicate Storefront's layout logic in the block editor. Wide and Full-width options are made available only if supported.
* Enhancement - Product pagination is now circular and skips hidden products.
* Tweak - Remove unused variables from `inc/customizer/class-storefront-customizer.php`.
* Tweak - Refactored "Posted on" section in `storefront_post_meta()`.
* Tweak - Standardize mixing of static/non static function calls in the `Storefront_Customizer` class.
* Tweak - Remove padding and transition styles from post navigation.
* Fix - Remove hard coded colors for Blocks from `gutenberg-blocks.css` and use colors set in the Customizer instead.
* Fix - Clear floats on alignwide and alignfull blocks.
* Fix - When outputting custom styling for extensions, check if the object `$storefront` is in the expected format and has right properties.
* Dev - Babel added as a dependency.
* Dev - New `assets/js/src/editor.js` file.
* Dev - Revert filter name. `storefront_woocommerce_customizer_css` reverted to `storefront_customizer_woocommerce_css`.
* Dev - New hooks added to post header section: `storefront_post_header_before`, `storefront_post_header_after`.
= 2.4.2 - 2018-12-11 =
* Fix - Load in `functions.php` missing `storefront-woocommerce-functions.php` file required for compatibility with Jetpack's Infinite Scroll feature.
* Dev - Update order of Sass import files in `gutenberg-blocks.scss` and `gutenberg-editor.scss` to ensure that these are compiled correctly.
* Dev - Update Grunt tasks.
= 2.4.1 - 2018-12-06 =
* Fix - Fatal error caused by a method incorrectly defined as static.
* Fix - Remove unnecessary trailing slash in the first `load_theme_textdomain()` call.
= 2.4.0 - 2018-12-06 =
* Feature - Add support for the new blocks introduced in WordPress 5.0.
* Feature - Gutenberg editor styles.
* Feature - Redesign blog post templates.
* Tweak - Remove legacy Jetpack logo feature.
* Tweak - Move all WooCommerce related code inside of the `inc/woocommerce` directory.
* Fix - Allow zooming and scaling for improved accessibility.
* Fix - Multiple code standards improvements.
= 2.3.5 - 2018-10-24 =
* Fix - Use Pointer Events API for consistency across touchscreen devices when interacting with menus.
* Fix - Removed CSS rule that was incorrectly changing the width of image logos to 100%.
= 2.3.4 - 2018-10-11 =
* Tweak - Introduced new styles for enhanced compatibility with Composite Products 3.14.0 and Product Bundles 5.8.0.
* Fix - Improved touch support for dropdowns.
* Fix - Added missing RTL support to the Guided Tour in the Customizer.
* Fix - Added a fix to prevent starter content from showing up if not entering the customizer through the NUX.
* Fix - Fixed clearing of cart item rows on handheld screens.
* Fix - Changed store notice `z-index` value to prevent overlap with the handheld footer bar.
= 2.3.3 - 2018-07-18 =
* Tweak - Removed `user-scalable=no` from the viewport meta tag to allow for zooming on mobile browsers.
* Tweak - Allow for a flexible height on the site logo.
* Tweak - Only try to add title from `data-title` to responsive table columns that have this attribute set.
* Fix - Prevent select box from overflowing its wrapping container.
* Fix - Fixed handheld sub navigation dropdown toggle color. It now uses the same color set for the links.
* Fix - Fixed price label direction when in RTL.
* Fix - Removed related products static number of columns. It will now use the value from the wrapper `ul.products`.
* Fix - Removed font weight from default link styles for better compatibility with design plugins.
* Fix - Fixed H3 scopping in WooCommerce Brands integration.
* Fix - Fixed bundle layout issues in Composite Products integration.
= 2.3.2 - 2018-05-30 =
* Tweak - Replaced `wp_kses_data()` with `wp_kses_post()` on price outputs in the Mini-Cart and Sticky Add-To-Cart.
* Tweak - Added support for `tel` type fields in forms.
* Tweak - Replaced legacy homepage shortcodes with the new `[products]` shortcode.
* Fix - WooCommerce Memberships mobile table styling.
* Fix - Moved margin from `.woocommerce-breadcrumb` to the new `.storefront-breadcrumb` wrapper.
* Fix - Fixed alignment of mobile menu toggle.
* Fix - Removed H1 from logo when the Homepage is not the Blog page.
* Dev - Removed legacy Sass mixins.
= 2.3.1 - 2018-05-10 =
* Feature - Add support for GDPR features soon to be introduced in WordPress 4.9.6.
* Tweak - Removed inline CSS cache; WordPress autoloads options by default, there's no advantage to caching the CSS.
* Fix - Made changes to `icons.scss` to address an issue where Font Awesome icons were not being displayed correctly on some sites.
* Fix - Apply clearfix to `.col-full` globally.
= 2.3.0 - 2018-05-08 =
* Feature - Sticky Add-To-Cart.
* Feature - Product Pagination.
* Feature - WooCommerce Brands integration.
* Tweak - Increased size of branding section if secondary navigation not used.
* Tweak - Added a screen reader label to post navigation links.
* Tweak - Removed RGBaster and added Customizer controls to change the color of text in the homepage Hero section.
* Tweak - Removed NUX notice if coming from the WooCommerce wizard.
* Tweak - Updated My Account layout.
* Tweak - Removed column wrappers, unnecessary as of WooCommerce 3.3.
* Tweak - Removed Jetpack Infinite Scroll hacks; they are no longer needed as of the latest version of Jetpack / WooCommerce.
* Tweak - Removed "Free Extensions" column from Welcome page.
* Fix - Reduce padding on cart table to prevent sidebar from overflowing container.
* Fix - Hide handheld footer bar when an input is focused.
* Fix - Prevent entry meta author styles from being applied to the author archives.
* Fix - All included JavaScript is now compatible with Internet Explorer 11.
* Fix - Added styling for other buttons in the header mini cart added by extensions.
* Fix - Improved semantic HTML for pages and single posts.
* Fix - Removed negative margins in the primary navigation and breadcrumb containers to fix an overflow issue in the Linux version of Chrome.
* Fix - Removed 1px pixel margin on the product images gallery.
* Fix - Added missing styles to Composite Products integration.
* Dev - Upgrade to Font Awesome 5.
* Dev - Remove `composer.json` from production version.
* Dev - Added CSS style linting.
* Dev - Renamed the `sass` folder to `css`. All `.scss` files are now excluded from the production version.
= 2.2.8 - 2018-02-13 =
* Fix - Image bleed from next image in the gallery.
* Fix - H1 site title tag on Front page instead of Posts page.
* Fix - Number of columns and rows can now be changed in the Customizer.
* Fix - Logo image size in Internet Explorer.
* Fix - Prevent sidebar from overflowing the content at small sizes on cart page.
* Fix - 404 page responsive layout.
* Tweak - Updated development blog links.
* Feature - WooCommerce Memberships integration.
= 2.2.7 - 2018-01-23 =
* Fix - Reverted Chromium overflow fix introduced in 2.2.6 due to incompatibility with other Storefront products.
* Fix - Jetpack Google Translate widget styling.
* Tweak - Improved Grouped products table styling.
* Dev - Added filters; `storefront_custom_logo_args`, `storefront_register_nav_menus`, `storefront_html5_args`, and `storefront_site_logo_args`.
= 2.2.6 - 2018-01-16 =
* Fix - Price slider widget styling.
* Fix - Apply styles to `a.woocommerce-store-notice__dismiss-link` instead of all links in the store notice.
* Fix - Fix hidden content when there are no reviews.
* Fix - Fixed typo in the `Storefront_WooCommerce` class, `thumbnail_columns` method description. Kudos [@cryptexvinci](https://github.com/cryptexvinci).
* Tweak - Added vcard markup to template.
* Tweak - Improved My Account Payment Methods styles.
* Tweak - Improved the Bookings calendar styles.
* Tweak - Removed jQuery dependency. Kudos [@valdrinkoshi](https://github.com/valdrinkoshi).
* Tweak - Added "Navigation menus" step to Guided tour.
* Tweak - Guided tour in the Customizer is now shown to all sites.
* Dev - Removed non-standard outdated CSS. Kudos [@ElectricFeet](https://github.com/ElectricFeet).
* Dev - Removed sticky cart. See [this issue](https://github.com/woocommerce/storefront/issues/637) for more information.
* Dev - [WooCommerce 3.3] - Support for new columns & rows option in the customizer.
* Dev - [WooCommerce 3.3] - Declare image sizes.
* Dev - [WooCommerce 3.3] - Hide search button.
* Dev - `composer.json` file. Kudos [@pmgarman](https://github.com/pmgarman).
= 2.2.5 - 2017-08-21 =
* Feature - Add access to submenus from touchscreen devices. Kudos [@mikeyarce](https://github.com/mikeyarce).
* Feature - Add styles for keyboard navigation on focus items. Kudos [@mikeyarce](https://github.com/mikeyarce).
* Fix - Fix hero image positioning when page has RTL direction.
* Tweak - Remove non-minified vendor script: `rgbaster.js`.
* Tweak - Enqueue non-minified versions of scripts when `SCRIPT_DEBUG` is defined.
* Dev - New hook to filter sidebar regions: `storefront_sidebar_args`.
* Dev - Adds `grunt-contrib-compress` to the build process.
* Fix - Remove 4th parameter being passed to `remove_action`, it only accepts 3. Kudos [@ashfame](https://github.com/ashfame).
* Fix - Limit product name cell to `300px` in the order review table.
* Fix - Check header cart contents length on `mouseover` to dynamically check if the height needs to be limited.
* Tweak - Removed Structured Data. See [this comment](https://github.com/woocommerce/storefront/issues/620#issuecomment-313629032).
* Fix - Header cart dropdown padding.
* Fix - Updated demo store notice `z-index` value to `9999` to prevent conflicts with other elements. Kudos [@iamdharmesh](https://github.com/iamdharmesh).
* Tweak - Replace WooThemes with WooCommerce.
= 2.2.4 - 2017-06-27 =
* Fix - Notice styling in the payment section of the checkout.
* Fix - Fix several typos in the theme description and customizer controls.
* Fix - Remove `:hover` and `:active` states on `.screen-reader-text`.
* Fix - Hide logo section from structured data if there's no image.
* Dev - New hook after body tag: `storefront_before_site`.
* Fix - Fix modular scale negative values not being compiled correctly.
* Tweak - Open documentation links in a new window.
* Fix - Translatable labels in the 404 template.
* Fix - Localize all aria labels.
* Dev - Remove `wp_kses_post()` from shortcodes output.
* Fix - Amend support link in admin header to link to the WordPress.org support forum.
= 2.2.3 - 2017-05-24 =
* Fix - Further improvements to prevent widgets from clearing after the update from 2.1.x.
= 2.2.2 - 2017-05-23 =
* Fix - Prevent starter content widgets, nav menus and pages from being added to existing sites unwontedly.
* Fix - Only set pages full width if fresh site.
= 2.2.1 - 2017-05-22 =
* Fix - Compatibility with PHP versions lower than 5.5.
= 2.2.0 - 2017-05-22 =
* Feature - Adding a featured image to the homepage template will now create a 'hero' component.
* Feature - Improved new user experience; WooCommerce installation prompted and added starter content to set up the homepage template, menus, widgets and add some demo products.
* Feature - Guided tour in the Customizer.
* Fix - Remove unnecessary button styling in WooCommerce Quick View extension.
* Fix - Only make the order review on checkout sticky of the address column is tall enough to make it worthwhile.
* Tweak - Improved the Bookings calendar styles.
* Tweak - :focus borders now dotted.
* Tweak - Default header background color is now white and header text color defaults updated accordingly.
* Tweak - Various typographical adjustments to match updated header design.
* Dev - Added actions; `storefront_jetpack_infinite_scroll_before`, `storefront_jetpack_infinite_scroll_after`, `storefront_jetpack_product_infinite_scroll_before` and `storefront_jetpack_product_infinite_scroll_after`.
* Dev - Added filters; `storefront_footer_widget_rows` and `storefront_footer_widget_columns` to easily control the number of widget rows / columns in the footer.
* Dev - FontAwesome and icon styles are now enqueued separately to make removing FontAwesome trivial.
* Dev - Updated FontAwesome to 4.7.0
* Dev - Upsells columns filterable via `storefront_upsells_columns`.
* Dev - Added a column wrapper to product loops. To adjust the layout you now only need to filter `storefront_loop_columns`.
* Dev - Homepage product sections only display if products are returned.
* Tweak - Escape background content color before output. Kudos [@pdewouters](https://github.com/pdewouters).
* Dev - Updated package versions. You'll need to `npm install` next time you try to build.
* Dev - Adds `grunt-postcss` + `autoprefixer` to the build process to reduce reliance on [Bourbon](https://www.bourbon.io/).
* Tweak - Doctype in lowercase. Kudos [@B-07](https://github.com/B-07).
* Fix - Only output `background-image` styles for the header and homepage content sections if an image exists.
* Fix - Translatable aria labels in the homepage sections. Kudos [@andreaskian](https://github.com/andreaskian).
= 2.1.8 - 2017-02-17 =
* Tweak - [WooCommerce 2.7] - Declare support for the new gallery.
= 2.1.7 - 2017-01-17 =
* Tweak - [WooCommerce 2.7] - Ensure all checkboxes function correctly with new markup.
* Tweak - [WooCommerce 2.7] - Order item meta styling.
* Tweak - [WooCommerce 2.7] - Don't display the stock icon when `.stock` is empty.
* Fix - Cross-sells layout
= 2.1.6 - 2016-11-15 =
* Fix - Close dropdowns in the nav when you tap away on touch devices.
* Fix - Ensure the header cart dropdown works properly on touch devices.
* Fix - 404 layout.
* Fix - Javascript error when `.site-header-cart` isn't present in the DOM.
* Fix - Consistent spacing in site title.
* Dev - Refactored `storefront_get_content_background_color()` to account for and give priority (over Storefront Designer) to Storefront Powerpack.
* Dev - Deprecated `is_woocommerce_activated()` and made it pluggable.
* Dev - Added `storefront_is_woocommerce_activated()`.
= 2.1.5 - 2016-10-24 =
* Tweak - Jetpack infinite scroll now works on product archives as well as posts.
* Tweak - Add styles for WooCommerce 2.7's new gallery.
* Tweak - Style the 'dismiss' link in WooCommerce 2.7's 'demo notice' feature.
= 2.1.4 - 2016-10-11 =
* Fix - Product/category title size in loops (WooCommerce 2.7 compatibility).
* Fix - Star rating selector when WooCommerce lightbox is disabled.
* Fix - Dropdowns can now be closed on iOS.
* Fix - PHP 5.2 compatibility.
* Tweak - Structured data sanitization and other minor adjustments.
* Tweak - Header cart dropdown now only scrolls if it renders beyond the current window height.
* Tweak - Star rating selector styling.
* Tweak - Widget region order. Addresses the issue of widgets being added to an unexpected region on default installs.
* Dev - `storefront_post_thumbnail()` is now hooked in to `storefront_post_content_before`.
* Dev - Added `storefront_post_content_before` and `storefront_post_content_after` actions.
* Dev - `storefront_post_thumbnail()` now provides a default size.
* Dev - Updated FontAwesome to 4.6.3.
= 2.1.3 - 2016-09-26 =
* Fix - Dropdowns in the main navigation when tabbing through links.
* Fix - Hide empty labels when using the Advanced Product Labels extension.
* Tweak - Updated MasterCard logo. Kudos [@nishitlangaliya](https://github.com/nishitlangaliya).
= 2.1.2 - 2016-09-08 =
* Fix - Fatal errors in the Customizer when using older versions of WordPress.
* Tweak - blockUI styling on checkout.
* Dev - Tweaked how Customizer defaults are set so that checkboxes will work.
= 2.1.1 - 2016-09-02 =
* Fix - Changed some customizer settings transport from postMessage to refresh for live preview of changes.
* Fix - Secondary navigation dropdown styling.
* Dev - Restructured the way objects are initiated. Objects are now initiated into an accessible global $storefront for access to hooks. Kudos [@jtsternberg](https://github.com/jtsternberg).
= 2.1.0 - 2016-08-24 =
* Feature - Lots of SEO enhancements. Kudos [@opportus](https://github.com/opportus).
* Feature - Selective refresh on site title, tag line, logo and widgets.
* Feature - Integration with [Advanced Product Labels](https://woocommerce.com/products/woocommerce-advanced-product-labels/) extension.
* Feature - Integration with [WooCommerce Mix and Match](https://woocommerce.com/products/woocommerce-mix-and-match-products/) extension.
* Feature - Integration with [WooCommerce Quick View](https://woocommerce.com/products/woocommerce-quick-view/) extension.
* Fix - Product thumbnail size on cart page.
* Fix - Sticky order review position on RTL stores. Kudos [@farookibrahim](https://github.com/farookibrahim)
* Dev - Restructured scss; removed components/typography and added main styles to `assets/sass/base/_base.scss`. Layout styles then added to `assets/sass/base/_layout.scss`. Moved WooCommerce extension integration styles to `assets/sass/woocommerce/extensions/`.
= 2.0.7 - 2016-07-26 =
* Fix - Compatibility with PHP 5.2.
* Fix - Further structured data sanitization.
* Dev - Added .editorconfig.
= 2.0.6 - 2016-07-22 =
* Fix - Added missing laser card icon.
* Fix - Additional menu displayed on handheld when a menu isn't assigned to the 'primary' location.
* Fix - Structured data sanitization.
* Fix - Photography extension layout on handheld devices.
* Tweak - Product Bundles integration tweaks.
* Tweak - Updated all docs links to point to docs.woocommerce.com.
* Dev - Made `storefront_primary_navigation_wrapper()` and `storefront_primary_navigation_wrapper_close()` pluggable.
= 2.0.5 - 2016-07-05 =
* Fix - Saved payment method styling.
* Fix - Card expiry date layout in checkout.
* Fix - Product loop links in widgets are no longer underlined.
* Tweak - Secondary nav wrapper no longer present is no menu is assigned. Kudos [@titanic-fanatic](https://github.com/titanic-fanatic).
= 2.0.4 - 2016-06-14 =
* Fix - Credit card input label styling.
* Fix - `$content_width` declaration.
* Fix - Mobile menu when using an empty menu in the primary menu location.
* Tweak - Minor style fixes / improvements for various WooCommerce extensions.
* Tweak - Account / Cart links in the handheld nav bar will only appear if the pages are set in WooCommerce.
* Tweak - Footer padding on handheld devices.
* Tweak - `pre` background color to ensure legibility when displayed in messages.
* Dev - Deprecate `storefront_html_tag_schema()`.
= 2.0.3 - 2016-06-02 =
* Fix - Fatal error when using Storefront without WooCommerce.
= 2.0.2 - 2016-06-01 =
* Fix - Correct CSS property applied to the header if no background image is present.
* Fix - Sticky order review + Checkout Add-ons compatibility.
* Fix - Active link color when using the Custom Menu widget in the sidebar.
* Fix - Store notice no longer hidden by the handheld nav bar.
* Fix - Some errors in structured data. Kudos [@opportus](https://github.com/opportus).
* Dev - Added `storefront_sticky_order_review` filter.
* Dev - Added `storefront_structured_data` filter for structured data customisation.
= 2.0.1 - 2016-05-12 =
* Fix - Horizontal scroll bar on Safari.
* Fix - Ensure the menu toggle background color updates correctly in the preview.
* Fix - Positioning of cart icon in header cart link.
* Fix - Missing Customizer settings after updating to 2.0.0.
* Tweak - Blog pagination hover effect.
* Tweak - Apply the 'alt' button style to the checkout button in the cart widget.
* Dev - Apply Customizer setting defaults on `customize_register` to account for child themes filtering `storefront_setting_default_values`.
* Dev - Fix typo in the `storefront_homepage_after_best_selling_products` action name.
= 2.0.0 - 2016-05-06 =
* Feature - Extensive improvements to the responsive design.
* Feature - Design refresh including full typography revamp.
* Feature - Refactored all underlying code and re-organised / minified assets.
* Feature - Added 'Best Sellers' product section to the Homepage.
* Feature - oEmbed styling to match Storefront aesthetic.
* Feature - The welcome screen now dynamically pulls in new products.
* Feature - Added `storefront_header_styles()` for the header image/styles along with the `storefront_header_styles` filter to customise the treatment of header styles.
* Feature - Support for the Custom Logo theme feature (requires WordPress 4.5).
* Feature - Styled 'Average Rating' widget.
* Feature - Styled WooCommerce 2.6 tabbed account section.
* Tweak - All template functions are now pluggable.
* Tweak - The 'menu' button is now styled automatically based on header settings in the Customizer.
* Tweak - Customizer settings are now all assigned to a single theme mod on theme switch and Customizer save to improve performance.
* Tweak - Humanised homepage product section titles.
* Tweak - Redesigned blog post meta section.
* Tweak - Comments / Reviews design.
* Fix - Inadequate left/right content margin at certain screen sizes.
* Fix - z-index on demo store notice.
* Fix - Checkout add-ons integration.
* Fix - Display of portrait logos on handheld devices.
* Dev - Deprecated `storefront_categorized_blog()`.
* Dev - Deprecated `storefront_sanitize_hex_color()`.
* Dev - Deprecated `storefront_sanitize_layout()`.
= 1.6.1 - 2016-01-18 =
* Tweak - Jetpack integration updates.
* Tweak - Styling for WooCommerce 2.5's terms positioning on the checkout.
* Tweak - Styling for WooCommerce 2.5's totals inc tax on the cart.
* Tweak - Removed the bottom border on the cart / checkout pages.
* Tweak - Renamed 'Header' widget region to 'Below Header'.
* Fix - WooCommerce active filters widget now styled.
* Fix - Image gallery layouts.
* Fix - Sticky order review feature now accounts for any size of payment box to avoid cutting off the Place Order button.
= 1.6.0 - 2016-01-05 =
* Feature - [Storefront Mega Menus](https://woocommerce.com/products/storefront-mega-menus/) integration.
* Feature - Integration with [Ship to Multiple Addresses](https://woocommerce.com/products/shipping-multiple-addresses/) extension.
* Feature - Sticky order review on checkout.
* Feature - Automatic credit card type detection in compatible payment gateways.
* Tweak - Styled the in stock/out of stock message. Props @nishitlangaliya.
* Tweak - Added new function `storefront_star_rating_script`. Outputs JavaScript for the new star rating input while we wait for WooCommerce 2.5 to be released.
* Tweak - Contrast on hovered links in the primary navigation.
* Tweak - If no widgets are present in the sidebar a full width layout will be applied to all pages.
* Tweak - Updated integration with the Variation Swatches extension.
* Tweak - Featured images on posts / pages are now centered.
* Fix - Table alignment on desktop.
* Dev - Added some new hooks to the homepage template tags; `storefront_homepage_after_product_categories_title`, `storefront_homepage_after_recent_products_title`, `storefront_homepage_after_featured_products_title`, `storefront_homepage_after_popular_products_title`, `storefront_homepage_after_on_sale_products_title`
* Dev - Styling for 6 column product layouts.
* Dev - Updates FontAwesome to version 4.5.0.
= 1.5.3 - 2015-11-13 =
* Fix - Storefront will now automatically load a child themes stylesheet.
* Fix - CSS Syntax error in Customizer output.
* Tweak - WooCommerce responsive table styles.
= 1.5.2 - 2015-10-30 =
* Fix - Duplicate menu display when not using a handheld menu and switching between desktop/handheld orientations.
* Tweak - Adjusts how CSS is enqueued for child theme compatibility with RTL.
* Tweak - Better display of prices in WooCommerce product widgets.
* Tweak - Improved caption display.
* Tweak - Re-organised welcome screen.
* Tweak - Adjusted Product Bundles integration to include support for the WooCommerce Product Bundles - Tabular Layout extension.
* Tweak - Styled the variation reset link.
* Tweak - Start rating input now more intuitive.
* Tweak - Added styles for WooCommerce password strength meter.
* Tweak - Arrange the login/registration forms on the account page into two columns.
* Tweak - Support for the most recent class applied to the site logo added by Jetpack.
* Dev - `storefront_display_comments` is now hooked into `storefront_single_post_after` with priority 20 (was 10).
* Localization - All translations are now managed on [WordPress.org](https://translate.wordpress.org/projects/wp-themes/storefront)
* Localization - Product names can no longer be translated.
= 1.5.1 - 2015-09-10 =
* Fix - Occasional text wrapping on product sorting dropdown.
* Fix - Double taps no longer required to click buttons in iOS browsers.
* Fix - Fixed the landing page layout in WordPress 4.3+
* Fix - Header cart now compatible with Currency Converter extension.
* Tweak - Embedded objects (videos etc) width will no longer exceed the width of their containing element.
* Tweak - Improved the ligibility of the active swatch when using the Variation Swatches extension.
* Dev - Improved how RTL stylesheets are enqueued.
* Dev - The default layout is now filterable via `storefront_default_layout`.
= 1.5.0 - 2015-08-11 =
* Feature - rtl support.
* Feature - Integration with WooCommerce Deposits.
* Feature - Pages now display featured images above the page title.
* Feature - Revamped 404 page helpfulness to include product search, popular products and product ctegories.
* Feature - Integration with WooCommerce Bundles extension.
* Feature - Scrolling header cart.
* Fix - Welcome screen now only visible to admins.
* Fix - Horizontal scroll bar in Safari at small sizes.
* Fix - Pay for order screen layout when using full width page template on my account.
* Fix - Fixed display of disabled `option`s in Firefox.
* Dev - Added `storefront_sanitize_checkbox()` sanitization function.
* Dev - Added `Storefront_Custom_Radio_Image_Control` class for creating radio image controls in the Customizer.
* Dev - Added `storefront_post_thumbnail()`.
* Dev - Renamed `do_shortcode_func()` to `storefront_do_shortcode()`.
* Dev - Updated Composite Products integration for compatibility with 3.2.
* Dev - Updated normalize.css to 3.0.3.
* Tweak - Menu button spacing on handheld.
* Tweak - Button display in cart widgets.
* Tweak - The 'Configure Menus' button in the welcome screen now points to the Customizer.
= 1.4.6 - 2015-06-10 =
* Fix - `font-family` declaration on `select`s.
* Tweak - Escaping function used on homepage section titles.
* Tweak - Remove all instances of `do_shortcode()` to improve performance.
* Tweak - Reduced link focus outline from 2px to 1px.
* Dev - `$storefront_version` global when using a child theme.
= 1.4.5 - 2015-05-14 =
* Fix - Use the correct escaping function in `storefront_product_categories()`.
* Fix - Pagination when only showing product categories / subcategories on archives.
* Tweak - Logo prompt in Header section in Customizer.
* Tweak - Only output description paragraph in header if one is set.
* Tweak - Updated header image dimension recommendation.
* Tweak - Dismissible notices.
* Tweak - Debug notices in WooCommerce message. Props @WPprodigy.
* Dev - Bump npm susy to 2.2.3.
* Dev - Made `Layout_Picker_Storefront_Control` class pluggable. Props @niravmehta
* Dev - Added order and orderby parameters to homepage featured products template tag.
* Dev - Added before/after hooks inside homepage product sections.
= 1.4.4 - 2015-04-23 =
* Fix - Post author styles applied to incorrect child comments. Props @ibndawood.
* Fix - Third level dropdowns (and beyond) are now revealed in the correct situation.
* Fix - Header margin on homepage template when WooCommerce isn't activated.
* Fix - Dropdowns on touch devices.
* Fix - Pagination hidden correctly when only displaying categories / subcategories.
* Tweak - Output WooCommerce messages on all appropriate pages.
* Tweak - Revamped 'Enhance' section of welcome screen.
* Localization - Translation files are now included.
= 1.4.3 - 2015-04-08 =
* Fix - Star rating display in Safari.
* Tweak - Cart dropdown appears on focus.
* Tweak - Payment form layout/styling when paying from My Account.
* Tweak - Improvements to the product archive sorting / pagination layout and styling.
* Tweak - Layered nav list item styling.
* Tweak - Product meta styling.
* Tweak - Heading and Star Rating size on product loops.
* Dev - Updated node-sass and grunt-sass dependency versions.
= 1.4.2 - 2015-03-24 =
* Fix - Navigation not displaying if no menu is assigned to primary location.
= 1.4.1 - 2015-03-24 =
* Fix - Remove unnecessary `!important` declaration on star rating color.
* Fix - Star rating display in IE11.
* Fix - Site header margin when using shop page as homepage.
* Fix - Navigation on handheld devices when no menu is set.
* Tweak - Layout selector graphics.
* Tweak - Accessibility improvements in post meta.
* Tweak - Products widget styling.
* Tweak - Widget headings are now `h3`s.
* Tweak - Skip links are now a function (`storefront_skip_links()`) hooked into `storefront_header`.
* Tweak - Header widget region markup only displays when widgets are assigned.
* Tweak - `:focus` styles.
* Dev - Replaced `paginate_links()` with `the_posts_pagination()`.
* Dev - Replaced `previous_post_link()` and `next_post_link()` with `the_post_navigation()`.
* Dev - HTML5 widget support.
* Dev - Fixed typo in classname: `storefront-feautred-products` is now `storefront-featured-products`.
* Dev - Updated node-bourbon
* Dev - Replaced instances of `box-sizing` mixin with standard css.
= 1.4.0 - 2015-03-09 =
* Feature - Added a 'Handheld' menu location.
* Feature - Many accessibility improvements.
* Fix - Header margin when WooCommerce isn't activated.
* Fix - Subscription payment form layout.
* Tweak - Pagination now clears content.
* Tweak - Header cart now displays sub total.
* Dev - Removed npm-debug.log.
= 1.3.1 - 2015-02-20 =
* Fix - Header margin when using static page or latest posts for homepage.
* Fix - Related products total / columns.
* Tweak - Product Reviews Pro submission form.
* Tweak - Review form input alignment.
* Tweak - Improved integration with WooCommerce Photography extension.
* Dev - Added `storefront_related_products_args` filter.
= 1.3.0 - 2015-02-10 =
* Feature - Support for WooCommerce 2.3 features like responsive tables.
* Fix - Margin on site title / logo.
* Fix - Tweaked some css selectors in the checkout to improve compatiblity with Amazon Payments Advanced gateway.
* Fix - Layout selector in Firefox.
* Fix - `storefront_menu_toggle_text` filter. Props [jesinwp](https://github.com/jesinwp).
* Tweak - Product Reviews Pro integration.
* Tweak - Select width in WooCommerce forms.
* Tweak - Composite Products integration improvements.
* Tweak - Removed header widget region bottom margin.
* Tweak - Increased size of photos displayed in the WooCommerce Photography extension.
* Tweak - Page / term description width.
* Tweak - Hide 'What is WooCommerce' section on welcome screen when it's already installed.
* Tweak - Widget region order in dashboard.
* Tweak - Add the correct page content hook in the inline docs ( template-homepage.php ).
* Tweak - `mark` styling.
* Dev - Added `storefront_sanitize_choices()`.
* Dev - Tweaked the divider Customizer control to allow text/title.
* Dev - Updated FontAwesome to version 4.3.0.
* Dev - Libsass / node susy for faster compiling. Please do a fresh `npm install` when working with this version.
= 1.2.5 - 2015-01-22 =
* Fix - Review form input alignment.
* Tweak - Widget region order in dashboard.
* Tweak - Post archive pagination is now numbered.
* Tweak - Styling for current post / product category in widgets.
* Tweak - Added an informational section to the Customizer.
* Tweak - Link color in the sidebar.
* Tweak - Padding in the header.
* Tweak - Breadcrumb position.
* Dev - `storefront_header_cart()` is now pluggable.
* Dev - Make use of WordPress 4.1 functions `the_archive_title()` and `the_archive_description()`.
= 1.2.4 - 2015-01-15 =
* Fix - First level threaded comment layout.
* Tweak - Improved font size on handheld devices.
* Tweak - Wishlist table design.
* Dev - Reorganised sass files.
* Dev - Added some handy class names to homepage product sections.
* Dev - Added `storefront_menu_toggle_text` filter.
* Dev - Updated how WooCommerce styles are dequeued.
= 1.2.3 - 2015-01-07 =
* Fix - Button border in WooCommerce messages when using the Storefront Designer extension.
* Tweak - Stock icon.
* Dev - Grid system now powered by Susy.
= 1.2.2 - 2015-01-05 =
* Fix - Hidden publish date on single post.
* Fix - Order details color.
* Tweak - Header widget z-index for when used with Parallax Hero.
* Tweak - Nested `ul`s in widgets.
* Tweak - Product category widget styling.
* Tweak - Make use of WordPress 4.1's `title-tag` theme feature. (Requires WordPress 4.1).
* Tweak - Welcome screen tweaks for WordPress 4.1.
* Tweak - Slightly reduced button/input size.
* Dev - Made `storefront_product_search()` pluggable.
= 1.2.1 - 2014-12-09 =
* Fix - Blog post category and tag link output.
* Fix - Cart link in handheld orientation.
* Tweak - Improved payment form display when using a dark background colour.
* Tweak - Blog author rich snippet.
* Dev - Added `storefront_single_post_posted_on_html` filter.
* Dev - Replaced reset.css with normalize.css.
= 1.2.0 - 2014-12-02 =
* Feature - Integration with Product Reviews Pro extension.
* Feature - Integration with Smart Coupons extension.
* Fix - Layout picker images when using a child theme.
* Fix - Header link color now properly applied to site title.
* Fix - Included styling for `.form-row-wide`.
* Dev - Added `storefront_copyright_text` filter.
* Dev - Tweaked how Storefront determines whether Customizer logic should be loaded.
* Dev - Added `storefront_after_footer` action.
* Dev - Customizer CSS now correctly appended to appropriate stylesheets.
* Tweak - Improved star rating input display for handheld devices.
* Tweak - Several minor code optimisations (thanks https://scrutinizer-ci.com).
= 1.1.1 - 2014-11-24 =
* Fix - Title tag now displays correctly.
* Localization - Tweaked how translation files are loaded.
= 1.1.0 - 2014-11-21 =
* Feature - Integration with AJAX Layered Navigation extension.
* Feature - Integration with Variation Swatches and Photos extension.
* Feature - Integration with Composite Products extension.
* Feature - Integration with WooCommerce Photography extension.
* Feature - Integration with Jetpacks `site-logo` feature.
* Tweak - Create account checkbox styling at checkout.
* Tweak - Added support for WordPress 4.1s `title-tag` theme feature.
* Tweak - Softened default text color slightly.
* Tweak - Styling for valid/invalid inputs.
* Tweak - Price filter slider styling.
* Tweak - Default settings for display options.
* Tweak - Added custom layout picker control.
* Tweak - Removed unused animation styles.
* Tweak - Default customizer settings added.
= 1.0.3 - 2014-10-15 =
* Fix - Comment date link color.
* Fix - Comment reply link color.
* Tweak - Sanitize layout setting.
* Tweak - No redirect to welcome screen on activation.
= 1.0.2 - 2014-10-12 =
* Fix - Upsell display on cart when using full width template.
* Fix - Smiley display.
* Fix - Date font size in post meta.
* Fix - Remove the breadcrumb separator to resolve markup errors.
* Fix - Returning to the welcome screen from the Customizer.
* Tweak - Clearfixed product galleries.
* Tweak - Adjusted the add to cart form design on product details pages.
* Tweak - Set a default border color on buttons for extensions to utilise.
* Tweak - Adjusted the max-height of images in the payment method list items.
* Tweak - Secondary navigation alignment in header.
* Tweak - Sale marker display is more universally friendly and customisable.
* Tweak - Moved the header controls in to the header image section.
* Tweak - Removed header widget border.
* Tweak - `.site-main` margin.
* Dev - Added `storefront_product_thumbnail_columns` filter.
* Dev - Added `Gruntfile.js` and `package.json`.
= 1.0.1 - 2014-09-14 =
* Tweak - Improved vertical spacing in the site header on mobile sized devices.
* Tweak - Updated some links & content in the welcome screen.
* Tweak - Improved comment/review respond form layout.
* Fix - Header text color live preview in cart dropdown.
= 1.0.0 - 2014-09-05 =
* Initial release