-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2070 lines (1685 loc) · 107 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
*** Canvas Changelog ***
2017.07.13 - version 5.11.6
* Fix - Fixes navigation search not working if WooCommerce disabled.
includes/theme-actions.php
2017.07.05 - version 5.11.5
* Fix - Fixes the Wooslider lightbox conflict with lazy loading
includes/integrations/wooslider/wooslider.php,
2017.04.05 - version 5.11.4
* Fix - Fixes the WooCommerce 3.0.0 compatibility for the new product gallery.
style.css,
rtl.css,
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Fixes problem with using WC shortcodes inside Canvas shortcodes.
style.css
* Tweak - Adds Sensei Module styles to Canvas that were being overriden.
includes/integrations/sensei/template.php,
includes/integrations/sensei/css/sensei.css
2016.10.21 - version 5.11.3
* Fix - Fixes the homepage business slider widget styling for Flexslider nav when use Woo Component.
style.css
* Fix - Fixes conflict with events calendar plugin.
content-page.php
2016.08.25 - version 5.11.2
* Fix - Fixes the compatibility of the Customizer's "Custom Header" and the Layouts setting.
includes/theme-actions.php
* Fix - removes deprecated Google Maps API params, fixes console errors.
* Fix - IE fieldset styles
* Fix - fixes unitialized string warning for Magazine Slider.
2016.08.12 - version 5.11.1
* Fix - Google Maps API key fix.
includes/theme-actions.php,
includes/theme-js.php,
includes/theme-options.php
* Fix - WooCommerce Cart dropdown styling.
includes/integrations/woocommerce/css/woocommerce.css
2016.08.04 - version 5.11.0
* Fix - PHP 7 compatibility fixes
includes/tumblog/theme-custom-post-types.php,
includes/tumblog/wootumblog_postformat.class.php
* Fix - fixes string offset notice for Magazine Slider on homepage
includes/theme-actions.php
* Update - updates logic for layouts using a static page as the "Blog" page
includes/theme-actions.php
2016.07.01 - version 5.10.1
* Fix - Removes WooThemes metaboxes from WC Bookings Extension post type admin interfaces.
includes/integrations/woocommerce/functions.php
* Fix - Fixes WooSlider empty variable value.
includes/integrations/wooslider/wooslider.php
* Fix - Replaces deprecated functions.
includes/theme-shortcodes.php,
includes/woo-hoooks/screens/admin.php,
includes/woo-layout/screens/admin.php,
includes/woo-meta/screens/admin.php
2016.05.05 - version 5.10.0
* New - Adds support for new WooCommerce tabbed My Account page.
includes/integrations/woocommerce/css/woocommerce.css
includes/integrations/woocommerce/css/woocommerce.scss
* Fix - Increase width of side nav when cart total is displayed, to allow for larger numbers.
css/partials/_navigation.scss
* Fix - FlexSlider to v2.6.1.
includes/js/jquery.flexslider.js
includes/js/jquery.flexslider.min.js
* Fix - duplicate display:none; markup in slider styles attribute.
includes/theme-actions.php
2016.04.29 - version 5.9.22
* Fix - Removes custom function for related products output in WooCommerce.
includes/integrations/woocommerce/setup.php,
includes/integrations/woocommerce/template.php
2016.04.28 - version 5.9.21
* Fix - Fixes typo in options page.
theme-options.php
* Fix - Fixes WC quantity increment on single product page when ordering more than 9 items.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Update FlexSlider to v2.6.0.
includes/js/jquery.flexslider.js
includes/js/jquery.flexslider.min.js
* Fix - Fixes post_where filter interferring with other queries outside of the Woo Tabs widget "popular" tab
includes/widgets/widget-woo-tabs.php
* Update - Updates the font awesome library to the latest version.
css/vendor/fontawesome/*,
includes/fonts/FontAwesome.otf,
includes/fonts/fontawesome-webfont.eot,
includes/fonts/fontawesome-webfont.svg,
includes/fonts/fontawesome-webfont.ttf,
includes/fonts/fontawesome-webfont.woff,
includes/fonts/fontawesome-webfont.woff2,
style.css
2016.04.15 - version 5.9.20
* Fix - Fixes email copy From header.
template-contact.php
2016.03.08 - version 5.9.19
* Fix - fixes woo hooks issue where post hooks would output on pages.
content-page.php
2016.02.26 - version 5.9.18
* Fix - fixes WPML compatibility in slider
includes/theme-actions.php
* Fix - adds margin to all paragraphs
style.css
2016.02.04 - version 5.9.17
* Fix - fixes comments pagination on single post pages.
comments.php
* Fix - removes Jetpack Sharedaddy icons from erroneously outputting on the Magazine page template.
content-magazine-grid.php
2016.01.15 - version 5.9.16
* Tweak - Adds the woo_logo_img filter.
includes/theme-actions.php
* Fix - removes woo_image() function call from tabs widget in favor of native WP function calls. Also fixes wordpress.com VIP usage.
includes/widgets/widget-woo-tabs.php
2015.12.14 - version 5.9.15
* Fix - Fixes the WooCommerce placeholder display.
includes/integrations/woocommerce/template.php
* Fix - fixes security issue for anonymous functions.
includes/woo-meta/classes/woo-meta.class.php
2015.11.20 - version 5.9.14
* Fix - Fix comment display.
comments.php
* Tweak - Additional styling for new elements in Sensei 1.9
includes/integrations/sensei/css/sensei.css
2015.11.02 - version 5.9.13
* Tweak - Optimizes the woothemes.png file using grunt-contrib-imagemin.
images/woothemes.png
2015.09.29 - version 5.9.12
* Fix - Fixes undefined PHP notice.
includes/integrations/sensei/template.php
* Fix - Updates broken link in the Subscribe & Connect section.
includes/theme-options.php
2015.08.24 - version 5.9.11
* Fix - Fixes the shortcodes display in the Business slider.
includes/theme-actions.php
* Fix - Fixes email validation issue.
template-contact.php
* Fix - Ensures all widgets use an updated PHP5-style class constructor.
includes/widgets/
2015.07.27 - version 5.9.10
* Fix - Replaces get_cart_total() with get_cart_subtotal().
includes/integrations/woocommerce/template.php
* Fix - Fixes PHP notices on the contact template.
template-contact.php
2015.07.09 - version 5.9.9
* Fix - Removes deprecated constructor call for WP_Widget
includes/widgets/widget-woo-adspace.php,
includes/widgets/widget-woo-blogauthor.php,
includes/widgets/widget-woo-component.php,
includes/widgets/widget-woo-embed.php,
includes/widgets/widget-woo-flickr.php,
includes/widgets/widget-woo-subscribe.php,
includes/widgets/widget-woo-tabs.php
2015.07.01 - version 5.9.8
* Fix - Fixed unordered list styling inside of an ordered list.
style.css
2015.06.22 - version 5.9.7
* Fix - Change DoubleTapToGo to target only desktop layouts on Android.
includes/js/general.js
2015.06.08 - version 5.9.6
* Tweak - PrettyPhoto 3.1.6 security fix.
includes/js/jquery.prettyPhoto.js
2015.05.11 - version 5.9.5
* Tweak - Removed negative margin from #post-entries as it was causing a few issues with some plugins.
style.css
2015.04.27 - version 5.9.4
* Fix - Changed text domain from "canvas" to "woothemes".
includes/integrations/woocommerce/template.php
* Fix - Changed feedburner links to https.
includes/theme-functions.php
* Tweak - Updated FlexSlider to 2.4.0.
includes/js/jquery.flexslider.js,
includes/js/jquery.flexslider.min.js
* Fix - Fixed issue with business slider height causing whitespace on mobile.
style.css
* Fix - Fixes content transition in IE11.
style.css
2015.03.17 - version 5.9.3
* Fix - Fixes small issue with the WooCommerce header cart.
includes/integrations/woocommerce/functions.php,
includes/integrations/woocommerce/template.php,
includes/integrations/woocommerce/setup.php
2015.03.09 - version 5.9.2
* Fix - Fixes Sensei styling on register button
includes/integrations/sensei/css/sensei.css
* Tweak - Add the current theme version to the main stylesheet.
includes/theme-actions.php
* New - New POT file.
lang/canvas.pot
* Tweak - Update footer link alt and title attributes
includes/theme-shortcodes.php
* Fix - Fixes slide out menus on mobile devices.
style.css
2015.02.10 - version 5.9.1
* Fix - Button styles from Settings now correctly apply to shortcode buttons and buttons in the Header/Footer
includes/theme-actions.php
* Fix - Adds max-height to images in the payment methods list
includes/integrations/woocommerce/css/woocommerce.css
* Fix - No longer hide the browser native spinner for compatibility with WooCommerce 2.3
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Styles remove button in cart widget.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Styles "Proceed to Checkout" button for WooCommerce 2.3
includes/integrations/woocommerce/css/woocommerce.css
2014.12.18 - version 5.9.0
* Tweak - Hides built in Portfolio if no Portfolio items exist. Download the Projects by WooThemes plugin.
includes/theme-actions.php,
includes/theme-options.php
* Fix - Fixes small display issue with WooCommerce single product thumbnails.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Fixes issue with CSS output of system fonts.
/includes/theme-actions.php
* Fix - Minor adjustments to RTL display.
rtl.css
* Fix - Prevents button color settings from being applied to general buttons in the content of a post.
includes/theme-actions.php
* Fix - Prevent dropdown menus from overflowing the content area.
style.css
* Fix - The header cart count doesn't dynamically update
includes/integrations/woocommerce/setup.php
* Fix - Adds secondary sidebar support to the Sensei pages.
includes/integrations/sensei/template.php
* Tweak - Small change to the custom styling output to make the code more readable.
includes/theme-actions.php
* New - Projects section in the Theme Options panel with an option for an alternative Projects layout similar to the old Portfolio.
includes/integrations/projects/css/projects.css,
includes/integrations/projects/css/projects.scss,
includes/integrations/projects/functions.php,
includes/integrations/projects/setup.php,
includes/integrations/projects/template.php,
includes/theme-actions.php,
includes/theme-options.php
2014.12.01 - version 5.8.7
* Fix - Fixes output of custom styling from the options panel.
includes/theme-actions.php
2014.11.28 - version 5.8.6
* Fix - Deprecated filter for cart fragments
includes/integrations/woocommerce/setup.php
* Fix - Fixes display issue with bulleted/numbered lists next to images.
style.css
* Fix - Fixes inappropriate method of using jQuery
includes/js/portfolio.js,
includes/js/portfolio.min.js
* Fix - Fixes undefined index PHP notice.
includes/theme-actions.php
2014.10.14 - version 5.8.5
* Fix - Removes primary sidebar from infinite scroll configuration.
includes/integrations/jetpack/jetpack.php
* Fix - Fixes issue with the correct layout not being applied on some page templates.
sidebar.php
2014.09.23 - version 5.8.4
* Fix - Fixes responsive layout for footer widgets for tablet breakpoint.
style.css
* Fix - Fixes content overflow issue for really long shortcode buttons.
style.css
* Fix - Fixes PHP notice for breadcrumbs and lightbox in WooCommerce
includes/integrations/woocommerce/template.php
* Fix - Fixes PHP notice in Theme Options panel.
includes/theme-options.php
* Fix - Fixes issue in the Porfolio template where images were not being displayed.
content-page-template-business.php,
theme-actions.php,
theme-functions.php
* Fix - Fixes sidebar overflow on smaller screens.
style.css
2014.08.11 - version 5.8.3
* Fix - Removes duplicated Widgets options.
includes/theme-options.php
* Fix - Fixes missing icon on the Layered Nav widget.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Fixes Site Wide Store Notice overlay on Top Navigation and Mobile Navigation
includes/integrations/woocommerce/css/woocommerce.css
* Tweak - Better integration for WooCommerce image sizes
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Add support for both content and excerpt as the business slide content.
includes/theme-actions.php
* Fix - Bolds all Sensei question types.
includes/integrations/sensei/css/sensei.css
* Fix - Cart overflow on tablets.
style.css
* Fix - Fixes PHP notice when using magazine template as homepage.
includes/theme-actions.php
* Fix - Fixes issue with the correct layout not being applied on some page templates.
includes/theme-actions.php
2014.07.31 - version 5.8.2
* Fix - Fixes issue with the correct layout not being applied on some page templates.
sidebar.php,
sidebar-alt.php
* Fix - Removes bullet points from WooCommerce Tabs.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Fixes small display issue with Navigation Hover Color in Safari and Chrome.
includes/theme-actions.php
* Fix - WooCommerce Search Widget Button now affected by Button Color in Settings.
includes/theme-actions.php
* Fix - Changed direction of Search and Cart dropdowns so they don't get cut off on smaller screens.
style.css
* Tweak - "General Styling" in Theme Options split into multiple sub sections.
theme-options.php
* Fix - Fixes shortcode button border not working
style.css
* Fix - Fixes issue with third level submenus on the Top Menu.
style.css
* Fix - Fixes PHP notice.
includes/theme-functions.php
* Fix - Fixes Magazine Post title typography not being applied correctly.
includes/theme-actions.php
* Fix - Shortcodes on Business Slider excerpts now work again.
includes/theme-actions.php
* Fix - Updates FontAwesome to version 4.1.
includes/fonts/fontawesome-webfont.eot,
includes/fonts/fontawesome-webfont.svg,
includes/fonts/fontawesome-webfont.ttf,
includes/fonts/fontawesome-webfont.woff,
includes/fonts/FontAwesome.otf,
* Fix - Updates responsive breakpoint that gets output by Layout Settigs.
includes/woo-layout/classes/woo-layout.class.php
2014.07.03 - version 5.8.1
* Fix - Fixes info boxes shortcode no icon option.
style.css
* Tweak - Adds another section to the Hooks Manager specific so user can target pages independently of posts.
includes/woo-hooks/classes/woo-hooks.class.php
* Tweak - Adds breacrumbs to Project pages.
includes/integrations/projects/template.php,
includes/integrations/projects/setup.php
* Fix - Fixes navigation alignment bug in Safari.
style.css
* Fix - Fixes several options in the new WooFramework version.
includes/gallery.php,
includes/integrations/projects/template.php,
includes/theme-actions.php,
includes/theme-functions.php,
sidebar-alt.php,
sidebar.php
2014.06.24 - version 5.8.0
* Tweak - Remove PHP notices by adding global $woo_options variable.
content-404.php
* Tweak - Removed custom Woo Search widget in favor of the default WordPress search widget.
includes/theme-widgets.php,
searchform.php
* Tweak - Minor updates to the WooCommerce styling.
includes/integrations/woocommerce/css/woocommerce.css
* New - Tablet reponsive breakpoint.
includes/integrations/woocommerce/functions.php,
includes/integrations/woocommerce/setup.php,
includes/integrations/woocommerce/template.php,
includes/theme-actions.php,
style.css
* Tweak - Moved menu and content width declaration into woothemes_setup() function.
includes/theme-actions.php,
includes/theme-functions.php
* New - Added support for Custom Background in the WordPress Customize page.
includes/theme-actions.php,
includes/theme-functions.php
includes/theme-options.php,
includes/theme-js.php,
includes/js/theme-customizer.js
* New - Added support for Custom Header in the WordPress Customize page.
includes/theme-actions.php
* New - Added minified version of all JavaScript files.
includes/theme-js.php,
includes/theme-functions.php,
includes/js/*.min.js
* New - Updates custom post type icons in WordPress 3.9
includes/theme-functions.php
* Fix - Fixes mobile menu icon.
style.css
* Fix - Fixes issue with wrong caption being displayed on Portfolio images.
includes/gallery.php,
single-portfolio.php
* Fix - Improved RTL styling in the slider.
rtl.css
* New - Improved Gravity Forms styling.
includes/integrations/gravity-forms/*,
includes/theme-plugin-integrations.php,
style.css
* Fix - Adds spacing between widgets in the Widgets template and Homepage widgetized area.
includes/sidebar-init.php
* New - Adds support for Jetpack Infinite Scroll.
includes/integrations/jetpack/*,
includes/theme-plugin-integrations.php,
* Fix - Improves styling of header cart and search dropdown.
includes/theme-actions.php
style.css
* Fix - Fixes php error on Sensei course category archives.
includes/integrations/sensei/template.php
* Fix - Ensure Sensei pages respect the breadcrumb display settings.
includes/integrations/sensei/setup.php,
includes/integrations/sensei/template.php
* Fix - Fixes shortcode toggle overflowing in the Fixed and Boxed layouts.
style.css
2014.05.21 - version 5.7.1
* Fix - Fixed bug that was preventing custom shortcode icons from displaying.
style.css
* Fix - Remove the second occurance of the 'woo_loop_after' hook.
loop-magazine.php
* Tweak - Adjusted mobile display of Contact Form
style.css
* Fix - Fixes a styling issue in the Layout Manager when using WooFramework 6.0.0
includes/woo-layout/assets/css/interface.css
* Fix - Fixes various styling issues in the Full Width layout.
includes/theme-actions.php,
style.css
* Fix - Fixes Quantity input in Firefox.
includes/integrations/woocommerce/css/woocommerce.css
* Fix - Strict standards error in in the comments section.
comments.php
* Fix - Adds support for WooFramework 6.0.0 header tabs.
includes/woo-hooks/classes/woo-hooks.class.php,
includes/woo-layout/classes/woo-layout.class.php,
includes/woo-meta/classes/woo-meta.class.php
* Fix - Fixes bug that prevented the desktop layout from loading in the Portfolio section.
style.css
* Fix - Updates stylesheet enqueue with the correct version number.
includes/theme-actions.php
2014.05.01 - version 5.7.0
* Fix - Hide comments from private posts in the "Comments" tab.
includes/widgets/widget-woo-tabs.php
* Tweak - When search scope is set to "Products", the WooCommerce search widget is used.
includes/theme-actions.php,
includes/theme-functions.php,
includes/theme-woocommerce.php,
search-form.php,
style.css
* Fix - Respect more tag in Magazine featured posts.
content-magazine-featured.php
* Tweak - Converted Less into Sass
css/partials/*,
css/modules/*,
css/vendor/*
* Tweak - Removed layout.css and moved desktop styles into style.css.
style.css,
includes/theme-actions.php
* Tweak - Changed namespace of FontAwesome icons.
includes/theme-actions.php,
includes/theme-functions.php,
includes/theme-shortcodes.php,
search-form.php
* Fix - Make sure the Slider JavaScript is only loaded where needed.
includes/theme-js.php
* Tweak - Added deprecated notice to Portfolio section in the Theme Options panel.
includes/theme-options.php
* Tweak - Moves WooCommerce into plugin integrations folder.
css/woocommerce.css (deleted),
includes/theme-woocommerce.php (deleted),
includes/integrations/woocommerce/*,
includes/theme-plugin-integrations.php,
functions.php
* Fix - Disable Map Scroll option for Contact Page now works.
includes/theme-functions.php
* Tweak - Adds styling for testimonials on single project pages.
includes/integrations/projects/css/projects.css
includes/integrations/projects/setup.php
* Fix - Fixed auto height in WooSlider.
includes/integrations/wooslider/css/business.css
includes/integrations/wooslider/css/magazine.css
* Fix - Fixed issue with excerpt preventing the image link from working in WooSlider.
includes/integrations/wooslider/css/magazine.css
* Fix - Fixed bug where Primary Navigation bottom margin did not take effect when full width was enabled.
includes/theme-actions.php
style.css
* Tweak - Added proper Features by WooThemes integration.
style.css
includes/theme-plugin-integrations.php
includes/integrations/features/*
* Fix - Fixes styling on the remove button in the WooCommerce cart page.
includes/integrations/woocommerce/css/woocommerce.css
* New - Archives by WooThemes integration.
includes/integrations/archives/*,
includes/theme-plugin-integrations.php
* New - Subscribe and Connect by WooThemes integration.
includes/integrations/subscribe-and-connect/*,
includes/theme-plugin-integrations.php
* New - Sensei integration.
includes/integrations/sensei/*,
includes/theme-plugin-integrations.php
2014.04.25 - version 5.6.4
* Fix - Further improvements to slider logic.
includes/theme-actions.php
* Fix - Added word-wrap:break-word to titles, content and comments.
style.css
* Fix - Makes sure the 'more' tag is respected in the 'Magazine' grid.
content-magazine-grid.php
* Fix - Adds both vertical & horizontal padding to Subscribe & Connect submit form.
style.css
* Tweak - Removes unused feedback.png image.
includes/images/feedback.png
* Tweak - Remoes unused Slides script
includes/theme-js.php,
includes/js/slides.min.jquery.js
* Fix - Changes the color of the submenu navigation arrows to inherit the colour of their parent links.
css/layout.css
* Fix - Fixes issue with Boxed Layout and border radius
css/layout.css
* Fix - Removes deprecated HTML5 tags and other small bug fixes.
includes/theme-comments.php
* Fix - Removes padding from WooSlider images.
includes/integrations/wooslider/css/wooslider.css
* Fix - Removes empty .content container if there is no title or excerpt in the slide.
includes/theme-actions.php
* Fix - Updates Non Responsive styling.
css/non-responsive.css
2014.03.12 - version 5.6.3
* Fix - Fixes search query for products and posts with WooCommerce activated.
includes/theme-functions.php
* Fix - Fixes output of special characters in the Contact Page map.
includes/theme-functions.php
* Tweak - Removes empty "Magazine Setup" tab from the Theme Options panel.
includes/theme-options.php
* Fix - Several WooSlider styling fixes
includes/integrations/wooslider/wooslider.css
includes/integrations/wooslider/css/business.css
includes/integrations/wooslider/css/magazine.css
* Fix - Fixes slider autoheight filter logic.
includes/theme-actions.php
* Fix - Fixes Testimonials styling.
includes/integrations/wooslider/wooslider.css
* Fix - Small tweaks to the dropdown menus.
css/layout.css
2014.03.06 - version 5.6.2
* Fix - Fixes Dropdown menu arrow in IE10
css/layout.css
css/non-responsive.css
* Fix - Fixes broken Fixed Layout
includes/theme-actions.php
* Tweak - Added Structured Data support in Tumblog titles.
content-tumblog.php
* Tweak - Removes unused "-ck.js" files.
includes/js/general-ck.js
includes/js/jquery.flexslider.min-ck.js
includes/js/jquery.prettyPhoto-ck.js
includes/js/markers-ck.js
includes/js/meta-options-custom-toggle-ck.js
includes/js/modernizr-ck.js
includes/js/portfolio-ck.js
includes/js/respond-ck.js
includes/js/third-party-ck.js
* Fix - Updates FitVids to version 1.1
includes/js/third-party.js
* Fix - Fixed search icon placement.
style.css
* Fix - Replaces get_cart_total() with get_cart_subtotal() in the mini cart.
includes/theme-woocommerce.php
* Fix - Fixes Magazine slider styling in WooSlider integration.
includes/integrations/wooslider/wooslider.css
* Fix - Fixed wrong file name in prettyPhoto CSS.
includes/css/prettyPhoto.css
2014.02.25 - version 5.6.1
* Fix - Fixes image thumbnail linking to itself instead of linking to the post in the magazine featured posts.
content-magazine-featured.php
* Fix - Adds the "Post Meta" section back to the Magazine Template.
includes/theme-actions.php
* Fix - Replaces cart_contents_count with get_cart_contents_count() to allow extensions to filter the item count.
includes/theme-woocommerce.php
* Fix - Removes default icon from Info Boxes without a specified type.
style.css
* Tweak - WooSlider integration only loads if the correct version of the plugin is present.
includes/theme-actions.php,
includes/theme-plugins-integrations.php
* Fix - Styles Search dropdown in IE8
css/non-responsive.css
* Fix - Adds dropdown indicator in IE8
css/non-responsive.css,
css/layout.css
* Tweak - Added option to remove search from the primary navigation menu.
includes/theme-actions.php,
includes/theme-options.php
2014.02.17 - version 5.6.0
* New - Added support for Our Team plugin
includes/integrations/our-team/
* Fix - width on .col-full when using fixed mobile layout resolves issue with toggle shortcode.
includes/theme-actions.php
* New - Added search to the primary navigation menu.
includes/theme-actions.php,
style.css,
css/layout.css
* New - Added Rich Snippets support.
content-404.php,
content-archive-portfolio.php,
content-magazine-featured.php,
content-magazine-grid.php,
content-page-template-business.php,
content-page.php,
content-post.php,
content-search.php,
content-tumblog.php,
content.php,
includes/theme-shortcodes.php,
loop-portfolio.php,
single-portfolio.php
* Fix - HTML5 Validation
style.css,
css/layout.css,
includes/theme-woocommerce.php,
includes/theme-actions.php
* Tweak - Hides "One Column" layout selection from Layouts
includes/woo-layout/assets/js/functions.js
* Tweak - Removes pre_get_posts() filters to avoid conflicts with 3rd party plugins.
includes/theme-functions.php,
includes/theme-options.php,
loop-blog.php
* Tweak - Removed height options from sliders.
includes/theme-options.php,
includes/theme-actions.php
* New - Added contextual options to "Woo - Component" widget for the "Business" Slider.
includes/widgets/widget-woo-component.php
* Fix - Replaces "woothemes_testimonials_args" with "woothemes_testimonials_default_args" filter.
includes/integrations/testimonials/testimonials.php
* Fix - Current page menu item class issue when using the Blog template.
includes/theme-functions.php,
loop-blog.php,
template-blog.php
* New - Projects plugin integration.
includes/integrations/projects/*
includes/theme-plugin-integrations.php
* New - Integration with WooSlider.
css/layout.css,
includes/theme-actions.php,
includes/theme-plugin-integrations.php,
includes/integration/wooslider/*,
style.css
* New - RTL support.
rtl.css,
rtl.less,
theme-functions.php,
theme-actions.php
2013.12.20 - version 5.5.7
* Fix - Fixes "simple" pagination.
includes/theme-functions.php
2013.12.19 - version 5.5.6
* Fix - Remove erroneous closing php tag.
content-magazine-grid.php
2013.12.16 - version 5.5.5
* Fix - Fixes pagination in the Magazine page template and component widget.
includes/theme-functions.php,
includes/theme-options.php,
loop-magazine.php
* New - Fixed product reviews layout for WooCommerce 2.1
css/woocommerce.less,
css/woocommerce.css
* Tweak - Related products layout now uses woocommerce_output_related_products_args filter
includes/theme-woocommerce.php
* Tweak - Featured images in posts in the magazine grid layout link to the post
content-magazine-grid.php
2013.11.08 - version 5.5.4
* includes/theme-actions.php - Adds supports for shortcodes in business slider.
* style.css - Updates default button size to 1em. Styles blockquotes in comments.
* loop-portfolio.php - Fixes portfolio images showing duplicate in lightbox.
* includes/theme-shortcodes.php - Removes comment icon when comments are disabled.
* includes/theme-plugin-ingrations.php
includes/integrations/testimonials/* - CSS for testimonials plugin now only loaded when plugin is activated.
* css/woocommerce.css - Demo store notice now positioned at the bottom of the page. Product variation price tweak. Fixed cart image in IE8.
* includes/theme-js.php - Disable theme prettyPhoto styles on WooCommerce product pages when WooCommerce lightbox is enabled.
* includes/theme-woocommerce.php - Add relevant rel attribute to images in product galleries.
* style.css,
includes/theme-options.php,
includes/theme-actions.php - Added left/right slider overlay position to options. Remove slider arrows if only 1 slide.
* includes/theme-functions.php - Fixed Contact Form callout text html not working.
* css/non-responsive.css - Added WooCommerce layout for IE8 support.
* loop-magazine.php - Fixed pagination not functioning correctly.
2013.11.05 - version 5.5.3
* includes/theme-actions.php - Fix meta tag output priority for Fixed mobile width option.
2013.10.29 - version 5.5.2
* includes/theme-actions.php - Fix meta tag output priority for IE10 compatibility
* loop-portfolio.php,
template-portfolio.php,
includes/theme-actions.php - Fixed duplicate breadcrumb on portfolio page template
* template-contact.php - Removed empty divider space if maps not used.
* style.css,
search-form.php - fixed border radius on search icon. Added 'Search' to value of button.
2013.10.14 - version 5.5.1
* style.css - Fix height issue with embedded videos
2013.09.30 - version 5.5.0
* css/woocommerce.css - fixed Safari image bug. Update tabs styling.
* style.css,
css/layout.css,
template-biz.php,
includes/theme-actions.php,
includes/theme-options.php
includes/js/jquery.flexslider.min.js - Added full width business slider functionality. Updated slider navigation styling.
* style.css,
css/layout.css,
css/non-responsive.css,
sidebar-init.php,
theme-actions.php,
theme-options.php - Remvoed Top Ad from header. Added Header widgetized area.
* includes/theme-functions.php,
includes/theme-js.php,
includes/theme-options.php,
includes/theme-widgets.php,
style.css - Retired Feedback custom post type. Replaced by Testimonials by Woo plugin: http://wordpress.org/plugins/testimonials-by-woothemes/
* includes/js/feedback.php,
includes/theme-plugins.php,
includes/widget-woo-feedback.php,
template-feedback.php - REMOVED.
* style.css - Improved styling for Features by Woo and Testimonials by Woo plugins.
* includes/js/general.js - Allow prettyphoto script to run on WC product pages.
* includes/widgets/woo-widget-tabs.php - change function name filter_where to woo_filter_where.
* includes/theme-woocommerce.php - WC stylesheet compatible with 2.1
* includes/theme-options.php,
includes/theme-actions.php,
style.css,
css/layout.css - optimized navigation styling and options.
* includes/css/prettyPhoto.css,
includes/js/general.js,
includes/js/portfolio.js - enabled and added mobile lightbox styling
* loop-portfolio.php - Do not load lightbox images on portfolio page template if lightbox disabled.
* theme-functions.php - Set locale on Feedburner form to WP_LANG.
* template-magazine.php - Show the page content before slider/grid.
* template-contact.php - Moved the Google map above content/sidebar.
* css/layout.css,
css/non-responsive.css - Tweaked boxed layout with full width header/navigation background.
* /includes/theme-actions.php - Adds a filter to add support for customising portfolio item meta via the meta manager.
* /includes/woo-meta/classes/woo-meta.class.php - Adds a filter point for customising which meta can be filtered.
* style.css - Adds support for scaling video, embed and iframe tags using a max-width of 100% and a relative height.
2013.09.25 - version 5.4.1
* includes/theme-actions.php - Fixed issue with missing slides in Business Slider.
2013.09.10 - version 5.4.0
* template-contact.php - Removed email address display from contact page
* layout.css - Added max-width to #logo to prevent display issue in Firefox.
* style.css,
/includes/theme-actions.php - Change loading woo_primary_menu to load before nav icons. Fix position of mobile icons. Fix business slide group option.
* /includes/theme-options.php - Set Disable Footer Widgets option to false by default to avoid confusion. Re-worded Slide Page to Slide Group. Adds deprecation notice for the "Feedback" feature, to be removed in Canvas version 5.5.0.
* style.css - Canvas specific styling for WooSlider. Canvas specific styling for shortcode buttons & banners.
* style.css,
/includes/fonts/fontawesome.* - updated FontAwesome v3.2.1
* template-contact.php,
/includes/theme-actions.php - Updated theme info boxes to use shortcodes.
* style.css,
woocommerce.css,
/includes/theme-actions.php - Updated general button styling and general WC styling. Updated slider alert styling to shortcode.
* loop-magazine.php - Improves loop by using WP_Query instead of query_posts(). Calls arguments from new function, woo_get_magazine_query_args().
* /includes/theme-functions.php - Adds function to generate query arguments for the "Magazine" loop. woo_get_magazine_query_args().
2013.07.02 - version 5.3.0
* /includes/widgets/widget-woo-embed.php - Added default width option to widget.
* /includes/theme-widgets.php,
/includes/widgets/widget-woo-twitter.php - REMOVED due to Twitter retiring v1.0 API - please use WooDojo http://www.woothemes.com/2013/06/woodojo-1-5-3-now-supports-twitter-api-1-1/
* /includes/theme-options.php,
template-contact.php - Removed Twitter feed from contact page template
* style.css - fix social icons alignment on WC pages.
* template-sitemap.php - Hide hidden products from sitemap.
* /includes/theme-actions.php - Fix output of post more on widgets page template when Woo Component magazine grid is selected. Fix undefined index notices when displaying the featured image for each post.
* /includes/woo-meta/assets/css/ - REMOVED
* /includes/woo-meta/classes/woo-meta.class.php - Removed unnecessary methods for loading styling and JavaScript. Renamed "Meta Manager" to "Filters". Adds methods for outputting the section navigation and section HTML. Moves shortcode reference into the "Help" tab. Prevent double-quote marks from being removed on output.
* /includes/woo-meta/screens/admin.php - Adjusts admin screen to use WordPress core-style layout, as well as new output methods from the class.
* /includes/woo-meta/assets/js/tabs-navigation.js - ADDED - Control the tabbing of the various sections on the "Filters" admin screen.
* /includes/woo-hooks/assets/css/ - REMOVED
* /includes/woo-hooks/assets/images/ - REMOVED
* /includes/woo-hooks/classes/woo-hooks.class.php - Removed unnecessary methods for loading styling and JavaScript. Renamed "Hook Manager" to "Hooks". Adds methods for outputting the section navigation and section HTML.
* /includes/woo-hooks/screens/admin.php - Adjusts admin screen to use WordPress core-style layout, as well as new output methods from the class.
* /includes/woo-hooks/assets/js/tabs-navigation.js - ADDED - Control the tabbing of the various sections on the "Hooks" admin screen.
* /includes/woo-layout/classes/woo-layout.class.php - Added new methods for admin-side HTML generation. Removed unnecessary loading of admin interface. Re-docblocked entire file. Added scope to all properties and methods. Adds hook section for "Sidebars".
* /includes/woo-layout/screens/admin.php - Introduce WordPress core-style layout. Optimised HTML output.
* /includes/woo-layout/assets/css/admin.css - REMOVED.
* /includes/woo-layout/assets/js/functions.js - Removed unnecessary interface-related JavaScript. Optimised existing code to be more efficient within the new admin interface.
* content-post.php - Use woo_get_dynamic_values() function to prevent "undefined index" notices and optimise existing logic.
* content-search.php - Use woo_get_dynamic_values() function to prevent "undefined index" notices and optimise existing logic.
* sidebar.php - Optimise logic to use the woo_get_dynamic_values() function. Fixes "undefined index" notice.
2013.06.12 - version 5.2.7
* css/woocommerce.css - fix styling for http://wordpress.org/plugins/woocommerce-product-archive-customiser/
* loop-portfolio,
template-portfolio.php - fix duplicate breadcrumb on portfolio page
* template-imagegallery.php - fix images to link to post instead of image
2013.06.06 - version 5.2.6
* includes/theme-actions.php - fix for WC layout options. fix for post title sizes (if set to em). Don't open mail icon in new window.
* includes/js/general.js - fix for fitvids being applied to all widgets.
2013.05.16 - version 5.2.5
* includes/general.js - run doubletap only on android devices.
* includes/theme-options.php,
includes/theme-actions.php - added seperate layout options for WC pages and single portfolio posts.
* style.css - White nav-toggle link colour
* includes/theme-actions.php - disable auto img and placeholder image on business slider
* style.css,
includes/fonts/fontawesome.* - updated FontAwesome vs3.1.1
* template-portfolio.php - Output content on Portfolio template
* includes/js/general.js - removed alt row table class
2013.05.07 - version 5.2.4
* style.css - New mobile menu toggle styling. Tweaked default link color. Removed border on menu in mobile. New clear floats. Fixed height of magazine slider on mobile.
* css/woocommerce.css - Tweaked shop styling. Fixes product search widget styling.
* includes/theme-actions.php - Default one-col on single product. Tweaked boxed styling mobile. Fixed height of magazine slider on mobile. Changed #header BG position to "left top". Changed position of .nav-toggle to top. Fix for mobile fixed width.
* template-contact.php - Added box to send message.
* includes/js/general.js,
includes/js/third-party.js - Fix for Android dropdowns.
* includes/theme-woocommerce.php - Changed WC layout from 3 to 4 columns.
* template-feedback.php - Set query to show all feedback posts.
* layout.css,
non-responsive.css - fix portfolio post responsive.
* includes/js/general.js - do not autoload prettyphoto on WooCommerce pages.
* css/non-responsive.css - added WC styling
2013.04.18 - version 5.2.3
* style.css - Fixed z-index on navigation for IE9 lightbox. Bullet styling on related posts. Fixed Tumblog icons. Fixed YouTube Firefox issue.
* includes/js/general.js - Optimized mobile navigation code.