-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathreadme.txt
1386 lines (997 loc) · 40.2 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
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
=== Lightning ===
Lightning WordPress theme, Copyright (C) 2015-2025 Vektor,Inc.
Lightning WordPress theme is licensed under the GPL.
Tested up to: 6.7
Stable tag: 15.29.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
== Description ==
Lightning is a very simple theme.
Official site : https://lightning.vektor-inc.co.jp/
=== Tags ===
white, red, blue, black, green, orange, purple, two-columns, right-sidebar, one-columns, responsive, custom-colors, custom-menu, editor-style,theme-options
=== Features ===
Bootstrap based,Supports customizer, Responsive Layout, Page Navigation, Breadcrumb Navigation, and more!
=== Widgets Areas ===
The Theme has 9 widget areas.
You can use these area to customize the content of your website.
== License ==
Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License version 2, see file license.txt.
The exceptions to this license are as follows:
The script html5.js and css3-mediaqueries.js are licensed under MIT
Header Images are photo by theme author and are released under GPL license.
== Author ==
The theme built by Vektor,Inc.
== Changelog ==
[ G3 ][ Bug fix ] Fix block width on editor with narrow screen.
v15.29.3
[ Bug fix ][ G3 ] Fix prev next design on post page.
v15.29.2
[ Specification Change ] Load vk-component from composer.
v15.29.1
[ G3 ][ Design Bug Fix ] Add .vk_gridcolcard_item to the :not selector to prevent items in .vk_gridcolcard in .alignfull and .alignwide from being affected by centering when theme.json is enabled.
v15.29.0
[ G2 ][ Specification Change ] Change load module priority ( cope with WordPress 6.7 translation )
[ G3 ][ Bug fix ] Fix profile image warning
v15.28.2
[ G3 / G2 ][ Design Bug Fix ] Fixed a gap below the image with a link applied.
v15.28.1
[ G3 / G2 ][ Bug fix ] Since WordPress 6.7.1 started outputting contain-intrinsic-size: 3000px 1500px, add a reset for this in .card.
v15.28.0
[ G3 / G2 ][ Specification Change ] Added support for the "Writing Mode" option in Typography settings for WordPress 6.7.
v15.27.2
[ G3 ][ Editor Design Bug Fix ] Fixed a bug in the design of the editor when the slider was set to alignfull and the outer was set to alignfull.
[ G3 / G2 ][ Bug fix ] Fixed a translation-related notice that occurred in version 6.7.
v15.27.1
[ G3 / G2 ][ Bug fix ] fix unit control width on editor.
[ G3 / G2 ][ Bug fix ] Fixed an issue where the button overflowed in the Media Layout of the VK Post List block on the editing screen ( Update VK Components 1.6.2 )
v15.27.0
[ G3 / G2 ][ Specification Change ] Add filter vk_post_taxonomies_html ( Update VK Components 1.6.1 )
[ G3 ][ Design Bug Fix ] Fixed an issue where styles were incorrectly applied to horizontal elements in the core Group block.
v15.26.5
[ G3 / G2 ][ Design Bug Fix ] Fix an isshe where mobile nav dropdown icon link error ( update vk mobile nav 0.3.2 )
v15.26.4
[ G3 / G2 ][ Design Bug Fix ] Fixed padding of recent entries widget li to none
v15.26.3
[ G3 ][ Bug fix ] Fixed an issue where the WooCommerce CSS file failed to load on the edit screen when using WooCommerce.
[ G2 ][ Design Bug Fix ] Fix 'a tag' style for global menu in WP 6.6.
[ Other ] Update VK Component Posts.
v15.26.2
[ G2 ][ Specification Change ][ 6.6 ] Refactoring the width handling of the edit screen
v15.26.1
[ G3 with theme.json ][ Specification Change ] add fontSizes preset on theme.json.
v15.26.0
[ G3 / G2 ][ Design Bug Fix ] Fix outline background of button style in WP6.6.
[ G3 ][ Specification Change ] Refactoring the width handling of the edit screen
[ G3 / G2 ][ Editor Design Bug Fix ] Supports wide slider item width.
v15.25.1
[ G3 ][ Bug fix ] Fix PHP warning
v15.25.0
[ G3 ][ Add function ] Add max height setteing for header logo.
v15.24.0
[ G3 / G2 ][ Design Tuning ] Add styles to inline kbd block.
v15.23.2
[ G3 / G2 ][ Bug fix ] Addressed an issue where the mobile navigation did not open on older iOS versions.
v15.23.1
[ G3 ][ Design Bug Fix ] Fix minimum font size for slider on mobile.
v15.23.0
[ G3 ][ Specification Change ] Change default radius to 4px from 5px
[ G3 ][ Specification Change ] Minor design adjustments to the slide component.
v15.22.1
[ Other ] Update starter and logo
v15.22.0
[ G3 / G2 ][ Specification Change ] Support navigation operations using the Tab key.
[ G3 ][ Design Bug Fix ][ OriginIII ] Fixed text-decoration-color color for parent elements with `has-black-background-color` class or elements with `has-text-color` class.
v15.21.1
[ G3 with theme.json ] Fixed the alignment issue of the title in the post editing screen.
v15.21.0
[ G3 ][ 6.5 ] Attend to aspectRatio
[ G3 ][ 6.5 ] Attend to backgroundSize
[ G3 / G2 ] Allow using CSS level 4 viewport-relative units
v15.20.2
[ G3 ][ Design Bug Fix ][ OriginIII ] Fixed margin-bottom of vk_button does not work if vk_button is adjacent within an element of .is-layout-flow or .is-layout-constrained.
[ G3 ][ Design Bug Fix ][ OriginIII ] Fixed the issue where the OriginIII title design was incorrectly applied to the post title block.
v15.20.1
[ G3 ][ Design Bug Fix ] CSS Rebuild
v15.20.0
[ G3 ][ Design Bug Fix ] Fixed to exclude hover decoration when submitbutton is disabled
[ G3 ][ Design Bug Fix ] Fixed the header layout where the logo link area is wider when the navigation wraps around.
[ G3 ][ Other ] Adjusting the preview mode for the VK Blocks Slider Block.
[ Other ] Update CSS optimizer 0.2.2
v15.19.1
[ G3 ][ Bug Fix ] Fixed the logo link area issue when using the header logo center layout(G3 Pro Unit).
v15.19.0
[ Specification Change / Bug Fix ] Security update ( Update TGM & import from composer )
v15.18.0
[ G3 ][ Other ] Add widget area notice on customize screen.
v15.17.1
[ G3 ][ Bug fix ] Fixed a bug where the content area becomes extremely narrow on the editing screen when not in fullscreen mode and on devices with a narrow display, such as mobile phones.
v15.17.0
[ G3 ][ Add action hook ] lightning_entry_footer_append
[ G3 ][ Specification Change ] Add nowrap CSS specification to post date block.
[ G3 ][ Specification Change ] Delete padding from Media and Text block that under the mobile stack mode
[ G3 ][ Bug fix ] Fixed the issue where the sidebar shakes during scrolling.
[ G3 ][ Bug fix ] Fixed a bug where the font size does not change in the editing screen's 'p' tag.
v15.16.0
[ G3 / G2 ][ Specification Change ] Modify the system so that it does not display an alert under certain conditions, even if the administrator's email address contains the string 'vektor-inc'.
[ G2 ][ Specification Change ] Change the implementation of the 'Card Horizontal' layout used for 'Previous Article' and 'Next Article' from being specified by Bootstrap to a custom specification (Update VK Components 1.6.0).
[ G3 ][ Bug fix ] I have corrected the alignment behavior of horizontal blocks.
v15.15.1
[ G3 / G2 ][ Specification Change ] get_bloginfo( 'name' ) -> get_bloginfo( 'name', 'display' )
[ G3 / G2 ][ Bug fix ] Fixed a JavaScript error that occurs when the mobile navigation setting is disabled.
v15.15.0
[ G3 ][ Specification Change ] Added support for the background image feature in Group blocks, introduced in WordPress 6.4.
[ G3 ][ Specification Change ] Update Swiper 9.3.2 -> 11.0.2
v15.14.2
[ G3 ][ Specification Change ] Allow style for the span tag in the entry-meta of the page header.
[ G2 ][ Bug fix ] Fix vk mobile nav library url.
v15.14.1
[ G3 ] change footer copyright
v15.14.0
[ G3 ][ Specification Change ] Change taxonomy name class of the post bottom taxonomy list.
v15.13.0
[ G3 ][ Specification Change ] Add taxonomy name class to the post bottom taxonomy list.
v15.12.1
[ G3 ][ Fix ] Fixed the position of sidebar shortcut icon on the customize screen
[ G3 ][ Fix ] Fixed the Widget edit UI on the customize screen
v15.12.0
[ G3 ][ Add function ] Add search result widget area
[ G3 ][ Bugfix ] fix editor width
v15.11.0
Update Font Awesome 6.4.2 ( Supports the icon font of X )
v15.10.6
Update test up version
v15.10.5
[ G3 ][ Bug fix ] Fixed the bug that caused an unintentional margin at the top of the page header when clicking the 'page top' button.
v15.10.4
[ G3 / G2 ][ Bug fix ] Addressing the image ratio issue in WordPress 6.3.
v15.10.3
[ G3 ][ Bugfix ] Fixed a bug where the margin-top of the header site title differed slightly between the home page and other pages when no header logo image was specified.
v15.10.2
[ G3 ][ Bugfix ] Fix lightning_get_entry_meta function.
v15.10.1
[ G3 ][ Improvement ] Improvement to hide the fixed header when clicking on an anchor link URL from another page.
[ G3 ][ Bugfix ] Fix lightning_get_entry_meta function.
v15.10.0
[ G3 (no-theme.json) ] Support link color and border ( WordPress 6.3 ).
[ G3 ][ Specification Change ] Add the 'menu-item-anchor' class to the in-page link in the navigation menu.
[ G3 ][ Specification Change ] Improving JavaScript Loading
[ G3 / G2 ][ Specification Change ] Adjustments for the changes in the CSS of the cover block introduced by WordPress 6.3.
[ G3 / G2 ][ Specification change ] Changed to get bbpress topic title from bbp_get_topic_title.
v15.9.5
[ G3 / G2 ][ Bug Fix ] Fix VK_Helpers::color_auto_modifi()
v15.9.4
[ G3 / G2 ][ Refactoring ] Update VK_Component
[ G3 / G2 ][ Bug Fix ] Update VK_Helpers ( Cope with PHP8.2 )
v15.9.3
[ G3 ][ Bug fix ] Cope with plugin the Event Calender
[ G2 ][ Bug fix ] Fix fatal error arise from bootstrap version version judgement on slider
v15.9.2
[ G3 ][ Bug fix ] Fixed file reference bug of slider under specific environment such as Windows ( Update Swiper 9.3.2 )
v15.9.1
[ G3 ] Fix slider navigation
v15.9.0
[ G3 theme.json ][ Design Bug fix ] Fix .is-layout-constrained margin-bottom
[ G3 theme.json ][ Design Bug fix ] Fix horizontal non-intentional padding at inner block
[ G3 ][ Design tuning ] Lightning design setting metabox UI
v15.8.6
[ G3 ] Fix heading bottom on editor
v15.8.5
[ G3 ] Fix element bottom on editor
v15.8.4
[ G3 ] Fix handling width of cope with theme.json
v15.8.3
[ G3 ] Fix theme.json setting for existing site
v15.8.2
[ G3 ] fix editor screen block spacing
v15.8.1
[ G3 ][ Bug fix ] Fix Editor block
[ G2 ][ Bug fix ] Fix loading old files
[ G2 ][ Bug fix ] Delete specification of margin 0 for figure
v15.8.0
[ G3 ][ Other ] add css clear-float class
[ G3 ][ Bug fix ] Fix editor width of group inner on WP6.1
[ G2 ][ Bug fix ] Delete underline of button placed footer.
[ G3 / G2 ][ Bug fix ] Fix Font Awesome 6
v15.7.0
[ G3 ][ Specification Change ][ Page Header ] Allow class on br tag
v15.6.0
[ G3 / G2 ][ Update ] VK mobile Nav ( add filter vk_mobile_nav_menu_btn_text )
[ G3 / G2 ][ Update / Bugfix ] CSS Optimize ( Cope with PHP 8.1 warning )
v15.5.1
[ G3 / G2 ] Tree Shaking Update 2.2.0
[ G3 ][ OriginIII ] Fix headding radius
v15.5.0
[ G3 theme.json ][ Bug fix / Specification Change ] Delete margin-top from "body .is-layout-constrained > * + * "
v15.4.0
[ G3 ][ add filter ] lightning_pagenation_array
v15.3.0
[ G3 / G2 ][ Bug fix / Specification Change ] Fix tree shaking & composer lib & add e2e test
[ G3 theme.json ][ Bug fix / Improvement ] Cope with table border color.
[ G3 ][ Bug fix ] Fix table font size.
v15.2.6
[ G3 theme.json ][ Bug fix ] Delete non-intentional heading margin-top
[ G3 theme.json ][ Bug fix ] Fix don't reflect max-width for full width innner headding
v15.2.5
[ G3 theme.json ][ Bug fix ] fix content width not work propery on theme.json mode ( from 15.2.0 )
[ G3 ][ Specification Change ] Delete default vertical block margin on Editor Screen.
v15.2.4
[ G3 / G2 ][ Other ] Update Breadcrumb/VkHelpers library
v15.2.3
[ G3 / G2 ][ Bug fix ] Fix Navigation Walker
v15.2.2
[ G3 ][ Bug fix ] Fix Widget editor on customize preview screen.
v15.2.1
[ G3 ][ Bug fix ] Fix figure tag margin
v15.2.0
[ G3 ][ Specification Change ] Change to switch css on theme.json mode
[ G3 ][ Bug fix ] Fix blog card bottom margin
[ G3 ][ Bug fix ][ OriginIII ] Web font not reflect on edit screen.
v15.1.4
[ G3 ][ Bug fix ] image align with theme.json
v15.1.3
[ G3 ][ Bug fix ] Fix table border color
v15.1.2
[ G3 ][ Bug fix ] Fix Headding margin
[ G3 ][ Bug fix ] Reset figure tag user agant style
[ G2 ][ Bug fix ] Fix VK Button Block default bg color on VK Blocks 1.45.0
v15.1.0
[ Add function ] Add theme.json activator
[ G3 ] Fix core button default bg color on 6.1
[ G3 ] Fix generation setting bug on starter data import.
v15.0.0
[ G3 ] Cope with theme.json
v14.25.1
[ G3 ] Fix button color 6.1 on editor screen
[ G3 ] Fix image 6.1 margin bottom
[ G3 ] Fix iOS Form CSS
v14.25.0
[ G3 / G2 ] Cope with 6.1
[ G3 ][ Bug fix ] Fix Outer Block in wid and full element width in editor screen.
v14.24.0
[ G3 ][ Specification Change / Bug fix ] The button hover color to be refrect the normal bg color
[ G3 ][ Bug fix ] fix alphabet font weight too thin
v14.23.4
[ G3 ][ Bug fix ] fix slider bug under no VK Blocks environment ( Swiper 8.0.7 -> 6.8.0 )
v14.23.3
[ G3 ][ Bug fix ] fix bbpress php warnning
[ G2 ][ Bug fix ] fix cope with All in One SEO Plugin
v14.23.2
[ G3 ][ Bug fix ] Fix VK Blocks Pro Outer Block Full width on use Section Base
[ G3 / G2 ] Update VK Component library
v14.23.1
[ G3 ][ Bug fix ] Fix Table align not work
v14.23.0
[ G3 ][ Add action hook ] lightning_site_body_before
v14.22.12
[ G2 ][ Bug fix ] Fix PHP notice in Front Pr
[ G2 ][ Bug fix ] Author page layout setting
v14.22.11
[ G3 ][ Bug fix ] fix cope with All in One SEO Plugin
[ G3 ][ breadcrumb ] Fix in case of filter search result category & keyword
v14.22.10
[ G2 / G3 ][ table ] thead th specify to center on editor screen
v14.22.9
[ G2 / G3 ][ table ] thead th specify to center
v14.22.8
[ G3 ][ Bug fix ] Remove extra table margin
v14.22.7
[ G3 / G2 ][ Bug fix ] Fix slider text align
v14.22.6
[ G3 ][ Bug fix ] Fixed a bug that fixed header is covered when linking in the page with VK button block
v14.22.5
[ G3 ][ Bug fix ] Editor css
v14.22.4
[ G3 ][ Bug fix ] Fix Editor default font family
[ G3 ][ Bug fix ] Fix menu close font size on editor screen(not fullscreen mode)
v14.22.3
[ G3 ][ Bug fix ] Fix editor color palette since 14.22.2
v14.22.2
[ Bug fix ] Fix editor CSS ( Cope with 6.0 )
[ Bug fix ] Update Tree Shaking (CSS speeding)
v14.22.1
[ G3 / G2 ][ Specification Change ] Allow iframe tag on post list filter
v14.22.0
[ G3 / G2 ][ Specification Change ] Allow iframe tag on post list filter
v14.21.5
[ G2 ] Fix VK Slider block in case of full width
[ G3 / G2 ][ Bug fix ] Fix WordPress core button color
[ G3 / G2 ][ Bug fix / Specification Change ] Fix clumn gap
v14.21.4
[ G3 ][ Bug fix ] Fix Global Menu Layout
v14.21.3
[ G3 ][ Bug fix ] Fix Global Menu Layout
v14.21.2
[ G3 ][ Bug fix ] Fix Global Menu Layout
v14.21.1
[ G3 ][ Bug fix ] Fix Global Menu
v14.21.0
[ G3 / G2 ][ Others ] Cope with WP6.0
[ G3 / G2 ][ Bug fix ] Fix button default design
[ G3 / G2 ][ Bug fix ] Fix Mobile Nav close transform
[ G3 ][ Bug fix ] Fixed global navigation item width
[ G3 ][ Bug fix ] Fix Google Web Fonts Japanese display on Edge
v14.20.3
[ G3 / G2 ][ Bug Fix ] Fix load Font Awesome Files on WordPress.com
v14.20.2
[ G3 ][ Others ] Update Breadcrumb composer library 0.2.2
v14.20.1
[ G3 ][ Bug fix ] Fix site title nowrap on mobile
[ G3 / G2 ][ Others ] Update Vektor Font Awesome library 0.4.0
v14.20.0
[ G3 / G2 ][ Others ] Update Vektor Font Awesome library 0.3.3
v14.19.2
[ G3 / G2 ] Fix Font Awesome Icon link
v14.19.1
[ G3 ][ Bug fix ] fix action hook name 'lightning_site_body_apepend' -> 'lightning_site_body_append'
[ G3 ][ Bug fix ] No Read Lightning Scripts on widget editor scrren.
v14.19.0
[ G3 ][ Specification Change ] Delete table bottom margin
[ G3 /G2 ][ Design tuning ] wooCommerce Design Tuning
v14.18.2
[ G3 ][ Bug fix ] Fix Column setting on archive page
[ G3 ][ Bug fix ] Fix Slide(Swiper) bug on safari
v14.18.1
[ G3 ][ Bug fix ] fix html head
[ G3 ][ Bug fix ] Cope with breadcrumb block
v14.18.0
[ G3 / G2 ][ Add function ] Cope with font awesome 6
[ G3 ][Bug fix ] Fix Group width and so on eit screen
v14.17.5
[ G3 / G2 ][Bug fix ] Fix not loaded
v14.17.4
[ G3 / G2 ][Bug fix ] Fix JS error on widget edit screen.
[ G3 ][ Design bug fix ] Fix VK Outer Blocks width
v14.17.3
rebuild only
v14.17.2
[ G3 ][ Design bug fix ] Fix VK Outer Blocks width on lightning_site_footer_before
v14.17.1
[ G3 ][ Add filter ] Add filter to be control Breadcrumb position.
v14.17.0
[ G3 ][ Add filter ] Add filter to be control Breadcrumb position.
v14.16.0
[ G3 ][ Specification Change ] Change to convert use composer.
[ G3 ][ fix ] Starter content exclude plugin instruction
v14.15.2
[ G3 ][ Bug fix ] Fix Skin select from old version
v14.15.1
[ G3 / G2 ][ Bug fix ] fix design parts corruption on editor screen
v14.15.0
[ G3 ][ Specification Change / Design bug fix ] delete .site-body horizontal padding
v14.14.1
[ G3 / G2 ][ Bug fix ] Fix layout bug come rise from "should_load_separate_assets" css load order
v14.14.0
[ G3 / G2 ] Cope with WordPress 5.9
v14.13.6
[ G3 ][ Design Bug Fix ] Fix footer nav menu border
[ G3 ][ Design specification Change ] Change h4,h5,h6 margin-top
v14.13.5
[ G3 / G2 ][ Design Bug fix ] Fix card image layout bug gave rize from 14.13.4
v14.13.4
[ G3 / G2 ][ Design Bug fix ] Fix media layout bug
v14.13.3
[ G3 ][ Bug fix ] Fix Slider bug ( attribute from VK Blocks 1.20 - )
v14.13.2
[ G2 ][ Bug fix ] Fix editor css
v14.13.1
[ G2 ][ Bug fix ] Fix editor calendar
v14.13.0
[ G3 ][ Add function ] Add 404 template and hook
v14.12.2
[ G3 ][ Other ] meta box CSS tuning on edit screen
v14.12.1
[ G3 ][ Bug fix ] Fix side bar position fix in case of header position unlock.
v14.12.0
[ G3 ] Cope with Pro unit footer nav align.
v14.11.12
[ G3 ][ Design bug fix ] Add ul and ol tag padding-left
v14.11.11
[ G2/G3 ][ BreadCrumb ] add item scope
v14.11.10
[ G2 ][ Bug fix ] Customize screen css
v14.11.9
[ G2 ][ Bug fix ] Fix edit screen css
v14.11.8
[ G2 ][ Bug fix ] Fix edit screen css
v14.11.7
[ G3 ][ Bug fix ] Fix difference in front and editor font selector size.
v14.11.6
[ G3 ][ Bug fix ] Cope with vk-blocks button custom color ( vk blocks 1.16.3 - )
v14.11.5
[ G3 ][ Bug fix ] Cope with page link scroll for admin bar
[ G2/G3 ][ Bug fix ][ vk-compo ] Cope with br
v14.11.4
[ G3 ][ Bug fix ][ Slide ] Fix slide no btn link bug
v14.11.3
[ G2 / G3 ][ Bug fix ][ Breadcrumb ] Fix microdata
v14.11.2
[ G3 ][ Bug fix ][ color palette ] Fix color array
v14.11.1
[ G3 ][ Bug fix ] Fix php notice under case of key color was not spacificated
v14.11.0
[ G3 ][ Add function ] Add custom color to color palettes
[ G3 ][ Specification Change ] Move key color setting to Color setting from Lightning Design Setting
v14.10.0
[ G3 ][ Add function ] Add key color to color palettes
[ G3 ][ Add function ] Add mail address checker
v14.9.4
[ G3 ][ Bug fix ] fix missing textdomain
v14.9.3
[ G3 ][ Bug fix ] Fix button active color
v14.9.2
[ G3 ][ Bug fix ] fix missing textdomain
v14.9.1
[ G3 / G2 ][ Bug fix ] Cope with custom unit "%"
v14.9.0
[ G3 ][ Specification Change ] Add filter vk_term_color_taxonomy / vk_get_single_term_with_color / vk_post_view
v14.8.2
[ G3 ][ Bug fix ] Header logo margin-top -> padding-top ( Cope width add site-header background-color )
v14.8.1
[ G3 ][ Bug fix ] Add change filter hook name fall back ( lightning_archive-header -> lightning_archive_header )
[ G3 ][ Other ] PHPUnit test Refactoring
v14.8.0
[ G3 ][ Other ] No post message cope with post type
[ G3 ][ Bug fix ] fix form font size
v14.7.1
[ G3 ][ Bug fix ] fix design css load priority on edit screen
[ G3 ][ Change Filter Hook Name] lightning_archive-header -> lightning_archive_header
v14.7.0
[ G2/G3 ][ Bug fix ] Fix Widget setting page JavaScript Error
v14.6.2
[ G3 ][ Bug fix ] Fix Tree shaking not work
v14.6.1
[ G3 ][ Bug fix ] Fix Class Name Error
v14.6.0
[ G3 ][ Specification Change ] Change load skin editor css parameter
v14.5.12
version only
v14.5.11
[ G2 ][ Bug fix ] Fix core button disable on hover
v14.5.10
[ Other ] refactaring
v14.5.9
[ G3 ][ Specification Change ][ Slider ] add designation font size of .swiper-slide p
v14.5.8
[ G3 ][ Bug fix ] Fix broke post list layout under case of few charactor on mobile screen
v14.5.7
[ G3 ][ Bug fix ] Fix full and wide width not work on use section base
v14.5.6
[ G3 ][ Bug fix ] Fix wide not work on narrow screen
[ G3 ][ Bug fix ] Fix Gallery align center not work
v14.5.5
[ G3 ][ Design Tuning ] To be apply key color for WordPress core button block default
[ G2 ][ Bug fix ] Fix old template system bug
v14.5.4
[ G3 ][ Bug fix ] Fix word-break
v14.5.3
[ G3/G2 ] WordPress 5.8 対応調整
[ G3 ][ Bug fix ] Wide layout minor bug fix
[ G3 ][ Bug fix ] Wide layout Cope with 2 column
[ G3 ][ Bug fix ] Fix search block submit button bgcolor
[ G3 ][ Bug fix ] Fix VK Blocks Post List Block Font size
[ G3 ][ Other ] Disable old templates on edit screen
v14.5.2
[ Bug fix ] Fix Post list Font Size under case of post 1 column
v14.5.1
[ Bug fix ] Fix Post list layout craps under case of short title on mobile screen
[ Bug fix ] Fix select layout drop down over flow on edit screen
v14.5.0
[ Add Function ][ OriginIII ] Cope with vertical menu
[ Bug fix ] Fix NextPrev don't display under case of bbPress active.
v14.4.2
[ Bug fix ] Fix image block fit to left bug
v14.4.1
[ Other ] Cope with Theme Check
v14.4.0
[ Specification Change ] Change blog card
[ Bug fix ] Fix slide button link
v14.3.9
[ Bug fix ] Fix front page layout function
[ Cope with WP 5.8 ][ Mobile Nav ] change html hook point
v14.3.8
[ Bug fix ] Fix VK_Helpers::get_page_for_posts fatal error
v14.3.7
[ Bug fix ] Fix cope with full width on 2 column mode
v14.3.6
[ Bug fix ] Fix not intend margin bottom by entry footer on page
v14.3.5
[ Bug fix ] Fix front page default column on customize screen
v14.3.4
[ Bug fix ] Fix entry footer hidden logic
v14.3.3
[ G3 ][ Bug fix ] Fix front page column layout
[ G3 ][ Bug fix ] Fix calendar and font size in edit screen inspector and so on
v14.3.2
[ G3 ][ Specification Change ] Add --vk-color-border / --vk-color-border-image
[ G3 ][ Bug fix ] Fix image 1px padding
[ G3 ][ Bug fix ] Fix Footer Widget margin bottom ( add )
[ G3 ][ Bug fix ] Fix not intent image margin on edit screen
v14.3.1
[ G3 ][ Bug fix ] Fix customize shortcut icon don't display
[ G3 ][ Other ] Change recommend logo size
v14.3.0
[ Bug fix ] Fix vk_post post author image and name vertical-align
[ Bug fix ] To be refrect key color on edit screen
[ Design Specification Change ] remove a tag underline with the exception of p and li tag
[ Specification Change ] Stop exclude CSS Var by Tree shaking
v14.2.2
[ G3 ][ Bug fix ] Fix archive title PHP critical error
v14.2.1
[ G3 ][ Bug fix ] Fix Bread Crumb under case of post top page is not specificated
v14.2.0
[ G3 ][ other ] add args of do_action name
[ G3 ][ Btg fix ] Fix WooCommerce css on edit screen
v14.1.9
[ G3 ][ Bug fix ] Fix global nav not refrect under case of mobile nav not specificed
[ G3 ][ Btg fix ] Fix can't click too many menu item
[ G3 ][ Btg fix ] Fix WooCommerce Btn color not refrect
v14.1.8
[ Bug fix ] Fix Header Navigation Padding
v14.1.7
[ Bug fix ] Fix BreadCrumb under case of filter search result
v14.1.6
[ Bug fix ] fix no header error ( for Pro Unit )
v14.1.5
[ Bug fix ] cope with responsive-embeds
v14.1.4
[ Bug fix ] Fix front page column setting
v14.1.3
[ Other ] remove beta label
v14.1.2
[ G2 ][ Bug fix ] Fix Front page widget not work
v14.1.1
[ G3 ][ Bug fix ] BreadCrumb HTML grammer
[ G3 ][ Bug fix ] footer nav HTML grammer
[ G3 ][ Design bug fix ] fix widget ul.wp-block-social-links padding
v14.1.0
[ G3 ][ Bug fix ] Fix header css
v14.0.17 ( Beta Release )
[ G3 ][ Bug fix ] Fix header fixed system and css on header trans(ProUnit)
v14.0.16 ( Beta Release )
[ G3 ][ Specification Change ] Change header fix system and css
v14.0.15 ( Beta Release )
[ G3 ][ Specification Change ] Change Global nav sub menu hover bg color and btn-primary:hover
[ G3 ][ Specification Change ] Remove Google Fonts and load only OriginIII
v14.0.14 ( Beta Release )
[ OriginIII ][ Design Specification Change ] Change global navigation hover color
v14.0.13 ( Beta Release )
[ G3 ][ Bug fix ] Gix global nav mobile mode
[ G3 ][ Other ] Add CSS variable --vk-color-primary-vivid
[ G3 ][ Design Specification Change ] Add Core Button Block hover color
[ G3 ][ Design Specification Change ] margin tuning of html tag
v14.0.12 ( Beta Release )
[ Bug fix ] Fix Starter Content Menu not refrected
v14.0.11 ( Beta Release )
[ Bug fix ] Fix Generation judgement
v14.0.10 ( Beta Release )
[ G3 ][ Other ] Cope with WooCommerce
[ G3 ][ Specification Change ] Add home icon to breadcrumb
[ G3 ][ Design Bug fix ] Fix sidebar normal post list on xs window.
v14.0.9 ( Beta Release )
[ G3 ][ Specification Change ] Change array name of skin specific js
v14.0.8 ( Beta Release )
[ G3 ][ Design Bug fix ] Fix scrolled g-nav margin on windows
[ G3 ][ Design Bug fix ] Fix Editor CSS not refrected
[ G3 ][ Design Bug fix ] Fix scrolled g-nav bgcolor
v14.0.7 ( Beta Release )
[ G3 ][ Design Bug fix ] Footer nav on mobile screen
[ G3 ][ Design Bug fix ] Fix mobile fix nav covered footer bottom
v14.0.6 ( Beta Release )
[ G3 ][ Design Bug fix ] Fix slide text size on mobile
[ G3 ][ Add function ] Add Slider rest time
[ G3 ][ Bug fix ] ReFix Slider (cope with VK Blocks Pro 1.1.0)
v14.0.5 ( Beta Release )
[ G3 ][ Bug fix ] Fix Slider (cope with VK Blocks Pro 1.1.0)
v14.0.4 ( Beta Release )
[ Origin III ][ Design Bug fix ] Fix cope with section base and full content_width
[ Origin III ][ Design Bug fix ] comment title size
[ Origin III ][ Design Bug fix ] Side title add nowrap
[ Origin III ][ Design Bug fix ] Fix Page header title css under set the ancestor display ( from pro )
[ Origin III ][ Design Bug fix ] Fix scroll-x on windows
[ Origin III ][ Design Bug fix ] Fix Slider image margin
[ Origin III ][ Design Bug fix ] Fix iOS search button
v14.0.3 ( Beta Release )
Add Lightning Generation 3
v13.8.12
[ Bug fix ] Fix inner block width(padding) bug.
v13.8.11
[ Bug fix ] Fix inner block width(padding) bug.
v13.8.10
[ Bug fix ][ mobile nav ] fix image css path (//) only
[ Other ][ edit screen ] cope with 5.7
v13.8.9
[ Bug fix ][ WooCommerce ] Fix Breadcrumb shop top name
v13.8.8
[ Bug fix ] Fix Editor screen width
v13.8.7
[ Bug fix ] Slide Default Title
v13.8.6
[ Bug fix ] Delete fron page default column setting
v13.8.5
[ Add action hook ] some point in pages
[ Other ] Tuning of Starter content load function.
v13.8.4
[ Other ] Reload Starter content
v13.8.3
[ Other ] Add Starter initial
[ Other ] Remove Starter content
v13.8.2
[ Bug fix ] Fix Starter customize initial
v13.8.1
[ Other ] Fix Starter content
v13.8.0
[ Specification Change ] Editor screen edit width tuning
[ Specification Change ] Slider Text size tuning
[ Bug fix ] Fix cover block and group block inner container width
[ Other ] Add starter content
v13.7.2
[ Bug fix ] Fix js of slider fix
v13.7.1
[ Bug fix ] Fix slider customize icon can not click
v13.7.0
[ Specification Change ] Fix slider link area bug
v13.6.0
[ Specification Change ] Add RSS Block Style
v13.5.5
[ bug fix ] unify header logo font-weight.
v13.5.5
[ bug fix ] fix post type judgement on bbPress search result page.
v13.5.1
[ Design bug fix ] Fix font size default post list title
v13.5.0
[ Add Function ][ Mobile Nav ] Add setting of button position and slide direction
[ Specification Change ] update vk-post component
v13.4.2
[ Bug fix ][ OriginII ] fix in case of 13.4 appear vain border bottom
v13.4.1
[ Bug fix ][ OriginII ] fix in case of 13.4 appear vain margin bottom
v13.4.0
[ Specification Change ][ BreadCrumb ] When display is_page that dont display taxonomies to breadcrumb
[ Specification Change ] Change template structure in content.php and so on
v13.3.1
[ Bug fix ] Cope with before WP 5.0
v13.3.0
[ Specification Change ][ Post Component ] cope with post author display
[ Add function ][ Layout setting ] cope with author archive layout
v13.2.0
[ Specification Change ][ Author archive ] change archive title display specification.
v13.1.3
[ Specification Change ] Load Term Color on init
v13.1.2
* [ Design Bug fix ] Fixed a design bug in .vk_outer-width-full in .mainSection-base-on
v13.1.1
* [ Design Bug fix ] Slide text bug fix ( cope with no caption )
v13.1.0
* [ Desigin tuning ][ bbPress ] Design adjustments for bbPress
v13.0.0
* [ Add function ] Add control of Page header and breadcrumb
* [ Bug fix ][ breadcrumb ] cope with polylang
v12.10.2
* [ Bug fix ][ CSS Optimize ] Woo Preload bug fix
v12.10.1
* [ Specification Change ][ CSS Optimize ] default preload off / exclude wooCommerce preload
* [ Add function ][ CSS Optimize ] Add exclude handles
v12.10.0
* [ Specification Change ][ CSS Optimize ] Change to common setting
v12.9.1
* [ Bug fix ] Can not select css preload
v12.9.0
* [ Add function ] Add CSS all optimize ( preload )
v12.8.3
* [ Design bug fix ] fix post media loop item border
v12.8.2
* [ Design bug fix ][ tree shaking ][ card ] exclude imageRound and no-border
* [ bug fix ][ search result ] fix layout bug
v12.8.1
* [ bug fix ][ breadcrumb ] fix and add test
v12.8.0
* [ bug fix ][ breadcrumb ] fix and add test
v12.7.0
* [ Specification Change ] Change search result title on search result page in case of no keyword
* [ Specification Change ] Don't display archive title and archive description on search result page
* [ Design bug fix ][ woo ] login screen column
* [ Design bug fix ][ ExUnit Child page list widget ] fix hide bug at unactive child page
v12.6.1
* [ Design Bug fix ] Page-link Block Add css
v12.6.0
* [ Specification Change / Bug fix ][ WooCommerce ] cope with shop page layout
* [ Specification Change / Bug fix ][ Download Manager ] item design tuning
v12.5.0
* [ Delete function ] comment setting( since 12.0.0 )
v12.4.0
* [ Design tuning ] Add search block design
* [ Specification Change ] content template cope with page slug
v12.3.2
* [ Bug fix ] Card tree shaking 3
v12.3.1
* [ Bug fix ] Card tree shaking 2
v12.2.1
* [ Bug fix ] Key color do not refrect
* [ Bug fix ] Card tree shaking
v12.2.0
* [ Specification Change ][ CSS optimize ] Abolition css preload
* [ Specification Change ] update vk components ( text list title tag h5 -> p )
* [ Specification Change ][ FooterMenu / Footer Widget ] In case of no menu or no widget that change to don't display empty tags.