Version Description
- Fixed undefined notice
Download this release
Release Info
Developer | seedprod |
Plugin | Coming Soon Page & Maintenance Mode by SeedProd |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2.0 to 4.2.1
- README.txt +6 -3
- coming-soon.php +2 -2
- framework/framework.php +2 -2
README.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: seedprod
|
3 |
Donate link: http://www.seedprod.com
|
4 |
-
Tags:
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.2.
|
8 |
Text Domain: coming-soon
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -114,6 +114,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
|
|
114 |
4. Design Page
|
115 |
|
116 |
== Changelog ==
|
|
|
|
|
|
|
117 |
= 4.2.0 =
|
118 |
* Language Packs
|
119 |
|
1 |
=== Plugin Name ===
|
2 |
Contributors: seedprod
|
3 |
Donate link: http://www.seedprod.com
|
4 |
+
Tags: maintenance mode, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, coming soon page, under construction page, landing page
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.4.1
|
7 |
+
Stable tag: 4.2.1
|
8 |
Text Domain: coming-soon
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
114 |
4. Design Page
|
115 |
|
116 |
== Changelog ==
|
117 |
+
= 4.2.1 =
|
118 |
+
* Fixed undefined notice
|
119 |
+
|
120 |
= 4.2.0 =
|
121 |
* Language Packs
|
122 |
|
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: 4.2.
|
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', '4.2.
|
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: 4.2.1
|
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', '4.2.1'); // 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' );
|
framework/framework.php
CHANGED
@@ -353,7 +353,7 @@ class SEED_CSP4_ADMIN
|
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
356 |
-
|
357 |
<div class="postbox like-postbox" style="background-color:#d9edf7">
|
358 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
359 |
<h3 class="hndle"><span><?php _e('Show Some Love', 'coming-soon') ?></span></h3>
|
@@ -372,7 +372,7 @@ class SEED_CSP4_ADMIN
|
|
372 |
</div>
|
373 |
</div>
|
374 |
</div>
|
375 |
-
|
376 |
|
377 |
|
378 |
<div class="postbox rss-postbox" style="background-color:#d9edf7">
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
356 |
+
|
357 |
<div class="postbox like-postbox" style="background-color:#d9edf7">
|
358 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
359 |
<h3 class="hndle"><span><?php _e('Show Some Love', 'coming-soon') ?></span></h3>
|
372 |
</div>
|
373 |
</div>
|
374 |
</div>
|
375 |
+
|
376 |
|
377 |
|
378 |
<div class="postbox rss-postbox" style="background-color:#d9edf7">
|