Under Construction - Version 3.31

Version Description

  • 2019/01/15
  • minor security fix
Download this release

Release Info

Developer WebFactory
Plugin Icon 128x128 Under Construction
Version 3.31
Comparing to
See all releases

Code changes from version 3.30 to 3.31

Files changed (76) hide show
  1. css/ucp-admin-plugins.css +1 -1
  2. css/ucp-admin.css +1 -1
  3. js/ucp-admin-plugins.js +24 -24
  4. js/ucp-admin-pointers.js +3 -3
  5. js/ucp-admin.js +1 -1
  6. js/ucp-jquery-plugins.js +3 -3
  7. readme.txt +5 -1
  8. themes/000webhost/index.php +2 -2
  9. themes/000webhost/style.css +5 -5
  10. themes/ambulance/index.php +2 -2
  11. themes/ambulance/style.css +4 -4
  12. themes/bulldozer/index.php +2 -2
  13. themes/bulldozer/style.css +5 -5
  14. themes/christmas/index.php +2 -2
  15. themes/christmas/style.css +5 -5
  16. themes/clock/index.php +2 -2
  17. themes/clock/style.css +1 -2
  18. themes/closed/index.php +2 -2
  19. themes/closed/style.css +1 -1
  20. themes/css/common.css +2 -2
  21. themes/cyber_chick/index.php +2 -2
  22. themes/cyber_chick/style.css +5 -5
  23. themes/cyber_chick_dark/index.php +2 -2
  24. themes/cyber_chick_dark/style.css +1 -1
  25. themes/dark/index.php +2 -2
  26. themes/dark/style.css +5 -5
  27. themes/dumper_truck/index.php +2 -2
  28. themes/dumper_truck/style.css +1 -1
  29. themes/forklift/index.php +11 -11
  30. themes/forklift/style.css +5 -5
  31. themes/hard_worker/index.php +2 -2
  32. themes/hard_worker/style.css +1 -1
  33. themes/hot_air_baloon/index.php +2 -2
  34. themes/hot_air_baloon/style.css +5 -5
  35. themes/iot/index.php +2 -2
  36. themes/iot/style.css +1 -1
  37. themes/laptop/index.php +2 -2
  38. themes/laptop/style.css +7 -7
  39. themes/light_bulb/index.php +2 -2
  40. themes/light_bulb/style.css +9 -9
  41. themes/lighthouse/index.php +2 -2
  42. themes/lighthouse/style.css +5 -5
  43. themes/loader/index.php +2 -2
  44. themes/loader/style.css +5 -5
  45. themes/mad_designer/index.php +2 -2
  46. themes/mad_designer/style.css +6 -6
  47. themes/people/index.php +2 -2
  48. themes/people/style.css +5 -5
  49. themes/people_2/index.php +2 -2
  50. themes/people_2/style.css +5 -5
  51. themes/plain_text/index.php +2 -2
  52. themes/plain_text/style.css +7 -7
  53. themes/puzzles/index.php +2 -2
  54. themes/puzzles/style.css +5 -5
  55. themes/rocket/index.php +2 -2
  56. themes/rocket/style.css +5 -5
  57. themes/rocket_2/index.php +2 -2
  58. themes/rocket_2/style.css +5 -5
  59. themes/sad_site/index.php +2 -2
  60. themes/sad_site/style.css +5 -5
  61. themes/safe/index.php +2 -2
  62. themes/safe/style.css +8 -8
  63. themes/setup/index.php +2 -2
  64. themes/setup/style.css +2 -2
  65. themes/stop/index.php +2 -2
  66. themes/stop/style.css +2 -2
  67. themes/under_construction/index.php +2 -2
  68. themes/under_construction/style.css +5 -5
  69. themes/under_construction_text/index.php +2 -2
  70. themes/under_construction_text/style.css +5 -5
  71. themes/windmill/index.php +2 -2
  72. themes/windmill/style.css +5 -5
  73. themes/work_desk/index.php +1 -1
  74. themes/work_desk/style.css +1 -1
  75. ucp-license.php +1 -1
  76. under-construction.php +13 -3
css/ucp-admin-plugins.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Backend CSS - plugin deactivation survey
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
  .ui-widget-overlay {
1
  /*
2
  * UnderConstructionPage
3
  * Backend CSS - plugin deactivation survey
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
  .ui-widget-overlay {
css/ucp-admin.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Main backend CSS
4
- * (c) Web factory Ltd, 2015 - 2018
5
  */
6
 
7
  @import url('//fonts.googleapis.com/css?family=Roboto:900');
1
  /*
2
  * UnderConstructionPage
3
  * Main backend CSS
4
+ * (c) Web factory Ltd, 2015 - 2019
5
  */
6
 
7
  @import url('//fonts.googleapis.com/css?family=Roboto:900');
js/ucp-admin-plugins.js CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
- * UnderConstructionPage
3
  * Plugin deactivation survey
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
@@ -9,12 +9,12 @@ jQuery(function($) {
9
  // ask users to confirm plugin deactivation
10
  $('#the-list tr span.deactivate a[data-under-construction-page="true"]').on('click', function(e) {
11
  $('#ucp-deactivate-survey').dialog('open');
12
-
13
  e.preventDefault();
14
- return false;
15
  }); // confirm plugin deactivation
16
-
17
-
18
  // turn questions into checkboxes
19
  $('#ucp-deactivate-survey').on('click', '.question-wrapper', function(e) {
20
  $('#ucp-deactivate-survey .question-wrapper').removeClass('selected');
@@ -23,44 +23,44 @@ jQuery(function($) {
23
  if ($('input', this).length) {
24
  $('input', this).focus();
25
  }
26
-
27
  e.preventDefault();
28
  return false;
29
  });
30
-
31
-
32
  // cancel deactivation - close dialog
33
  $('.ucp-cancel-deactivate').on('click', function(e) {
34
  $('#ucp-deactivate-survey').dialog('close');
35
-
36
  return false;
37
  }); // close dialog
38
-
39
-
40
  // just deactivate - don't provide feedback
41
  $('.ucp-deactivate-direct').on('click', function(e) {
42
  deactivate_link = $('#the-list tr span.deactivate a[data-under-construction-page="true"]').attr('href');
43
 
44
  location.href = deactivate_link;
45
  $('#ucp-deactivate-survey').dialog('close');
46
-
47
  return false;
48
  }); // deactivate
49
-
50
-
51
  // deactivate + feedback
52
  $('.ucp-deactivate').on('click', function(e) {
53
  e.preventDefault();
54
-
55
  if ($('#ucp-deactivate-survey .question-wrapper.selected').length != 1) {
56
  alert('Please select a reason you\'re deactivating UCP.');
57
  return false;
58
  }
59
-
60
  answer = $('#ucp-deactivate-survey .question-wrapper.selected').data('value');
61
  answer += '-' + $('#ucp-deactivate-survey .question-wrapper').index($('#ucp-deactivate-survey .question-wrapper.selected'));
62
  custom_answer = $('#ucp-deactivate-survey .question-wrapper.selected .ucp-deactivation-details').val();
63
-
64
  $.post(ajaxurl, { survey: $(this).data('survey'),
65
  answers: answer,
66
  emailme: '',
@@ -68,18 +68,18 @@ jQuery(function($) {
68
  _ajax_nonce: ucp.nonce_submit_survey,
69
  action: 'ucp_submit_survey'
70
  });
71
-
72
-
73
  alert('Thank you for your input! The plugin will now deactivate.');
74
  $('#ucp-deactivate-survey').dialog('close');
75
-
76
  deactivate_link = $('#the-list tr span.deactivate a[data-under-construction-page="true"]').attr('href');
77
  location.href = deactivate_link;
78
-
79
  return false;
80
  }); // deactivate + feedback
81
-
82
-
83
  // init deactivate survey dialog
84
  $('#ucp-deactivate-survey').dialog({'dialogClass': 'wp-dialog ucp-survey-dialog ucp-deactivate-dialog',
85
  'modal': 1,
1
  /*
2
+ * UnderConstructionPage
3
  * Plugin deactivation survey
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
9
  // ask users to confirm plugin deactivation
10
  $('#the-list tr span.deactivate a[data-under-construction-page="true"]').on('click', function(e) {
11
  $('#ucp-deactivate-survey').dialog('open');
12
+
13
  e.preventDefault();
14
+ return false;
15
  }); // confirm plugin deactivation
16
+
17
+
18
  // turn questions into checkboxes
19
  $('#ucp-deactivate-survey').on('click', '.question-wrapper', function(e) {
20
  $('#ucp-deactivate-survey .question-wrapper').removeClass('selected');
23
  if ($('input', this).length) {
24
  $('input', this).focus();
25
  }
26
+
27
  e.preventDefault();
28
  return false;
29
  });
30
+
31
+
32
  // cancel deactivation - close dialog
33
  $('.ucp-cancel-deactivate').on('click', function(e) {
34
  $('#ucp-deactivate-survey').dialog('close');
35
+
36
  return false;
37
  }); // close dialog
38
+
39
+
40
  // just deactivate - don't provide feedback
41
  $('.ucp-deactivate-direct').on('click', function(e) {
42
  deactivate_link = $('#the-list tr span.deactivate a[data-under-construction-page="true"]').attr('href');
43
 
44
  location.href = deactivate_link;
45
  $('#ucp-deactivate-survey').dialog('close');
46
+
47
  return false;
48
  }); // deactivate
49
+
50
+
51
  // deactivate + feedback
52
  $('.ucp-deactivate').on('click', function(e) {
53
  e.preventDefault();
54
+
55
  if ($('#ucp-deactivate-survey .question-wrapper.selected').length != 1) {
56
  alert('Please select a reason you\'re deactivating UCP.');
57
  return false;
58
  }
59
+
60
  answer = $('#ucp-deactivate-survey .question-wrapper.selected').data('value');
61
  answer += '-' + $('#ucp-deactivate-survey .question-wrapper').index($('#ucp-deactivate-survey .question-wrapper.selected'));
62
  custom_answer = $('#ucp-deactivate-survey .question-wrapper.selected .ucp-deactivation-details').val();
63
+
64
  $.post(ajaxurl, { survey: $(this).data('survey'),
65
  answers: answer,
66
  emailme: '',
68
  _ajax_nonce: ucp.nonce_submit_survey,
69
  action: 'ucp_submit_survey'
70
  });
71
+
72
+
73
  alert('Thank you for your input! The plugin will now deactivate.');
74
  $('#ucp-deactivate-survey').dialog('close');
75
+
76
  deactivate_link = $('#the-list tr span.deactivate a[data-under-construction-page="true"]').attr('href');
77
  location.href = deactivate_link;
78
+
79
  return false;
80
  }); // deactivate + feedback
81
+
82
+
83
  // init deactivate survey dialog
84
  $('#ucp-deactivate-survey').dialog({'dialogClass': 'wp-dialog ucp-survey-dialog ucp-deactivate-dialog',
85
  'modal': 1,
js/ucp-admin-pointers.js CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Backend GUI pointers
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
-
8
  jQuery(document).ready(function($){
9
  if (typeof ucp_pointers == 'undefined') {
10
  return;
1
  /*
2
+ * UnderConstructionPage
3
  * Backend GUI pointers
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
+
8
  jQuery(document).ready(function($){
9
  if (typeof ucp_pointers == 'undefined') {
10
  return;
js/ucp-admin.js CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Main backend JS
4
- * (c) Web factory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Main backend JS
4
+ * (c) Web factory Ltd, 2015 - 2019
5
  */
6
 
7
 
js/ucp-jquery-plugins.js CHANGED
@@ -1,9 +1,9 @@
1
  /*
2
- * UnderConstructionPage
3
  * jQuery plugins
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
  /**
8
  * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler
9
  * Licensed under MIT
1
  /*
2
+ * UnderConstructionPage
3
  * jQuery plugins
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
  /**
8
  * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler
9
  * Licensed under MIT
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: maintenance mode, maintenance page, coming soon page, landing page, under
4
  Requires at least: 4.0
5
  Requires PHP: 5.2
6
  Tested up to: 5.0
7
- Stable tag: 3.30
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -135,6 +135,10 @@ Or if needed, upload manually;
135
 
136
  == Changelog ==
137
 
 
 
 
 
138
  = 3.30 =
139
  * 2018/12/18
140
  * minor security fixes in admin
4
  Requires at least: 4.0
5
  Requires PHP: 5.2
6
  Tested up to: 5.0
7
+ Stable tag: 3.31
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
135
 
136
  == Changelog ==
137
 
138
+ = 3.31 =
139
+ * 2019/01/15
140
+ * minor security fix
141
+
142
  = 3.30 =
143
  * 2018/12/18
144
  * minor security fixes in admin
themes/000webhost/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * 000webhost theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
 
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * 000webhost theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
 
52
  [footer]
53
  </body>
54
+ </html>
themes/000webhost/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * 000webhost theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -23,7 +23,7 @@ body {
23
  background-repeat: no-repeat;
24
  background-attachment: fixed;
25
  }
26
-
27
  #hero-image {
28
  text-align: center;
29
  margin: 0 auto 5px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * 000webhost theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
23
  background-repeat: no-repeat;
24
  background-attachment: fixed;
25
  }
26
+
27
  #hero-image {
28
  text-align: center;
29
  margin: 0 auto 5px auto;
themes/ambulance/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Ambulance theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Ambulance theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/ambulance/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Ambulance theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Ambulance theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
themes/bulldozer/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Bulldozer theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Bulldozer theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/bulldozer/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Bulldozer theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Bulldozer theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
themes/christmas/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Christmas theme
5
- * (c) Web factory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -55,4 +55,4 @@ if (!defined('ABSPATH')) {
55
  </div>
56
  [footer]
57
  </body>
58
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Christmas theme
5
+ * (c) Web factory Ltd, 2015 - 2019
6
  */
7
 
8
 
55
  </div>
56
  [footer]
57
  </body>
58
+ </html>
themes/christmas/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Christmas theme CSS
4
- * (c) Web factory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -23,7 +23,7 @@ body {
23
  background-attachment: fixed;
24
  background-color: #fff;
25
  }
26
-
27
  #hero-image {
28
  text-align: center;
29
  margin: 0 auto 0 auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Christmas theme CSS
4
+ * (c) Web factory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
23
  background-attachment: fixed;
24
  background-color: #fff;
25
  }
26
+
27
  #hero-image {
28
  text-align: center;
29
  margin: 0 auto 0 auto;
themes/clock/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Clock theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -49,4 +49,4 @@ if (!defined('ABSPATH')) {
49
  </div>
50
  [footer]
51
  </body>
52
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Clock theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
49
  </div>
50
  [footer]
51
  </body>
52
+ </html>
themes/clock/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Clock CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
@@ -116,7 +116,6 @@ h1 {
116
  }
117
  .display-cell {
118
  display: block;
119
- vertical-align: middle;
120
  float: none;
121
  }
122
  #hero-image img {
1
  /*
2
  * UnderConstructionPage
3
  * Clock CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
116
  }
117
  .display-cell {
118
  display: block;
 
119
  float: none;
120
  }
121
  #hero-image img {
themes/closed/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Temporarily Closed theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Temporarily Closed theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/closed/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Temporarily Closed theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Temporarily Closed theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
themes/css/common.css CHANGED
@@ -1,9 +1,9 @@
1
  /*
2
  * UnderConstructionPage
3
  * Common frontend CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
 
8
  .content img {
9
  max-width: 100%;
1
  /*
2
  * UnderConstructionPage
3
  * Common frontend CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
 
8
  .content img {
9
  max-width: 100%;
themes/cyber_chick/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Chyber Chick theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Chyber Chick theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/cyber_chick/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Cyber Chick theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Cyber Chick theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
themes/cyber_chick_dark/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Cyber Chick Dark theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Cyber Chick Dark theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/cyber_chick_dark/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Cyber Chick Dark theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Cyber Chick Dark theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
themes/dark/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Things Went Dark theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -52,4 +52,4 @@ if (!defined('ABSPATH')) {
52
  </div>
53
  [footer]
54
  </body>
55
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Things Went Dark theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
52
  </div>
53
  [footer]
54
  </body>
55
+ </html>
themes/dark/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Things Went Dark theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 0 auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Things Went Dark theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 0 auto 10px auto;
themes/dumper_truck/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Dumper Truck theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Dumper Truck theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/dumper_truck/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Dumper Truck theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Dumper Truck theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
themes/forklift/index.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  /*
3
- * UnderConstructionPage
4
  * Forklift theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
-
8
 
9
  // this is an include only WP file
10
  if (!defined('ABSPATH')) {
@@ -25,34 +25,34 @@ if (!defined('ABSPATH')) {
25
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
26
  [head]
27
  </head>
28
-
29
  <body>
30
  <div class="container">
31
  <div class="row">
32
  <div class="col-xs-12 col-md-12 col-lg-12">
33
- <h1>[heading1]</h1>
34
  </div>
35
  </div>
36
  </div>
37
-
38
  <div id="hero-image">
39
  <img src="[theme-url]forklift.png" alt="Forklift at Work" title="Forklift at Work">
40
  </div>
41
  <div class="container">
42
-
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
  * Forklift theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
+
8
 
9
  // this is an include only WP file
10
  if (!defined('ABSPATH')) {
25
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
26
  [head]
27
  </head>
28
+
29
  <body>
30
  <div class="container">
31
  <div class="row">
32
  <div class="col-xs-12 col-md-12 col-lg-12">
33
+ <h1>[heading1]</h1>
34
  </div>
35
  </div>
36
  </div>
37
+
38
  <div id="hero-image">
39
  <img src="[theme-url]forklift.png" alt="Forklift at Work" title="Forklift at Work">
40
  </div>
41
  <div class="container">
42
+
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/forklift/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Forklift theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Forklift theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
themes/hard_worker/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Hard Worker theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Hard Worker theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/hard_worker/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Hard Worker theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Hard Worker theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
themes/hot_air_baloon/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Hot Air Baloon theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Hot Air Baloon theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/hot_air_baloon/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Hot Air Baloon theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -24,7 +24,7 @@ body {
24
  background-repeat: no-repeat;
25
  background-attachment: fixed;
26
  }
27
-
28
  #hero-image {
29
  text-align: center;
30
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Hot Air Baloon theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
24
  background-repeat: no-repeat;
25
  background-attachment: fixed;
26
  }
27
+
28
  #hero-image {
29
  text-align: center;
30
  margin: 20px auto 10px auto;
themes/iot/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Internet of Things theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Internet of Things theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/iot/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Internet of Things theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Internet of Things theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
themes/laptop/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Laptop theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -54,4 +54,4 @@ if (!defined('ABSPATH')) {
54
  </div>
55
  [footer]
56
  </body>
57
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Laptop theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
54
  </div>
55
  [footer]
56
  </body>
57
+ </html>
themes/laptop/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Laptop theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -23,11 +23,11 @@ body {
23
  margin: 0;
24
  height: 100%;
25
  }
26
-
27
  .top-container {
28
  padding: 100px 0 75px 0;
29
  }
30
-
31
  #hero-image {
32
  text-align: right;
33
  }
@@ -99,7 +99,7 @@ h1 {
99
  display: block;
100
  vertical-align: middle;
101
  float: none;
102
- }
103
  #hero-image img {
104
  max-height: 250px;
105
  padding-bottom: 25px;
1
  /*
2
+ * UnderConstructionPage
3
  * Laptop theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
23
  margin: 0;
24
  height: 100%;
25
  }
26
+
27
  .top-container {
28
  padding: 100px 0 75px 0;
29
  }
30
+
31
  #hero-image {
32
  text-align: right;
33
  }
99
  display: block;
100
  vertical-align: middle;
101
  float: none;
102
+ }
103
  #hero-image img {
104
  max-height: 250px;
105
  padding-bottom: 25px;
themes/light_bulb/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Light Bulb theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -70,4 +70,4 @@ if (!defined('ABSPATH')) {
70
  });
71
  </script>
72
  </body>
73
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Light Bulb theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
70
  });
71
  </script>
72
  </body>
73
+ </html>
themes/light_bulb/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Light Bulb theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -16,8 +16,8 @@ body {
16
  font-size: 14px;
17
  line-height: 120%;
18
  color: #2e2e2e; /* #b9b9b9; */
19
-
20
-
21
  background: #8e9eab; /* fallback for old browsers */
22
  background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab); /* Chrome 10-25, Safari 5.1-6 */
23
  background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
@@ -27,11 +27,11 @@ background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, F
27
  margin: 0;
28
  height: 100%;
29
  }
30
-
31
  .top-container {
32
  padding: 50px 0;
33
  }
34
-
35
  #hero-image {
36
  text-align: center;
37
  }
@@ -103,7 +103,7 @@ h1 {
103
  display: block;
104
  vertical-align: middle;
105
  float: none;
106
- }
107
  #hero-image img {
108
  max-height: 250px
109
  }
1
  /*
2
+ * UnderConstructionPage
3
  * Light Bulb theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
16
  font-size: 14px;
17
  line-height: 120%;
18
  color: #2e2e2e; /* #b9b9b9; */
19
+
20
+
21
  background: #8e9eab; /* fallback for old browsers */
22
  background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab); /* Chrome 10-25, Safari 5.1-6 */
23
  background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
27
  margin: 0;
28
  height: 100%;
29
  }
30
+
31
  .top-container {
32
  padding: 50px 0;
33
  }
34
+
35
  #hero-image {
36
  text-align: center;
37
  }
103
  display: block;
104
  vertical-align: middle;
105
  float: none;
106
+ }
107
  #hero-image img {
108
  max-height: 250px
109
  }
themes/lighthouse/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Lighthouse theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Lighthouse theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/lighthouse/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Lighthouse theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Lighthouse theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 10px auto;
themes/loader/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Loader theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Loader theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/loader/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Loader theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Loader theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
themes/mad_designer/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Mad Designer theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Mad Designer theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/mad_designer/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Mad Designer theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
@@ -73,4 +73,4 @@ h1 {
73
  #hero-image img {
74
  max-width: 95%;
75
  }
76
- }
1
  /*
2
+ * UnderConstructionPage
3
  * Mad Designer theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
73
  #hero-image img {
74
  max-width: 95%;
75
  }
76
+ }
themes/people/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * People at Work theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * People at Work theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/people/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * People at Work theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * People at Work theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto 40px auto;
themes/people_2/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * People at Work #2 theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * People at Work #2 theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/people_2/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * People at Work #2 theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -25,7 +25,7 @@ background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
25
  padding: 0;
26
  margin: 0;
27
  }
28
-
29
  #hero-image {
30
  text-align: center;
31
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * People at Work #2 theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
25
  padding: 0;
26
  margin: 0;
27
  }
28
+
29
  #hero-image {
30
  text-align: center;
31
  margin: 20px auto 10px auto;
themes/plain_text/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Plain Text theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -54,4 +54,4 @@ if (!defined('ABSPATH')) {
54
  </div>
55
  [footer]
56
  </body>
57
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Plain Text theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
54
  </div>
55
  [footer]
56
  </body>
57
+ </html>
themes/plain_text/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Plain Text theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  body {
9
  font-weight: 400;
10
  font-size: 1.25rem;
@@ -13,7 +13,7 @@ body {
13
  background: #f7f7f7;
14
  text-rendering: optimizeLegibility;
15
  }
16
-
17
  .container {
18
  background-color: #f7f7f7;
19
  }
@@ -41,7 +41,7 @@ header {
41
  background-color: #ffffff;
42
  display: inline-block;
43
  }
44
-
45
  h1 {
46
  font-size: 6rem;
47
  color: #23272a;
@@ -83,4 +83,4 @@ h1 {
83
  font-size: 4rem;
84
  margin: 7rem 0 1.5rem 0;
85
  }
86
- }
1
  /*
2
+ * UnderConstructionPage
3
  * Plain Text theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  body {
9
  font-weight: 400;
10
  font-size: 1.25rem;
13
  background: #f7f7f7;
14
  text-rendering: optimizeLegibility;
15
  }
16
+
17
  .container {
18
  background-color: #f7f7f7;
19
  }
41
  background-color: #ffffff;
42
  display: inline-block;
43
  }
44
+
45
  h1 {
46
  font-size: 6rem;
47
  color: #23272a;
83
  font-size: 4rem;
84
  margin: 7rem 0 1.5rem 0;
85
  }
86
+ }
themes/puzzles/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Puzzles theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Puzzles theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/puzzles/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Puzzles theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 0 auto 30px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Puzzles theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 0 auto 30px auto;
themes/rocket/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Rocket theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Rocket theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/rocket/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Rocket theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Rocket theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 10px auto;
themes/rocket_2/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Rocket #2 theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -51,4 +51,4 @@ if (!defined('ABSPATH')) {
51
  </div>
52
  [footer]
53
  </body>
54
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Rocket #2 theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
51
  </div>
52
  [footer]
53
  </body>
54
+ </html>
themes/rocket_2/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Rocket #2 theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -24,7 +24,7 @@ body {
24
  background-repeat: no-repeat;
25
  background-attachment: fixed;
26
  }
27
-
28
  #hero-image {
29
  text-align: center;
30
  margin: 20px auto 10px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Rocket #2 theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
24
  background-repeat: no-repeat;
25
  background-attachment: fixed;
26
  }
27
+
28
  #hero-image {
29
  text-align: center;
30
  margin: 20px auto 10px auto;
themes/sad_site/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Sad Site theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -55,4 +55,4 @@ if (!defined('ABSPATH')) {
55
  </div>
56
  [footer]
57
  </body>
58
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Sad Site theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
55
  </div>
56
  [footer]
57
  </body>
58
+ </html>
themes/sad_site/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Sad Site theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  body {
9
  font-weight: 400;
10
  font-size: 1.25rem;
@@ -22,7 +22,7 @@ body {
22
  #header_image img {
23
  max-width: 100%;
24
  }
25
-
26
  h1 {
27
  font-size: 4.5rem;
28
  color: #23272a;
1
  /*
2
+ * UnderConstructionPage
3
  * Sad Site theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  body {
9
  font-weight: 400;
10
  font-size: 1.25rem;
22
  #header_image img {
23
  max-width: 100%;
24
  }
25
+
26
  h1 {
27
  font-size: 4.5rem;
28
  color: #23272a;
themes/safe/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Safe theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -54,4 +54,4 @@ if (!defined('ABSPATH')) {
54
  </div>
55
  [footer]
56
  </body>
57
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Safe theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
54
  </div>
55
  [footer]
56
  </body>
57
+ </html>
themes/safe/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Safe theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -23,11 +23,11 @@ body {
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
  }
@@ -99,11 +99,11 @@ h1 {
99
  display: block;
100
  vertical-align: middle;
101
  float: none;
102
- }
103
  #hero-image img {
104
  max-height: 250px
105
  }
106
  .top-container {
107
  padding: 25px 0;
108
  }
109
- }
1
  /*
2
+ * UnderConstructionPage
3
  * Safe theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
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
  }
99
  display: block;
100
  vertical-align: middle;
101
  float: none;
102
+ }
103
  #hero-image img {
104
  max-height: 250px
105
  }
106
  .top-container {
107
  padding: 25px 0;
108
  }
109
+ }
themes/setup/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Setup theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -55,4 +55,4 @@ if (!defined('ABSPATH')) {
55
  </div>
56
  [footer]
57
  </body>
58
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Setup theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
55
  </div>
56
  [footer]
57
  </body>
58
+ </html>
themes/setup/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Setup theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
@@ -107,4 +107,4 @@ h1 {
107
  .top-container {
108
  padding: 25px 0;
109
  }
110
- }
1
  /*
2
  * UnderConstructionPage
3
  * Setup theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
107
  .top-container {
108
  padding: 25px 0;
109
  }
110
+ }
themes/stop/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Stop theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -54,4 +54,4 @@ if (!defined('ABSPATH')) {
54
  </div>
55
  [footer]
56
  </body>
57
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Stop theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
54
  </div>
55
  [footer]
56
  </body>
57
+ </html>
themes/stop/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Stop theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
@@ -110,4 +110,4 @@ h1 {
110
  .top-container {
111
  padding: 25px 0;
112
  }
113
- }
1
  /*
2
  * UnderConstructionPage
3
  * Stop theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
110
  .top-container {
111
  padding: 25px 0;
112
  }
113
+ }
themes/under_construction/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Under Construction theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Under Construction theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/under_construction/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Under Construction theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Under Construction theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 20px auto 40px auto;
themes/under_construction_text/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Under Construction Text theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Under Construction Text theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/under_construction_text/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Under Construction Text theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -26,7 +26,7 @@ body {
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
-
30
  #hero-image {
31
  text-align: center;
32
  margin: 0 auto 20px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Under Construction Text theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
26
  background-repeat: no-repeat;
27
  background-attachment: fixed;
28
  }
29
+
30
  #hero-image {
31
  text-align: center;
32
  margin: 0 auto 20px auto;
themes/windmill/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Windmill theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
@@ -53,4 +53,4 @@ if (!defined('ABSPATH')) {
53
  </div>
54
  [footer]
55
  </body>
56
- </html>
2
  /*
3
  * UnderConstructionPage
4
  * Windmill theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
53
  </div>
54
  [footer]
55
  </body>
56
+ </html>
themes/windmill/style.css CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
- * UnderConstructionPage
3
  * Windmill theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
-
7
-
8
  html {
9
  height: 100%;
10
  padding: 0;
@@ -22,7 +22,7 @@ body {
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
-
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto -1px auto;
1
  /*
2
+ * UnderConstructionPage
3
  * Windmill theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
+
7
+
8
  html {
9
  height: 100%;
10
  padding: 0;
22
  background-repeat: no-repeat;
23
  background-attachment: fixed;
24
  }
25
+
26
  #hero-image {
27
  text-align: center;
28
  margin: 20px auto -1px auto;
themes/work_desk/index.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * UnderConstructionPage
4
  * Work Desk theme
5
- * (c) WebFactory Ltd, 2015 - 2018
6
  */
7
 
8
 
2
  /*
3
  * UnderConstructionPage
4
  * Work Desk theme
5
+ * (c) WebFactory Ltd, 2015 - 2019
6
  */
7
 
8
 
themes/work_desk/style.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * UnderConstructionPage
3
  * Work Desk theme CSS
4
- * (c) WebFactory Ltd, 2015 - 2018
5
  */
6
 
7
 
1
  /*
2
  * UnderConstructionPage
3
  * Work Desk theme CSS
4
+ * (c) WebFactory Ltd, 2015 - 2019
5
  */
6
 
7
 
ucp-license.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  * UnderConstructionPage
5
  * PRO license related functions
6
- * (c) WebFactory Ltd, 2015 - 2018
7
  */
8
 
9
  class UCP_license extends UCP {
3
  /*
4
  * UnderConstructionPage
5
  * PRO license related functions
6
+ * (c) WebFactory Ltd, 2015 - 2019
7
  */
8
 
9
  class UCP_license extends UCP {
under-construction.php CHANGED
@@ -4,12 +4,12 @@
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.30
8
  Author URI: https://www.webfactoryltd.com/
9
  Text Domain: under-construction-page
10
  Domain Path: lang
11
 
12
- Copyright 2015 - 2018 Web factory Ltd (email: ucp@webfactoryltd.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
@@ -949,6 +949,13 @@ class UCP {
949
 
950
  // reset all settings to default values
951
  static function reset_settings() {
 
 
 
 
 
 
 
952
  $options = self::default_options();
953
  update_option(UCP_OPTIONS_KEY, $options);
954
 
@@ -964,7 +971,9 @@ class UCP {
964
 
965
  // change status via admin bar
966
  static function change_status() {
967
- if (false === current_user_can('administrator') || empty($_GET['new_status']) || false === check_admin_referer('ucp_change_status')) {
 
 
968
  wp_safe_redirect(admin_url());
969
  exit;
970
  }
@@ -1472,6 +1481,7 @@ class UCP {
1472
  echo '</td></tr>';
1473
 
1474
  $reset_url = add_query_arg(array('action' => 'ucp_reset_settings', 'redirect' => urlencode($_SERVER['REQUEST_URI'])), admin_url('admin.php'));
 
1475
  echo '<tr valign="top">
1476
  <th scope="row"><label for="">' . __('Reset Settings', 'under-construction-page') . '</label></th>
1477
  <td>';
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.31
8
  Author URI: https://www.webfactoryltd.com/
9
  Text Domain: under-construction-page
10
  Domain Path: lang
11
 
12
+ Copyright 2015 - 2019 Web factory Ltd (email: ucp@webfactoryltd.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
949
 
950
  // reset all settings to default values
951
  static function reset_settings() {
952
+ check_admin_referer('ucp_reset_settings');
953
+
954
+ if (false === current_user_can('administrator')) {
955
+ wp_safe_redirect(admin_url());
956
+ exit;
957
+ }
958
+
959
  $options = self::default_options();
960
  update_option(UCP_OPTIONS_KEY, $options);
961
 
971
 
972
  // change status via admin bar
973
  static function change_status() {
974
+ check_admin_referer('ucp_change_status');
975
+
976
+ if (false === current_user_can('administrator') || empty($_GET['new_status'])) {
977
  wp_safe_redirect(admin_url());
978
  exit;
979
  }
1481
  echo '</td></tr>';
1482
 
1483
  $reset_url = add_query_arg(array('action' => 'ucp_reset_settings', 'redirect' => urlencode($_SERVER['REQUEST_URI'])), admin_url('admin.php'));
1484
+ $reset_url = wp_nonce_url($reset_url, 'ucp_reset_settings');
1485
  echo '<tr valign="top">
1486
  <th scope="row"><label for="">' . __('Reset Settings', 'under-construction-page') . '</label></th>
1487
  <td>';