IgniteUp – Coming Soon and Maintenance Mode - Version 1.0.1

Version Description

  • Fixed title not showing for empty values.
Download this release

Release Info

Developer ceylonsystems
Plugin Icon 128x128 IgniteUp – Coming Soon and Maintenance Mode
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0 to 1.0.1

igniteup.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: IgniteUp
5
  Plugin URI: http://plugins.ceylonsystems.com
6
  Description: IgniteUp is a powerful plugin which allows you to keep your site on launchpad till ignite-up and to build amazing coming soon pages.
7
- Version: 1.0
8
  Author: Ceylon Systems
9
  Author URI: http://ceylonsystems.com
10
  License: GPLv2 or later
4
  Plugin Name: IgniteUp
5
  Plugin URI: http://plugins.ceylonsystems.com
6
  Description: IgniteUp is a powerful plugin which allows you to keep your site on launchpad till ignite-up and to build amazing coming soon pages.
7
+ Version: 1.0.1
8
  Author: Ceylon Systems
9
  Author URI: http://ceylonsystems.com
10
  License: GPLv2 or later
includes/templates/believe/believe.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php global $the_cs_template_options; ?>
2
  <html>
3
  <head>
4
- <title> <?php echo (isset($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?> </title>
5
  <meta charset="UTF-8">
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
  <?php wp_head(); ?>
1
  <?php global $the_cs_template_options; ?>
2
  <html>
3
  <head>
4
+ <title> <?php echo (!empty($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?> </title>
5
  <meta charset="UTF-8">
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
  <?php wp_head(); ?>
includes/templates/launcher/launcher.php CHANGED
@@ -2,7 +2,7 @@
2
  <html>
3
  <head>
4
  <?php wp_head(); ?>
5
- <title> <?php echo (isset($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?> </title>
6
 
7
  <style>
8
  a{
2
  <html>
3
  <head>
4
  <?php wp_head(); ?>
5
+ <title> <?php echo (!empty($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?> </title>
6
 
7
  <style>
8
  a{
includes/templates/offline/offline.php CHANGED
@@ -2,7 +2,7 @@
2
  <html>
3
  <head>
4
  <?php wp_head(); ?>
5
- <title><?php echo (isset($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?></title>
6
 
7
  <style>
8
  a{
2
  <html>
3
  <head>
4
  <?php wp_head(); ?>
5
+ <title><?php echo (!empty($the_cs_template_options["general_cs_page_title"]) ? $the_cs_template_options["general_cs_page_title"] : 'Almost Ready we are ready to launch.'); ?></title>
6
 
7
  <style>
8
  a{
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, newsletter, subscribe, offline, unavailable, under construction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, igniter
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2.2
7
- Stable tag: 1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -46,6 +46,9 @@ Activated template won't see roles ticked on "Skip Page For" option and in defau
46
 
47
  == Changelog ==
48
 
 
 
 
49
  = 1.0 =
50
  * Initial Release.
51
 
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, newsletter, subscribe, offline, unavailable, under construction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, igniter
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2.2
7
+ Stable tag: 1.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
46
 
47
  == Changelog ==
48
 
49
+ = 1.0.1 =
50
+ * Fixed title not showing for empty values.
51
+
52
  = 1.0 =
53
  * Initial Release.
54