Skip to content

Commit 1499ce3

Browse files
authored
Merge pull request #3021 from gocodebox/dev
Release 9.0.7
2 parents 3b0ed04 + b8730c0 commit 1499ce3

File tree

7 files changed

+115
-105
lines changed

7 files changed

+115
-105
lines changed

CHANGELOG.md

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

4+
v9.0.7 - 2025-09-16
5+
-------------------
6+
7+
##### Bug Fixes
8+
9+
+ Additional check to avoid conflict with certain plugins alongside the Classic Editor. [#3012](https://github.com/gocodebox/lifterlms/issues/3012)
10+
+ Fixing checkout for countries that have no states/provinces/regions listed.
11+
12+
413
v9.0.6 - 2025-08-28
514
-------------------
615

assets/js/private/llms-metaboxes.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@
460460
const canEditPost =
461461
wp?.data &&
462462
typeof wp.data.dispatch === 'function' &&
463+
wp.data.dispatch( 'core/editor' ) !== null &&
463464
typeof wp.data.dispatch( 'core/editor' ).editPost === 'function';
464465

465466
if ( ! canEditPost ) {

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.6';
37+
public $version = '9.0.7';
3838

3939
/**
4040
* LLMS_Assets instance

0 commit comments

Comments
 (0)