Coming Soon Page & Maintenance Mode by SeedProd - Version 6.0.7

Version Description

  • Tweak - Flush Permalinks Programmatically so Previews Work
Download this release

Release Info

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

Code changes from version 6.0.6 to 6.0.7

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: maintenance mode, coming soon page, coming soon, under construction, landi
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 6.0.6
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -102,7 +102,7 @@ Create a Coming Soon Page, Maintenance Mode Page, Landing Pages and Custom 404 p
102
 
103
 
104
  == Frequently Asked Questions ==
105
- = What kind of landong pages can I create? =
106
  You can create a variety of landing pages including but not limited to:
107
  * Sales Pages
108
  * Opt-In Pages
@@ -141,6 +141,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
141
 
142
 
143
  == Changelog ==
 
 
 
144
  = 6.0.0 =
145
  * New - Complete rebuild of the plugin.
146
  * New - Drag and Drop Page Builder
@@ -280,6 +283,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
280
  * Initial Commit
281
 
282
  == Upgrade Notice ==
 
 
 
283
  = 6.0.0 =
284
  * New - Complete rebuild of the plugin.
285
  * New - Drag and Drop Page Builder
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 6.0.7
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
102
 
103
 
104
  == Frequently Asked Questions ==
105
+ = What kind of landing pages can I create? =
106
  You can create a variety of landing pages including but not limited to:
107
  * Sales Pages
108
  * Opt-In Pages
141
 
142
 
143
  == Changelog ==
144
+ = 6.0.7 =
145
+ * Tweak - Flush Permalinks Programmatically so Previews Work
146
+
147
  = 6.0.0 =
148
  * New - Complete rebuild of the plugin.
149
  * New - Drag and Drop Page Builder
283
  * Initial Commit
284
 
285
  == Upgrade Notice ==
286
+ = 6.0.7 =
287
+ * Tweak - Flush Permalinks Programmatically
288
+
289
  = 6.0.0 =
290
  * New - Complete rebuild of the plugin.
291
  * New - Drag and Drop Page Builder
app/backwards/backwards_compatibility.php CHANGED
@@ -371,6 +371,8 @@ function seedprod_lite_check_for_free_version()
371
  // do we need to show it?
372
  update_option('seedprod_csp4_imported', true);
373
  update_option('seedprod_show_csp4', true);
 
 
374
  }
375
 
376
  update_option('seedprod_migration_run_once',true);
371
  // do we need to show it?
372
  update_option('seedprod_csp4_imported', true);
373
  update_option('seedprod_show_csp4', true);
374
+ // flush rewrite rules
375
+ flush_rewrite_rules();
376
  }
377
 
378
  update_option('seedprod_migration_run_once',true);
coming-soon.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Coming Soon Page, Maintenance Mode & Landing Pages by SeedProd
4
  Plugin URI: https://www.seedprod.com
5
  Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
- Version: 6.0.6
7
  Author: SeedProd
8
  Author URI: https://www.seedprod.com
9
  TextDomain: coming-soon
@@ -16,7 +16,7 @@ License: GPLv2 or later
16
  */
17
  define('SEEDPROD_BUILD', 'lite');
18
  define('SEEDPROD_SLUG', 'coming-soon/coming-soon.php');
19
- define('SEEDPROD_VERSION', '6.0.6');
20
  define('SEEDPROD_PLUGIN_PATH', plugin_dir_path(__FILE__));
21
  // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
22
  define('SEEDPROD_PLUGIN_URL', plugin_dir_url(__FILE__));
@@ -79,6 +79,9 @@ function seedprod_lite_activation()
79
  wp_schedule_event(time(), 'daily', 'seedprod_notifications');
80
  }
81
 
 
 
 
82
  }
83
 
84
  register_activation_hook(__FILE__, 'seedprod_lite_activation');
3
  Plugin Name: Coming Soon Page, Maintenance Mode & Landing Pages by SeedProd
4
  Plugin URI: https://www.seedprod.com
5
  Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
+ Version: 6.0.7
7
  Author: SeedProd
8
  Author URI: https://www.seedprod.com
9
  TextDomain: coming-soon
16
  */
17
  define('SEEDPROD_BUILD', 'lite');
18
  define('SEEDPROD_SLUG', 'coming-soon/coming-soon.php');
19
+ define('SEEDPROD_VERSION', '6.0.7');
20
  define('SEEDPROD_PLUGIN_PATH', plugin_dir_path(__FILE__));
21
  // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
22
  define('SEEDPROD_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  wp_schedule_event(time(), 'daily', 'seedprod_notifications');
80
  }
81
 
82
+ // flush rewrite rules
83
+ flush_rewrite_rules();
84
+
85
  }
86
 
87
  register_activation_hook(__FILE__, 'seedprod_lite_activation');