Coming Soon Page & Maintenance Mode by SeedProd - Version 5.0.19

Version Description

  • fixed z-index issue with supersize loader and focus link color
Download this release

Release Info

Developer seedprod
Plugin Icon 128x128 Coming Soon Page & Maintenance Mode by SeedProd
Version 5.0.19
Comparing to
See all releases

Code changes from version 5.0.18 to 5.0.19

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.seedprod.com
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, under construction page, landing page
5
  Requires at least: 3.5.1
6
  Tested up to: 4.9.4
7
- Stable tag: 5.0.18
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -116,6 +116,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
116
  4. Design Page
117
 
118
  == Changelog ==
 
 
 
119
  = 5.0.18 =
120
  * fixed ios issue and no cache header issue
121
 
@@ -206,6 +209,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
206
  * Initial Commit
207
 
208
  == Upgrade Notice ==
 
 
 
209
  = 5.0.18 =
210
  * fixed ios issue and no cache header issue
211
 
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, under construction page, landing page
5
  Requires at least: 3.5.1
6
  Tested up to: 4.9.4
7
+ Stable tag: 5.0.19
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
116
  4. Design Page
117
 
118
  == Changelog ==
119
+ = 5.0.19 =
120
+ * fixed z-index issue with supersize loader and focus link color
121
+
122
  = 5.0.18 =
123
  * fixed ios issue and no cache header issue
124
 
209
  * Initial Commit
210
 
211
  == Upgrade Notice ==
212
+ = 5.0.19 =
213
+ * fixed z-index issue with supersize loader and focus link color
214
+
215
  = 5.0.18 =
216
  * fixed ios issue and no cache header issue
217
 
coming-soon.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Coming Soon Page & Maintenance Mode by SeedProd
4
  * Plugin URI: http://www.seedprod.com
5
  * Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
- * Version: 5.0.18
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
@@ -21,7 +21,7 @@ define( 'SEED_CSP4_SHORTNAME', 'seed_csp4' ); // Used to reference namespace fun
21
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
22
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
23
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
24
- define( 'SEED_CSP4_VERSION', '5.0.18'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
25
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
26
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
27
  define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
3
  * Plugin Name: Coming Soon Page & Maintenance Mode by SeedProd
4
  * Plugin URI: http://www.seedprod.com
5
  * Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
+ * Version: 5.0.19
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
21
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
22
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
23
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
24
+ define( 'SEED_CSP4_VERSION', '5.0.19'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
25
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
26
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
27
  define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
themes/default/functions.php CHANGED
@@ -168,7 +168,7 @@ function seed_csp4_head() {
168
 
169
 
170
  <?php if ( !empty( $link_color ) ) { ?>
171
- .seed-csp4 a, .seed-csp4 a:visited, .seed-csp4 a:hover, .seed-csp4 a:active{
172
  color:<?php echo $link_color;?>;
173
  }
174
 
@@ -178,17 +178,19 @@ function seed_csp4_head() {
178
 
179
  <?php if ( !empty( $bg_image ) ): ;?>
180
  <?php if ( isset( $bg_cover ) && in_array( '1', $bg_cover ) ) : ?>
181
- html {
182
- height: 100%;
183
- overflow: hidden;
184
- }
185
- body
186
- {
187
- height:100%;
188
- overflow: auto;
189
- -webkit-overflow-scrolling: touch;
 
 
190
  }
191
- <?php endif; ?>
192
  <?php endif; ?>
193
 
194
  <?php
168
 
169
 
170
  <?php if ( !empty( $link_color ) ) { ?>
171
+ .seed-csp4 a, .seed-csp4 a:visited, .seed-csp4 a:hover, .seed-csp4 a:active, .seed-csp4 a:focus{
172
  color:<?php echo $link_color;?>;
173
  }
174
 
178
 
179
  <?php if ( !empty( $bg_image ) ): ;?>
180
  <?php if ( isset( $bg_cover ) && in_array( '1', $bg_cover ) ) : ?>
181
+ @supports (-webkit-overflow-scrolling: touch) {
182
+ html {
183
+ height: 100%;
184
+ overflow: hidden;
185
+ }
186
+ body
187
+ {
188
+ height:100%;
189
+ overflow: auto;
190
+ -webkit-overflow-scrolling: touch;
191
+ }
192
  }
193
+ <?php endif; ?>
194
  <?php endif; ?>
195
 
196
  <?php
themes/default/style.css CHANGED
@@ -137,7 +137,7 @@ a img.aligncenter {
137
 
138
  /* =Supersized
139
  -------------------------------------------------------------- */
140
- #supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; }
141
  #supersized img{max-width:none;}
142
  #supersized { display:none; position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%;margin:0; }
143
  #supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none; }
137
 
138
  /* =Supersized
139
  -------------------------------------------------------------- */
140
+ #supersized-loader { position:absolute; top:50%; left:50%; z-index:-1; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; }
141
  #supersized img{max-width:none;}
142
  #supersized { display:none; position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%;margin:0; }
143
  #supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none; }