Version Description
- 2020/08/20
- bug fixes
Download this release
Release Info
| Developer | WebFactory |
| Plugin | |
| Version | 3.81 |
| Comparing to | |
| See all releases | |
Code changes from version 3.80 to 3.81
- readme.txt +5 -1
- themes/setup/index.php +58 -58
- themes/setup/style.css +110 -110
- under-construction.php +2 -2
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: coming soon page, under construction mode, under construction, under const
|
|
| 4 |
Requires at least: 4.0
|
| 5 |
Requires PHP: 5.2
|
| 6 |
Tested up to: 5.5
|
| 7 |
-
Stable tag: 3.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -138,6 +138,10 @@ Or if needed, upload manually;
|
|
| 138 |
|
| 139 |
== Changelog ==
|
| 140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
= 3.80 =
|
| 142 |
* 2020/06/17
|
| 143 |
* more cache handling improvements
|
| 4 |
Requires at least: 4.0
|
| 5 |
Requires PHP: 5.2
|
| 6 |
Tested up to: 5.5
|
| 7 |
+
Stable tag: 3.81
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 138 |
|
| 139 |
== Changelog ==
|
| 140 |
|
| 141 |
+
= 3.81 =
|
| 142 |
+
* 2020/08/20
|
| 143 |
+
* bug fixes
|
| 144 |
+
|
| 145 |
= 3.80 =
|
| 146 |
* 2020/06/17
|
| 147 |
* more cache handling improvements
|
themes/setup/index.php
CHANGED
|
@@ -1,58 +1,58 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*
|
| 3 |
-
* UnderConstructionPage
|
| 4 |
-
* Setup theme
|
| 5 |
-
* (c) WebFactory Ltd, 2015 - 2020
|
| 6 |
-
*/
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
// this is an include only WP file
|
| 10 |
-
if (!defined('ABSPATH')) {
|
| 11 |
-
die;
|
| 12 |
-
}
|
| 13 |
-
?>
|
| 14 |
-
<!DOCTYPE html>
|
| 15 |
-
<html lang="en">
|
| 16 |
-
<head>
|
| 17 |
-
<meta charset="utf-8">
|
| 18 |
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
| 19 |
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 20 |
-
<title>[title]</title>
|
| 21 |
-
<meta name="description" content="[description]" />
|
| 22 |
-
<meta name="generator" content="[generator]">
|
| 23 |
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
| 24 |
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
|
| 25 |
-
[head]
|
| 26 |
-
</head>
|
| 27 |
-
|
| 28 |
-
<body>
|
| 29 |
-
<div class="container top-container">
|
| 30 |
-
<div class="row display-table">
|
| 31 |
-
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
| 32 |
-
<h1>[heading1]</h1>
|
| 33 |
-
</div>
|
| 34 |
-
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
| 35 |
-
<div id="hero-image">
|
| 36 |
-
<img src="[theme-url]setup.png" alt="Site Setup is Under Way" title="Site Setup is Under Way">
|
| 37 |
-
</div>
|
| 38 |
-
</div>
|
| 39 |
-
</div>
|
| 40 |
-
</div>
|
| 41 |
-
|
| 42 |
-
<div class="container">
|
| 43 |
-
<div class="row">
|
| 44 |
-
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
| 45 |
-
<p class="content">[content]</p>
|
| 46 |
-
</div>
|
| 47 |
-
</div>
|
| 48 |
-
|
| 49 |
-
<div class="row" id="social">
|
| 50 |
-
<div class="col-xs-12 col-md-12 col-lg-12">
|
| 51 |
-
[social-icons]
|
| 52 |
-
</div>
|
| 53 |
-
</div>
|
| 54 |
-
|
| 55 |
-
</div>
|
| 56 |
-
[footer]
|
| 57 |
-
</body>
|
| 58 |
-
</html>
|
| 1 |
+
<?php
|
| 2 |
+
/*
|
| 3 |
+
* UnderConstructionPage
|
| 4 |
+
* Setup theme
|
| 5 |
+
* (c) WebFactory Ltd, 2015 - 2020
|
| 6 |
+
*/
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
// this is an include only WP file
|
| 10 |
+
if (!defined('ABSPATH')) {
|
| 11 |
+
die;
|
| 12 |
+
}
|
| 13 |
+
?>
|
| 14 |
+
<!DOCTYPE html>
|
| 15 |
+
<html lang="en">
|
| 16 |
+
<head>
|
| 17 |
+
<meta charset="utf-8">
|
| 18 |
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
| 19 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 20 |
+
<title>[title]</title>
|
| 21 |
+
<meta name="description" content="[description]" />
|
| 22 |
+
<meta name="generator" content="[generator]">
|
| 23 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
| 24 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
|
| 25 |
+
[head]
|
| 26 |
+
</head>
|
| 27 |
+
|
| 28 |
+
<body>
|
| 29 |
+
<div class="container top-container">
|
| 30 |
+
<div class="row display-table">
|
| 31 |
+
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
| 32 |
+
<h1>[heading1]</h1>
|
| 33 |
+
</div>
|
| 34 |
+
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
| 35 |
+
<div id="hero-image">
|
| 36 |
+
<img src="[theme-url]setup.png" alt="Site Setup is Under Way" title="Site Setup is Under Way">
|
| 37 |
+
</div>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
|
| 42 |
+
<div class="container">
|
| 43 |
+
<div class="row">
|
| 44 |
+
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
| 45 |
+
<p class="content">[content]</p>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<div class="row" id="social">
|
| 50 |
+
<div class="col-xs-12 col-md-12 col-lg-12">
|
| 51 |
+
[social-icons]
|
| 52 |
+
</div>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
</div>
|
| 56 |
+
[footer]
|
| 57 |
+
</body>
|
| 58 |
+
</html>
|
themes/setup/style.css
CHANGED
|
@@ -1,110 +1,110 @@
|
|
| 1 |
-
/*
|
| 2 |
-
* UnderConstructionPage
|
| 3 |
-
* Setup theme CSS
|
| 4 |
-
* (c) WebFactory Ltd, 2015 - 2020
|
| 5 |
-
*/
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
html {
|
| 9 |
-
height: 100%;
|
| 10 |
-
padding: 0;
|
| 11 |
-
margin: 0;
|
| 12 |
-
}
|
| 13 |
-
|
| 14 |
-
body {
|
| 15 |
-
font-weight: 400;
|
| 16 |
-
font-size: 15px;
|
| 17 |
-
line-height: 120%;
|
| 18 |
-
color: #111111;
|
| 19 |
-
background: #ffc153;
|
| 20 |
-
padding: 0;
|
| 21 |
-
margin: 0;
|
| 22 |
-
height: 100%;
|
| 23 |
-
background-repeat: no-repeat;
|
| 24 |
-
background-attachment: fixed;
|
| 25 |
-
}
|
| 26 |
-
|
| 27 |
-
.top-container {
|
| 28 |
-
padding: 50px 0;
|
| 29 |
-
}
|
| 30 |
-
|
| 31 |
-
#hero-image {
|
| 32 |
-
text-align: center;
|
| 33 |
-
}
|
| 34 |
-
|
| 35 |
-
#hero-image img {
|
| 36 |
-
max-width: 80%;
|
| 37 |
-
}
|
| 38 |
-
|
| 39 |
-
.display-table {
|
| 40 |
-
display: table;
|
| 41 |
-
table-layout: fixed;
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
.display-cell {
|
| 45 |
-
display: table-cell;
|
| 46 |
-
vertical-align: middle;
|
| 47 |
-
float: none;
|
| 48 |
-
}
|
| 49 |
-
|
| 50 |
-
h1 {
|
| 51 |
-
font-size: 34px;
|
| 52 |
-
color: #e1632b;
|
| 53 |
-
font-family: "Nunito", sans-serif;
|
| 54 |
-
font-weight: 900;
|
| 55 |
-
margin: 20px 0 30px 0;
|
| 56 |
-
text-align: right;
|
| 57 |
-
}
|
| 58 |
-
|
| 59 |
-
.content {
|
| 60 |
-
text-align: center;
|
| 61 |
-
font-family: "Open Sans", sans-serif;
|
| 62 |
-
font-weight: 600;
|
| 63 |
-
}
|
| 64 |
-
|
| 65 |
-
#social {
|
| 66 |
-
text-align: center;
|
| 67 |
-
margin-top: 30px;
|
| 68 |
-
}
|
| 69 |
-
|
| 70 |
-
#social a i {
|
| 71 |
-
color: #111111;
|
| 72 |
-
margin: 10px;
|
| 73 |
-
box-sizing: content-box;
|
| 74 |
-
}
|
| 75 |
-
|
| 76 |
-
#social a:hover i {
|
| 77 |
-
color: #ffffff;
|
| 78 |
-
}
|
| 79 |
-
|
| 80 |
-
@media(max-width:767px) {
|
| 81 |
-
h1 {
|
| 82 |
-
font-size: 28px;
|
| 83 |
-
margin: 10px 0 30px 0;
|
| 84 |
-
}
|
| 85 |
-
#hero-image img {
|
| 86 |
-
max-width: 95%;
|
| 87 |
-
}
|
| 88 |
-
}
|
| 89 |
-
|
| 90 |
-
@media (max-width: 1200px) {
|
| 91 |
-
h1 {
|
| 92 |
-
text-align: center;
|
| 93 |
-
padding: 0 20px;
|
| 94 |
-
}
|
| 95 |
-
.display-table {
|
| 96 |
-
display: initial;
|
| 97 |
-
table-layout: auto;
|
| 98 |
-
}
|
| 99 |
-
.display-cell {
|
| 100 |
-
display: block;
|
| 101 |
-
vertical-align: middle;
|
| 102 |
-
float: none;
|
| 103 |
-
}
|
| 104 |
-
#hero-image img {
|
| 105 |
-
max-height: 250px
|
| 106 |
-
}
|
| 107 |
-
.top-container {
|
| 108 |
-
padding: 25px 0;
|
| 109 |
-
}
|
| 110 |
-
}
|
| 1 |
+
/*
|
| 2 |
+
* UnderConstructionPage
|
| 3 |
+
* Setup theme CSS
|
| 4 |
+
* (c) WebFactory Ltd, 2015 - 2020
|
| 5 |
+
*/
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
html {
|
| 9 |
+
height: 100%;
|
| 10 |
+
padding: 0;
|
| 11 |
+
margin: 0;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
body {
|
| 15 |
+
font-weight: 400;
|
| 16 |
+
font-size: 15px;
|
| 17 |
+
line-height: 120%;
|
| 18 |
+
color: #111111;
|
| 19 |
+
background: #ffc153;
|
| 20 |
+
padding: 0;
|
| 21 |
+
margin: 0;
|
| 22 |
+
height: 100%;
|
| 23 |
+
background-repeat: no-repeat;
|
| 24 |
+
background-attachment: fixed;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.top-container {
|
| 28 |
+
padding: 50px 0;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
#hero-image {
|
| 32 |
+
text-align: center;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
#hero-image img {
|
| 36 |
+
max-width: 80%;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.display-table {
|
| 40 |
+
display: table;
|
| 41 |
+
table-layout: fixed;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.display-cell {
|
| 45 |
+
display: table-cell;
|
| 46 |
+
vertical-align: middle;
|
| 47 |
+
float: none;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
h1 {
|
| 51 |
+
font-size: 34px;
|
| 52 |
+
color: #e1632b;
|
| 53 |
+
font-family: "Nunito", sans-serif;
|
| 54 |
+
font-weight: 900;
|
| 55 |
+
margin: 20px 0 30px 0;
|
| 56 |
+
text-align: right;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.content {
|
| 60 |
+
text-align: center;
|
| 61 |
+
font-family: "Open Sans", sans-serif;
|
| 62 |
+
font-weight: 600;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
#social {
|
| 66 |
+
text-align: center;
|
| 67 |
+
margin-top: 30px;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
#social a i {
|
| 71 |
+
color: #111111;
|
| 72 |
+
margin: 10px;
|
| 73 |
+
box-sizing: content-box;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#social a:hover i {
|
| 77 |
+
color: #ffffff;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
@media(max-width:767px) {
|
| 81 |
+
h1 {
|
| 82 |
+
font-size: 28px;
|
| 83 |
+
margin: 10px 0 30px 0;
|
| 84 |
+
}
|
| 85 |
+
#hero-image img {
|
| 86 |
+
max-width: 95%;
|
| 87 |
+
}
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
@media (max-width: 1200px) {
|
| 91 |
+
h1 {
|
| 92 |
+
text-align: center;
|
| 93 |
+
padding: 0 20px;
|
| 94 |
+
}
|
| 95 |
+
.display-table {
|
| 96 |
+
display: initial;
|
| 97 |
+
table-layout: auto;
|
| 98 |
+
}
|
| 99 |
+
.display-cell {
|
| 100 |
+
display: block;
|
| 101 |
+
vertical-align: middle;
|
| 102 |
+
float: none;
|
| 103 |
+
}
|
| 104 |
+
#hero-image img {
|
| 105 |
+
max-height: 250px
|
| 106 |
+
}
|
| 107 |
+
.top-container {
|
| 108 |
+
padding: 25px 0;
|
| 109 |
+
}
|
| 110 |
+
}
|
under-construction.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin URI: https://underconstructionpage.com/
|
| 5 |
Description: Put your site behind a great looking under construction, coming soon, maintenance mode or landing page.
|
| 6 |
Author: WebFactory Ltd
|
| 7 |
-
Version: 3.
|
| 8 |
Author URI: https://www.webfactoryltd.com/
|
| 9 |
Text Domain: under-construction-page
|
| 10 |
|
|
@@ -363,7 +363,7 @@ class UCP {
|
|
| 363 |
wp_enqueue_script('ucp-pointers', plugins_url('js/ucp-admin-pointers.js', __FILE__), array('jquery'), self::$version, true);
|
| 364 |
wp_enqueue_style('wp-pointer');
|
| 365 |
wp_localize_script('wp-pointer', 'ucp_pointers', $pointers);
|
| 366 |
-
wp_localize_script('
|
| 367 |
}
|
| 368 |
} // admin_enqueue_scripts
|
| 369 |
|
| 4 |
Plugin URI: https://underconstructionpage.com/
|
| 5 |
Description: Put your site behind a great looking under construction, coming soon, maintenance mode or landing page.
|
| 6 |
Author: WebFactory Ltd
|
| 7 |
+
Version: 3.81
|
| 8 |
Author URI: https://www.webfactoryltd.com/
|
| 9 |
Text Domain: under-construction-page
|
| 10 |
|
| 363 |
wp_enqueue_script('ucp-pointers', plugins_url('js/ucp-admin-pointers.js', __FILE__), array('jquery'), self::$version, true);
|
| 364 |
wp_enqueue_style('wp-pointer');
|
| 365 |
wp_localize_script('wp-pointer', 'ucp_pointers', $pointers);
|
| 366 |
+
wp_localize_script('wp-pointer', 'ucp', $js_localize);
|
| 367 |
}
|
| 368 |
} // admin_enqueue_scripts
|
| 369 |
|
