Skip to content

Commit 9874709

Browse files
committed
chore(release): 2.6.23
##### [Version 2.6.23](v2.6.22...v2.6.23) (2026-07-29) - Strengthened the automated testing that runs behind the scenes, helping catch problems earlier and making future releases more reliable - Fixed an existing page selected as the maintenance page being left private and returning a 404 after maintenance mode was turned off, and its content being overwritten when a template was applied - Fixed the chat bot on small screens, where the avatar was hidden and the chat box did not fit the phone display - Fixed template imports staying stuck on Importing when the request failed — the error is now shown and the import can be retried without reloading the page - Fixed a parse error that broke the setup wizard on PHP 7.1 and 7.2 - Updated dependencies
1 parent 45f6c33 commit 9874709

7 files changed

Lines changed: 39 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
##### [Version 2.6.23](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.22...v2.6.23) (2026-07-29)
2+
3+
- Strengthened the automated testing that runs behind the scenes, helping catch problems earlier and making future releases more reliable
4+
- Fixed an existing page selected as the maintenance page being left private and returning a 404 after maintenance mode was turned off, and its content being overwritten when a template was applied
5+
- Fixed the chat bot on small screens, where the avatar was hidden and the chat box did not fit the phone display
6+
- Fixed template imports staying stuck on Importing when the request failed — the error is now shown and the import can be retried without reloading the page
7+
- Fixed a parse error that broke the setup wizard on PHP 7.1 and 7.2
8+
- Updated dependencies
9+
110
##### [Version 2.6.22](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.21...v2.6.22) (2026-05-19)
211

312
- Updated dependencies

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
**Tags:** maintenance mode, coming soon, landing page, splash page, under construction
99
**Requires at least:** 4.7
1010
**Tested up to:** 7.0
11-
**Stable tag:** 2.6.22
11+
**Stable tag:** 2.6.23
1212
**Requires PHP:** 7.1
1313
**License:** GPL-2.0+
1414

@@ -99,6 +99,18 @@ Please follow the reporting protocols outlined on our [Security Page](https://th
9999

100100
## Changelog ##
101101

102+
##### [Version 2.6.23](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.22...v2.6.23) (2026-07-29)
103+
104+
- Strengthened the automated testing that runs behind the scenes, helping catch problems earlier and making future releases more reliable
105+
- Fixed an existing page selected as the maintenance page being left private and returning a 404 after maintenance mode was turned off, and its content being overwritten when a template was applied
106+
- Fixed the chat bot on small screens, where the avatar was hidden and the chat box did not fit the phone display
107+
- Fixed template imports staying stuck on Importing when the request failed — the error is now shown and the import can be retried without reloading the page
108+
- Fixed a parse error that broke the setup wizard on PHP 7.1 and 7.2
109+
- Updated dependencies
110+
111+
112+
113+
102114
##### [Version 2.6.22](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.21...v2.6.22) (2026-05-19)
103115

104116
- Updated dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codeinwp/wp-maintenance-mode",
33
"description": "Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.",
44
"type": "wordpress-plugin",
5-
"version": "2.6.22",
5+
"version": "2.6.23",
66
"license": "GPL-2.0+",
77
"homepage": "https://themeisle.com",
88
"support": {

includes/classes/wp-maintenance-mode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class WP_Maintenance_Mode {
1010

11-
const VERSION = '2.6.22';
11+
const VERSION = '2.6.23';
1212

1313
const MAINTENANCE = 'maintenance';
1414
const COMING_SOON = 'coming-soon';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-maintenance-mode",
3-
"version": "2.6.22",
3+
"version": "2.6.23",
44
"author": "Themeisle",
55
"homepage": "https://themeisle.com/",
66
"license": "GPL-3.0+",

readme.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Author URI: https://themeisle.com/
88
Tags: maintenance mode, coming soon, landing page, splash page, under construction
99
Requires at least: 4.7
1010
Tested up to: 7.0
11-
Stable tag: 2.6.22
11+
Stable tag: 2.6.23
1212
Requires PHP: 7.1
1313
License: GPL-2.0+
1414

@@ -99,6 +99,18 @@ Please follow the reporting protocols outlined on our [Security Page](https://th
9999

100100
== Changelog ==
101101

102+
##### [Version 2.6.23](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.22...v2.6.23) (2026-07-29)
103+
104+
- Strengthened the automated testing that runs behind the scenes, helping catch problems earlier and making future releases more reliable
105+
- Fixed an existing page selected as the maintenance page being left private and returning a 404 after maintenance mode was turned off, and its content being overwritten when a template was applied
106+
- Fixed the chat bot on small screens, where the avatar was hidden and the chat box did not fit the phone display
107+
- Fixed template imports staying stuck on Importing when the request failed — the error is now shown and the import can be retried without reloading the page
108+
- Fixed a parse error that broke the setup wizard on PHP 7.1 and 7.2
109+
- Updated dependencies
110+
111+
112+
113+
102114
##### [Version 2.6.22](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.21...v2.6.22) (2026-05-19)
103115

104116
- Updated dependencies

wp-maintenance-mode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Plugin Name: LightStart - Maintenance Mode, Coming Soon and Landing Page Builder
66
* Description: Adds a splash page to your site that lets visitors know your site is down for maintenance. It's perfect for a coming soon or landing page.
7-
* Version: 2.6.22
7+
* Version: 2.6.23
88
* Author: Themeisle
99
* Author URI: https://themeisle.com/
1010
* Twitter: themeisle

0 commit comments

Comments
 (0)