Coming Soon Page & Maintenance Mode by SeedProd - Version 5.0.9

Version Description

  • Fixed CSS issues
Download this release

Release Info

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

Code changes from version 5.0.8 to 5.0.9

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.7.2
7
- Stable tag: 5.0.8
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -94,7 +94,7 @@ Create a simple Coming Soon Page or Maintenance Mode Page. Work on your site in
94
 
95
 
96
  == Frequently Asked Questions ==
97
- = What's the difference between Comgin Soon Page Mode and Maintenance Mode? =
98
 
99
  Coming Soon Page Mode return a http status 200 and allows your site to be indexed by Google and other searching engine. You should always using Coming Soon Page mode when your site is new.
100
 
@@ -113,6 +113,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
113
  4. Design Page
114
 
115
  == Changelog ==
 
 
 
116
  = 5.0.8 =
117
  * Fixed CSS issue and added cache control
118
 
@@ -176,6 +179,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
176
  * Initial Commit
177
 
178
  == Upgrade Notice ==
 
 
 
179
  = 5.0.8 =
180
  * Fixed CSS issue and added cache control
181
 
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.7.2
7
+ Stable tag: 5.0.9
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
94
 
95
 
96
  == Frequently Asked Questions ==
97
+ = What's the difference between Coming Soon Page Mode and Maintenance Mode? =
98
 
99
  Coming Soon Page Mode return a http status 200 and allows your site to be indexed by Google and other searching engine. You should always using Coming Soon Page mode when your site is new.
100
 
113
  4. Design Page
114
 
115
  == Changelog ==
116
+ = 5.0.9 =
117
+ * Fixed CSS issues
118
+
119
  = 5.0.8 =
120
  * Fixed CSS issue and added cache control
121
 
179
  * Initial Commit
180
 
181
  == Upgrade Notice ==
182
+ = 5.0.9 =
183
+ * Fixed CSS issues
184
+
185
  = 5.0.8 =
186
  * Fixed CSS issue and added cache control
187
 
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.8
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.8'); // 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.9
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.9'); // 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
@@ -85,7 +85,6 @@ function seed_csp4_head() {
85
 
86
  /* Background Style */
87
  html{
88
-
89
  <?php if ( !empty( $bg_image ) ): ;?>
90
  <?php if ( isset( $bg_cover ) && in_array( '1', $bg_cover ) ) : ?>
91
  background: <?php echo $bg_color;?> url('<?php echo $bg_image; ?>') no-repeat top center fixed;
@@ -103,7 +102,6 @@ function seed_csp4_head() {
103
  <?php endif;endif; ?>
104
  }
105
  .seed-csp4 body{
106
- height:100%;
107
  <?php if ( !empty( $bg_effect ) ) : ?>
108
  background: transparent url('<?php echo plugins_url( 'images/bg-'.$bg_effect.'.png', __FILE__ ) ; ?>') repeat;
109
  <?php else: ?>
@@ -111,7 +109,7 @@ function seed_csp4_head() {
111
  <?php endif; ?>
112
  }
113
  <?php if ( !empty( $bg_overlay ) ): ;?>
114
- .seed-csp4 body{
115
  background-color: rgba(0,0,0,0.5);
116
  }
117
  <?php endif ?>
85
 
86
  /* Background Style */
87
  html{
 
88
  <?php if ( !empty( $bg_image ) ): ;?>
89
  <?php if ( isset( $bg_cover ) && in_array( '1', $bg_cover ) ) : ?>
90
  background: <?php echo $bg_color;?> url('<?php echo $bg_image; ?>') no-repeat top center fixed;
102
  <?php endif;endif; ?>
103
  }
104
  .seed-csp4 body{
 
105
  <?php if ( !empty( $bg_effect ) ) : ?>
106
  background: transparent url('<?php echo plugins_url( 'images/bg-'.$bg_effect.'.png', __FILE__ ) ; ?>') repeat;
107
  <?php else: ?>
109
  <?php endif; ?>
110
  }
111
  <?php if ( !empty( $bg_overlay ) ): ;?>
112
+ #seed-csp4-page{
113
  background-color: rgba(0,0,0,0.5);
114
  }
115
  <?php endif ?>
themes/default/index.php CHANGED
@@ -12,18 +12,13 @@
12
  </head>
13
  <body>
14
  <div id="seed-csp4-page">
15
- <div class="row">
16
- <div class="col-md-12">
17
  <div id="seed-csp4-content">
18
  {Logo}
19
  {Headline}
20
  {Description}
21
  </div><!-- / #seed-csp4-content -->
22
- </div>
23
- </div>
24
  {Append_HTML}
25
  {Credit}
26
-
27
  {Footer}
28
  </div>
29
  </body>
12
  </head>
13
  <body>
14
  <div id="seed-csp4-page">
 
 
15
  <div id="seed-csp4-content">
16
  {Logo}
17
  {Headline}
18
  {Description}
19
  </div><!-- / #seed-csp4-content -->
 
 
20
  {Append_HTML}
21
  {Credit}
 
22
  {Footer}
23
  </div>
24
  </body>
themes/default/style.css CHANGED
@@ -1,7 +1,17 @@
1
  /* Styles */
 
 
 
 
 
 
 
 
 
 
2
  body{
 
3
  text-align:center;
4
- padding:60px 20px 0;
5
  }
6
 
7
  #seed-csp4-content{
1
  /* Styles */
2
+ html,
3
+ body {
4
+ height: 100%;
5
+ }
6
+
7
+ #seed-csp4-page{
8
+ padding:60px 20px 60px;
9
+ min-height: 100%;
10
+ }
11
+
12
  body{
13
+ height: 100%;
14
  text-align:center;
 
15
  }
16
 
17
  #seed-csp4-content{