Skip to content

Commit 4f72a15

Browse files
authored
Merge pull request #2999 from gocodebox/dev
Release 9.0.5
2 parents 21ace60 + 67e1e9d commit 4f72a15

File tree

7 files changed

+44
-36
lines changed

7 files changed

+44
-36
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
LifterLMS Changelog
22
===================
33

4+
v9.0.5 - 2025-08-25
5+
-------------------
6+
7+
##### Bug Fixes
8+
9+
+ Fix to allow checkout with UK and several other countries with no states/provinces/regions/areas. [#2997](https://github.com/gocodebox/lifterlms/issues/2997)
10+
11+
412
v9.0.4 - 2025-08-19
513
-------------------
614

class-lifterlms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class LifterLMS {
3434
*
3535
* @var string
3636
*/
37-
public $version = '9.0.4';
37+
public $version = '9.0.5';
3838

3939
/**
4040
* LLMS_Assets instance

languages/countries-address-info.php

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
),
4949
'AF' => array(
5050
'city' => __( 'City', 'lifterlms' ),
51-
'state' => __( 'State / Region', 'lifterlms' ),
51+
'state' => false,
5252
'postcode' => __( 'Postal code', 'lifterlms' ),
5353
),
5454
'AG' => array(
@@ -93,7 +93,7 @@
9393
),
9494
'AT' => array(
9595
'city' => __( 'City', 'lifterlms' ),
96-
'state' => __( 'State / Region', 'lifterlms' ),
96+
'state' => false,
9797
'postcode' => __( 'Postal code', 'lifterlms' ),
9898
),
9999
'AU' => array(
@@ -133,7 +133,7 @@
133133
),
134134
'BE' => array(
135135
'city' => __( 'City', 'lifterlms' ),
136-
'state' => __( 'State / Region', 'lifterlms' ),
136+
'state' => false,
137137
'postcode' => __( 'Postal code', 'lifterlms' ),
138138
),
139139
'BF' => array(
@@ -148,12 +148,12 @@
148148
),
149149
'BH' => array(
150150
'city' => __( 'City', 'lifterlms' ),
151-
'state' => __( 'State / Region', 'lifterlms' ),
151+
'state' => false,
152152
'postcode' => __( 'Postal code', 'lifterlms' ),
153153
),
154154
'BI' => array(
155155
'city' => __( 'City', 'lifterlms' ),
156-
'state' => __( 'State / Region', 'lifterlms' ),
156+
'state' => false,
157157
'postcode' => false,
158158
),
159159
'BJ' => array(
@@ -313,7 +313,7 @@
313313
),
314314
'CZ' => array(
315315
'city' => __( 'City', 'lifterlms' ),
316-
'state' => __( 'State / Region', 'lifterlms' ),
316+
'state' => false,
317317
'postcode' => __( 'Postal code', 'lifterlms' ),
318318
),
319319
'DE' => array(
@@ -328,7 +328,7 @@
328328
),
329329
'DK' => array(
330330
'city' => __( 'City', 'lifterlms' ),
331-
'state' => __( 'State / Region', 'lifterlms' ),
331+
'state' => false,
332332
'postcode' => __( 'Postal code', 'lifterlms' ),
333333
),
334334
'DM' => array(
@@ -353,7 +353,7 @@
353353
),
354354
'EE' => array(
355355
'city' => __( 'City', 'lifterlms' ),
356-
'state' => __( 'State / Region', 'lifterlms' ),
356+
'state' => false,
357357
'postcode' => __( 'Postal code', 'lifterlms' ),
358358
),
359359
'EG' => array(
@@ -378,12 +378,12 @@
378378
),
379379
'ET' => array(
380380
'city' => __( 'City', 'lifterlms' ),
381-
'state' => __( 'State / Region', 'lifterlms' ),
381+
'state' => false,
382382
'postcode' => __( 'Postal code', 'lifterlms' ),
383383
),
384384
'FI' => array(
385385
'city' => __( 'City', 'lifterlms' ),
386-
'state' => __( 'State / Region', 'lifterlms' ),
386+
'state' => false,
387387
'postcode' => __( 'Postal code', 'lifterlms' ),
388388
),
389389
'FJ' => array(
@@ -408,7 +408,7 @@
408408
),
409409
'FR' => array(
410410
'city' => __( 'City', 'lifterlms' ),
411-
'state' => __( 'State / Region', 'lifterlms' ),
411+
'state' => false,
412412
'postcode' => __( 'Postal code', 'lifterlms' ),
413413
),
414414
'GA' => array(
@@ -418,7 +418,7 @@
418418
),
419419
'GB' => array(
420420
'city' => __( 'Town / City', 'lifterlms' ),
421-
'state' => __( 'County', 'lifterlms' ),
421+
'state' => false,
422422
'postcode' => __( 'Postcode', 'lifterlms' ),
423423
),
424424
'GD' => array(
@@ -548,7 +548,7 @@
548548
),
549549
'IL' => array(
550550
'city' => __( 'City', 'lifterlms' ),
551-
'state' => __( 'State / Region', 'lifterlms' ),
551+
'state' => false,
552552
'postcode' => __( 'Postal code', 'lifterlms' ),
553553
),
554554
'IM' => array(
@@ -578,7 +578,7 @@
578578
),
579579
'IS' => array(
580580
'city' => __( 'City', 'lifterlms' ),
581-
'state' => __( 'State / Region', 'lifterlms' ),
581+
'state' => false,
582582
'postcode' => __( 'Postal code', 'lifterlms' ),
583583
),
584584
'IT' => array(
@@ -643,12 +643,12 @@
643643
),
644644
'KR' => array(
645645
'city' => __( 'City', 'lifterlms' ),
646-
'state' => __( 'Province', 'lifterlms' ),
646+
'state' => false,
647647
'postcode' => __( 'Postal code', 'lifterlms' ),
648648
),
649649
'KW' => array(
650650
'city' => __( 'City', 'lifterlms' ),
651-
'state' => __( 'State', 'lifterlms' ),
651+
'state' => false,
652652
'postcode' => __( 'Postal code', 'lifterlms' ),
653653
),
654654
'KY' => array(
@@ -668,7 +668,7 @@
668668
),
669669
'LB' => array(
670670
'city' => __( 'City', 'lifterlms' ),
671-
'state' => __( 'State / Region', 'lifterlms' ),
671+
'state' => false,
672672
'postcode' => __( 'Postal code', 'lifterlms' ),
673673
),
674674
'LC' => array(
@@ -678,12 +678,12 @@
678678
),
679679
'LI' => array(
680680
'city' => __( 'City', 'lifterlms' ),
681-
'state' => __( 'State / Region', 'lifterlms' ),
681+
'state' => false,
682682
'postcode' => __( 'Postal code', 'lifterlms' ),
683683
),
684684
'LK' => array(
685685
'city' => __( 'City', 'lifterlms' ),
686-
'state' => __( 'State / Region', 'lifterlms' ),
686+
'state' => false,
687687
'postcode' => __( 'Postal code', 'lifterlms' ),
688688
),
689689
'LR' => array(
@@ -703,7 +703,7 @@
703703
),
704704
'LU' => array(
705705
'city' => __( 'City', 'lifterlms' ),
706-
'state' => __( 'State / Region', 'lifterlms' ),
706+
'state' => false,
707707
'postcode' => __( 'Postal code', 'lifterlms' ),
708708
),
709709
'LV' => array(
@@ -863,12 +863,12 @@
863863
),
864864
'NL' => array(
865865
'city' => __( 'City', 'lifterlms' ),
866-
'state' => __( 'State / Region', 'lifterlms' ),
866+
'state' => false,
867867
'postcode' => __( 'Postal code', 'lifterlms' ),
868868
),
869869
'NO' => array(
870870
'city' => __( 'City', 'lifterlms' ),
871-
'state' => __( 'State / Region', 'lifterlms' ),
871+
'state' => false,
872872
'postcode' => __( 'Postal code', 'lifterlms' ),
873873
),
874874
'NP' => array(
@@ -928,7 +928,7 @@
928928
),
929929
'PL' => array(
930930
'city' => __( 'City', 'lifterlms' ),
931-
'state' => __( 'State / Region', 'lifterlms' ),
931+
'state' => false,
932932
'postcode' => __( 'Postal code', 'lifterlms' ),
933933
),
934934
'PM' => array(
@@ -953,7 +953,7 @@
953953
),
954954
'PT' => array(
955955
'city' => __( 'City', 'lifterlms' ),
956-
'state' => __( 'State / Region', 'lifterlms' ),
956+
'state' => false,
957957
'postcode' => __( 'Postal code', 'lifterlms' ),
958958
),
959959
'PW' => array(
@@ -993,7 +993,7 @@
993993
),
994994
'RW' => array(
995995
'city' => __( 'City', 'lifterlms' ),
996-
'state' => __( 'State / Region', 'lifterlms' ),
996+
'state' => false,
997997
'postcode' => false,
998998
),
999999
'SA' => array(
@@ -1018,12 +1018,12 @@
10181018
),
10191019
'SE' => array(
10201020
'city' => __( 'City', 'lifterlms' ),
1021-
'state' => __( 'State / Region', 'lifterlms' ),
1021+
'state' => false,
10221022
'postcode' => __( 'Postal code', 'lifterlms' ),
10231023
),
10241024
'SG' => array(
10251025
'city' => false,
1026-
'state' => __( 'State / Region', 'lifterlms' ),
1026+
'state' => false,
10271027
'postcode' => __( 'Postal code', 'lifterlms' ),
10281028
),
10291029
'SH' => array(
@@ -1033,7 +1033,7 @@
10331033
),
10341034
'SI' => array(
10351035
'city' => __( 'City', 'lifterlms' ),
1036-
'state' => __( 'State / Region', 'lifterlms' ),
1036+
'state' => false,
10371037
'postcode' => __( 'Postal code', 'lifterlms' ),
10381038
),
10391039
'SJ' => array(
@@ -1043,7 +1043,7 @@
10431043
),
10441044
'SK' => array(
10451045
'city' => __( 'City', 'lifterlms' ),
1046-
'state' => __( 'State / Region', 'lifterlms' ),
1046+
'state' => false,
10471047
'postcode' => __( 'Postal code', 'lifterlms' ),
10481048
),
10491049
'SL' => array(
@@ -1238,7 +1238,7 @@
12381238
),
12391239
'VN' => array(
12401240
'city' => __( 'City', 'lifterlms' ),
1241-
'state' => __( 'State', 'lifterlms' ),
1241+
'state' => false,
12421242
'postcode' => __( 'Postal code', 'lifterlms' ),
12431243
),
12441244
'VU' => array(

languages/states.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* Country codes and states (or province) names should follow the Unicode CLDR recommendation (https://cldr.unicode.org/translation/displaynames/countryregion-territory-names).
1010
*
11-
* Countries defined with empty arrays have no states. These should also be defined in class-wc-countries.php to mark the state field as not required and hidden.
11+
* Countries defined with empty arrays have no states. These should also be defined in countries-address-info.php to mark the state field as not required and hidden.
1212
*
1313
* @package WooCommerce\i18n
1414
* @version 3.8.0

lifterlms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: LifterLMS
1111
* Plugin URI: https://lifterlms.com/
1212
* Description: Complete e-learning platform to sell online courses, protect lessons, offer memberships, and quiz students. WP Learning Management System.
13-
* Version: 9.0.4
13+
* Version: 9.0.5
1414
* Author: LifterLMS
1515
* Author URI: https://lifterlms.com/
1616
* Text Domain: lifterlms

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lifterlms",
3-
"version": "9.0.4",
3+
"version": "9.0.5",
44
"description": "LifterLMS by codeBOX",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)