Coming Soon Page & Maintenance Mode by SeedProd - Version 5.0.22

Version Description

  • Fixed - Bug with old php versions
Download this release

Release Info

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

Code changes from version 5.0.21 to 5.0.22

Files changed (3) hide show
  1. README.txt +7 -1
  2. coming-soon.php +2 -2
  3. lib/setup_tgmpa.php +4 -2
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.8
7
- Stable tag: 5.0.21
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -115,6 +115,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
115
  4. Design Page
116
 
117
  == Changelog ==
 
 
 
118
  = 5.0.21 =
119
  * Added - Themes, Stock Images, Subscribers and Addons Previews
120
 
@@ -214,6 +217,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
214
  * Initial Commit
215
 
216
  == Upgrade Notice ==
 
 
 
217
  = 5.0.21 =
218
  * Added - Themes, Stock Images, Subscribers and Addons Previews
219
 
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.8
7
+ Stable tag: 5.0.22
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
115
  4. Design Page
116
 
117
  == Changelog ==
118
+ = 5.0.22 =
119
+ * Fixed - Bug with old php versions
120
+
121
  = 5.0.21 =
122
  * Added - Themes, Stock Images, Subscribers and Addons Previews
123
 
217
  * Initial Commit
218
 
219
  == Upgrade Notice ==
220
+ = 5.0.22 =
221
+ * Fixed - Bug with old php versions
222
+
223
  = 5.0.21 =
224
  * Added - Themes, Stock Images, Subscribers and Addons Previews
225
 
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.21
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
@@ -20,7 +20,7 @@ define( 'SEED_CSP4_SHORTNAME', 'seed_csp4' ); // Used to reference namespace fun
20
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
21
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
22
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
23
- define( 'SEED_CSP4_VERSION', '5.0.21'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
24
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
25
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
26
  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.22
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
20
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
21
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
22
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
23
+ define( 'SEED_CSP4_VERSION', '5.0.22'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
24
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
25
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
26
  define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
lib/setup_tgmpa.php CHANGED
@@ -80,7 +80,9 @@
80
  // track cross referrals to Awesome Motive products
81
  $medium = 'seedprod';
82
  return $medium;
83
- }
84
- if(!empty(get_option('seed_csp4_wpforms'))){
 
 
85
  add_filter( 'wpforms_upgrade_link_medium', 'coming_soon_wpforms_upgrade_link' );
86
  }
80
  // track cross referrals to Awesome Motive products
81
  $medium = 'seedprod';
82
  return $medium;
83
+ }
84
+
85
+ $seed_csp4_wpforms = get_option('seed_csp4_wpforms');
86
+ if(!empty($seed_csp4_wpforms)){
87
  add_filter( 'wpforms_upgrade_link_medium', 'coming_soon_wpforms_upgrade_link' );
88
  }