Version Description
- Compatible with wordpress 4.9.8
Download this release
Release Info
Developer | chandrashekharsahu |
Plugin | Site Offline Or Coming Soon Or Maintenance Mode |
Version | 1.2.9 |
Comparing to | |
See all releases |
Code changes from version 1.2.8 to 1.2.9
- readme.txt +8 -2
- site-offline.php +3 -3
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: chandrashekharsahu
|
|
3 |
Donate link: http://www.freehtmldesigns.com
|
4 |
Tags: admin, coming soon, coming soon page, coming soon wp, coming soon wordPress plugin, construction, countdown timer, email, gmail, landing page, launch, launch page, maintenance, maintenance mode, message, newsletter, notify, offline, offline mode, offline, page, preview, site offline, site is offline, website offline, subscriber, ultimate coming soon page, ultimate landing page, unavailable, under construction, underconstruction, under construction page, wordpress coming soon, wordpress landing page, wordpress maintenance mode, wordpress maintenance mode plugin, wordpress under construction, wordpress under construction page
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -136,6 +136,12 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
136 |
|
137 |
|
138 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
= 1.2.7 =
|
140 |
* Minor Bug Resolved
|
141 |
|
3 |
Donate link: http://www.freehtmldesigns.com
|
4 |
Tags: admin, coming soon, coming soon page, coming soon wp, coming soon wordPress plugin, construction, countdown timer, email, gmail, landing page, launch, launch page, maintenance, maintenance mode, message, newsletter, notify, offline, offline mode, offline, page, preview, site offline, site is offline, website offline, subscriber, ultimate coming soon page, ultimate landing page, unavailable, under construction, underconstruction, under construction page, wordpress coming soon, wordpress landing page, wordpress maintenance mode, wordpress maintenance mode plugin, wordpress under construction, wordpress under construction page
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.2.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
136 |
|
137 |
|
138 |
== Changelog ==
|
139 |
+
= 1.2.9 =
|
140 |
+
* Compatible with wordpress 4.9.8
|
141 |
+
|
142 |
+
= 1.2.8 =
|
143 |
+
* Minor Bug Resolved
|
144 |
+
|
145 |
= 1.2.7 =
|
146 |
* Minor Bug Resolved
|
147 |
|
site-offline.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Site Offline
|
4 |
-
* Version: 1.2.
|
5 |
* Description: Site Offline plugin manage your WordPress website when it's under construction or maintenance mode or coming soon.
|
6 |
* Author: Chandra Shekhar Sahu
|
7 |
* Author URI: http://www.freehtmldesigns.com
|
@@ -33,7 +33,7 @@ function sahu_site_offline_wp_menu()
|
|
33 |
//plugin menu name for Site Offline plugin
|
34 |
$menu = add_menu_page('Site Offline', 'Site Offline','administrator', 'sahu_site_offline_wp','sahu_site_offline_content','dashicons-welcome-view-site');
|
35 |
|
36 |
-
//
|
37 |
add_action( 'admin_print_styles-' . $menu, 'sahu_site_offline_wp_script' );
|
38 |
}
|
39 |
require_once('functions/script.php');
|
@@ -82,7 +82,7 @@ function sahu_so_launch()
|
|
82 |
}
|
83 |
add_action( 'template_redirect', 'sahu_so_launch' );
|
84 |
|
85 |
-
//Live Preview code
|
86 |
if ( (isset($_GET['sahu_cs_preview']) && $_GET['sahu_cs_preview'] == 'true') )
|
87 |
{
|
88 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Site Offline
|
4 |
+
* Version: 1.2.9
|
5 |
* Description: Site Offline plugin manage your WordPress website when it's under construction or maintenance mode or coming soon.
|
6 |
* Author: Chandra Shekhar Sahu
|
7 |
* Author URI: http://www.freehtmldesigns.com
|
33 |
//plugin menu name for Site Offline plugin
|
34 |
$menu = add_menu_page('Site Offline', 'Site Offline','administrator', 'sahu_site_offline_wp','sahu_site_offline_content','dashicons-welcome-view-site');
|
35 |
|
36 |
+
//added hook to add styles and scripts for Site Offline admin page
|
37 |
add_action( 'admin_print_styles-' . $menu, 'sahu_site_offline_wp_script' );
|
38 |
}
|
39 |
require_once('functions/script.php');
|
82 |
}
|
83 |
add_action( 'template_redirect', 'sahu_so_launch' );
|
84 |
|
85 |
+
//Live Preview Viewing code
|
86 |
if ( (isset($_GET['sahu_cs_preview']) && $_GET['sahu_cs_preview'] == 'true') )
|
87 |
{
|
88 |
|