2 changes: 1 addition & 1 deletion assets/css/style-wizard.min.css
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -2,7 +2,7 @@
"name": "codeinwp/wp-maintenance-mode",
"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.",
"type": "wordpress-plugin",
"version": "2.6.0",
"version": "2.6.1",
"license": "GPL-2.0+",
"homepage": "https://themeisle.com",
"support": {
Expand Down
8 changes: 8 additions & 0 deletions includes/classes/wp-maintenance-mode-admin.php
Expand Up @@ -902,6 +902,14 @@ public function add_notices() {
$screen = get_current_screen();
$notices = array();

// show this notice if user had the plugin installed on the moment of rebranding
if ( ThemeisleSDK\Product::get( WPMM_FILE )->get_install_time() < strtotime( '2022-11-02' ) ) {
$notices['rebrand'] = array(
'class' => 'notice wpmm_notices notice-success is-dismissible',
'msg' => __( 'WP Maintenance Mode is now LightStart. Enjoy the same features, more templates and new landing pages building compatibility.', 'wp-maintenance-mode' ),
);
}

if ( $this->plugin_screen_hook_suffix !== $screen->id ) {
// notice if plugin is activated
if (
Expand Down
2 changes: 1 addition & 1 deletion includes/classes/wp-maintenance-mode.php
Expand Up @@ -8,7 +8,7 @@

class WP_Maintenance_Mode {

const VERSION = '2.6.0';
const VERSION = '2.6.1';

const MAINTENANCE = 'maintenance';
const COMING_SOON = 'coming-soon';
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "wp-maintenance-mode",
"version": "2.6.0",
"version": "2.6.1",
"author": "Themeisle",
"homepage": "https://themeisle.com/",
"license": "GPL-3.0+",
Expand Down
24 changes: 16 additions & 8 deletions readme.txt
Expand Up @@ -6,27 +6,27 @@ Author: Themeisle
Author URI: https://themeisle.com/
Tags: maintenance mode, admin, administration, unavailable, coming soon, multisite, landing page, under construction, contact form, subscribe, countdown
Requires at least: 3.5
Tested up to: 6.0
Stable tag: 2.6.0
Tested up to: 6.1
Stable tag: 2.6.1
Requires PHP: 5.6
License: GPL-2.0+

Adds a splash page to your site that lets visitors know your site is down for maintenance. It's perfect for a coming soon page. The new Bot functionality is here!
Easy Drag & Drop Page Builder that adds a splash page to your site that it's perfect for a coming soon page, maintenance or landing page.

== Description ==

Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, or add a coming soon page for a new website. User with admin rights gets full access to the blog including the front end.
Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, add a coming soon page for a new website or create a landing page for an existing site. User with admin rights gets full access to the blog including the front end.

Activate the plugin and your blog is in maintenance-mode, works and only registered users with enough rights can see the front end. You can use a date with a countdown timer for visitor information or set a value and unit for information.

Also works with WordPress Multisite installs (each blog from the network has its own maintenance settings).

= Features =

* Fully customizable (change colors, texts and backgrounds);
* Subscription form (export emails to .csv file);
* Countdown timer (remaining time);
* Contact form (receive emails from visitors);
* Fully customizable (change colors, texts and backgrounds).
* Subscription form (export emails to .csv file).
* Countdown timer (remaining time).
* Contact form (receive emails from visitors).
* Coming soon page;
* Landing page templates;
* WordPress multisite;
Expand All @@ -51,6 +51,7 @@ Developed by [Themeisle](https://themeisle.com)
If you like this plugin, then consider checking out our other projects:

* <a href="https://optimole.com/">Optimole</a> - Optimole is your all-in-one image optimization solution for WordPress & beyond.
* <a href="https://wpshout.com/">WPShout</a> - In-Depth WordPress Tutorials for Developers
* <a href="https://revive.social/">Revive Social</a> - Revive Old Posts helps you keep your content alive and in front the audiences that matter.
* <a href="https://www.codeinwp.com/">CodeinWP</a> - CodeinWP stands for all-things-WordPress. From web design to freelancing and from development to business, your questions are covered.
* <a href="https://domainwheel.com">DomainWheel</a> - Free Short Website name generator, with the help of AI, for instant ideas.
Expand Down Expand Up @@ -91,6 +92,13 @@ Notice: `wp-cron.php` is excluded by default.

== Changelog ==

##### [Version 2.6.1](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.6.0...v2.6.1) (2022-11-03)

* Add a notice to announce the rebrand of the plugin




#### [Version 2.6.0](https://github.com/Codeinwp/wp-maintenance-mode/compare/v2.5.4...v2.6.0) (2022-11-02)

* Adds Landing pages templates
Expand Down
3 changes: 2 additions & 1 deletion wp-maintenance-mode.php
Expand Up @@ -4,7 +4,7 @@
*
* Plugin Name: LightStart - Maintenance Mode, Coming Soon and Landing Page Builder
* 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.
* Version: 2.6.0
* Version: 2.6.1
* Author: Themeisle
* Author URI: https://themeisle.com/
* Twitter: themeisle
Expand All @@ -23,6 +23,7 @@
* DEFINE PATHS
*/
define( 'WPMM_PATH', plugin_dir_path( __FILE__ ) );
define( 'WPMM_FILE', __FILE__ );
define( 'WPMM_CLASSES_PATH', WPMM_PATH . 'includes/classes/' );
define( 'WPMM_FUNCTIONS_PATH', WPMM_PATH . 'includes/functions/' );
define( 'WPMM_LANGUAGES_PATH', basename( WPMM_PATH ) . '/languages/' );
Expand Down