Version Description
- 2022/01/13
- Google Analytics fix
- sorry for the multiple updates :(
Download this release
Release Info
Developer | WebFactory |
Plugin | Under Construction |
Version | 3.92 |
Comparing to | |
See all releases |
Code changes from version 3.91 to 3.92
- readme.txt +8 -3
- under-construction.php +8 -1
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: WebFactory
|
|
3 |
Tags: coming soon page, under construction mode, under construction, under construction page, coming soon, maintenance mode, maintenance page, launch page, coming soon mode, maintenance mode page, offline page, maintenance, landing page
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 5.2
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -23,7 +23,7 @@ A simple, no-nonsense under construction plugin for all those situations when yo
|
|
23 |
|
24 |
Thanks to our partnership with <a href="https://wordpress.org/plugins/weglot/">Weglot</a>, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.
|
25 |
|
26 |
-
If you're having problems with SSL or HTTPS try our free <a href="https://wordpress.org/plugins/wp-force-ssl/">WP Force SSL</a> plugin. It's a great plugin to enable SSL and fix SSL
|
27 |
|
28 |
**Options**
|
29 |
|
@@ -135,6 +135,11 @@ Or if needed, upload manually;
|
|
135 |
|
136 |
== Changelog ==
|
137 |
|
|
|
|
|
|
|
|
|
|
|
138 |
= 3.91 =
|
139 |
* 2022/01/12
|
140 |
* fix for Weglot integration
|
3 |
Tags: coming soon page, under construction mode, under construction, under construction page, coming soon, maintenance mode, maintenance page, launch page, coming soon mode, maintenance mode page, offline page, maintenance, landing page
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 5.2
|
6 |
+
Tested up to: 5.9
|
7 |
+
Stable tag: 3.92
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
23 |
|
24 |
Thanks to our partnership with <a href="https://wordpress.org/plugins/weglot/">Weglot</a>, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.
|
25 |
|
26 |
+
**If you're having problems with SSL or HTTPS try our free <a href="https://wordpress.org/plugins/wp-force-ssl/">WP Force SSL</a> plugin. It's a great plugin to enable SSL and fix SSL issues.**
|
27 |
|
28 |
**Options**
|
29 |
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
+
= 3.92 =
|
139 |
+
* 2022/01/13
|
140 |
+
* Google Analytics fix
|
141 |
+
* sorry for the multiple updates :(
|
142 |
+
|
143 |
= 3.91 =
|
144 |
* 2022/01/12
|
145 |
* fix for Weglot integration
|
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 |
Requires at least: 4.0
|
9 |
Requires PHP: 5.2
|
10 |
Tested up to: 5.8
|
@@ -2713,6 +2713,13 @@ class UCP
|
|
2713 |
'data-*' => true
|
2714 |
);
|
2715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2716 |
echo wp_kses($html, $allowed_tags);
|
2717 |
|
2718 |
add_filter('safe_style_css', function ($styles) {
|
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.92
|
8 |
Requires at least: 4.0
|
9 |
Requires PHP: 5.2
|
10 |
Tested up to: 5.8
|
2713 |
'data-*' => true
|
2714 |
);
|
2715 |
|
2716 |
+
$allowed_tags['script'] = array(
|
2717 |
+
'class' => true,
|
2718 |
+
'id' => true,
|
2719 |
+
'type' => true,
|
2720 |
+
'src' => true
|
2721 |
+
);
|
2722 |
+
|
2723 |
echo wp_kses($html, $allowed_tags);
|
2724 |
|
2725 |
add_filter('safe_style_css', function ($styles) {
|