Version Description
- Remove banner from dashboard
Download this release
Release Info
Developer | grimmdude |
Plugin | underConstruction |
Version | 1.14 |
Comparing to | |
See all releases |
Code changes from version 1.13 to 1.14
- readme.txt +5 -2
- underConstruction.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: Jeremy Massel
|
3 |
Tags: construction, under construction, private, preview, security, coming soon
|
4 |
Requires at least: 2.7
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
Creates a 'Coming Soon' page that will show for all users who are not logged in
|
9 |
|
@@ -42,6 +42,9 @@ Sorry, I get a lot of questions. But visit the homepage for this plugin and leav
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
45 |
= 1.13 =
|
46 |
* Minor options page update
|
47 |
|
2 |
Contributors: Jeremy Massel
|
3 |
Tags: construction, under construction, private, preview, security, coming soon
|
4 |
Requires at least: 2.7
|
5 |
+
Tested up to: 4.3
|
6 |
+
Stable tag: 1.14
|
7 |
|
8 |
Creates a 'Coming Soon' page that will show for all users who are not logged in
|
9 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 1.14 =
|
46 |
+
* Remove banner from dashboard
|
47 |
+
|
48 |
= 1.13 =
|
49 |
* Minor options page update
|
50 |
|
underConstruction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Under Construction
|
4 |
Plugin URI: https://wordpress.org/plugins/underconstruction/
|
5 |
Description: Makes it so your site can only be accessed by users who log in. Useful for developing a site on a live server, without the world being able to see it
|
6 |
-
Version: 1.
|
7 |
Author: Noah Kagan
|
8 |
Author URI: http://SumoMe.com/
|
9 |
*/
|
@@ -378,5 +378,5 @@ add_filter('plugin_action_links', 'underConstructionPluginLinks', 10, 2);
|
|
378 |
add_action('wp_ajax_uc_get_ip_address', 'uc_get_ip_address');
|
379 |
|
380 |
add_option('underconstruction_global_notification', 1);
|
381 |
-
add_action( 'admin_notices', array($underConstructionPlugin, 'global_notice') );
|
382 |
register_deactivation_hook( __FILE__, array($underConstructionPlugin, 'plugin_deactivate') );
|
3 |
Plugin Name: Under Construction
|
4 |
Plugin URI: https://wordpress.org/plugins/underconstruction/
|
5 |
Description: Makes it so your site can only be accessed by users who log in. Useful for developing a site on a live server, without the world being able to see it
|
6 |
+
Version: 1.14
|
7 |
Author: Noah Kagan
|
8 |
Author URI: http://SumoMe.com/
|
9 |
*/
|
378 |
add_action('wp_ajax_uc_get_ip_address', 'uc_get_ip_address');
|
379 |
|
380 |
add_option('underconstruction_global_notification', 1);
|
381 |
+
//add_action( 'admin_notices', array($underConstructionPlugin, 'global_notice') );
|
382 |
register_deactivation_hook( __FILE__, array($underConstructionPlugin, 'plugin_deactivate') );
|