Version Description
- Small tweaks
Download this release
Release Info
Developer | bobriley |
Plugin | EZP Coming Soon Page |
Version | 0.6.0 |
Comparing to | |
See all releases |
Code changes from version 0.5.8 to 0.6.0
- classes/Utilities/class-ezp-cs-utility.php +44 -24
- classes/class-ezp-cs-constants.php +3 -3
- classes/class-ezp-cs.php +3 -3
- easy-pie-coming-soon.php +1 -1
- images/binoculars.png +0 -0
- images/cspe-screenshot-1a-1024x616.jpg +0 -0
- mini-themes/base-responsive/index.php +3 -3
- pages/page-coming-soon-page-elite.php +85 -0
- pages/page-coming-soon-pro.php +0 -85
- pages/page-options-settings.php +1 -1
- pages/page-options.php +1 -1
- pages/page-subscribers-list-tab.php +3 -4
- pages/page-subscribers.php +9 -13
- readme.txt +8 -2
classes/Utilities/class-ezp-cs-utility.php
CHANGED
@@ -65,7 +65,7 @@ if (!class_exists('EZP_CS_Utility')) {
|
|
65 |
echo htmlspecialchars($text);
|
66 |
}
|
67 |
|
68 |
-
public function get_db_type_format($variable) {
|
69 |
|
70 |
$type_string = gettype($variable);
|
71 |
|
@@ -275,31 +275,51 @@ if (!class_exists('EZP_CS_Utility')) {
|
|
275 |
return $is_unfiltered;
|
276 |
}
|
277 |
|
278 |
-
public static function get_coupon_text()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
{
|
280 |
-
$text = '';
|
281 |
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
case 0:
|
289 |
-
$text = '$10 off coupon for upcoming Coming Soon Page Pro';
|
290 |
-
break;
|
291 |
-
|
292 |
-
case 1:
|
293 |
-
$text = 'Get a $10 off coupon for the upcoming Coming Soon Page Pro';
|
294 |
-
break;
|
295 |
-
}
|
296 |
-
}
|
297 |
-
|
298 |
-
if($text != '') {
|
299 |
-
$text = "<a target='_blank' style='margin-top:17px; display:block; text-align:center' href='http://easypiewp.com/get-coming-soon-page-pro-coupon/'>$text</p>";
|
300 |
-
}
|
301 |
-
|
302 |
-
return $text;
|
303 |
}
|
304 |
}
|
305 |
|
65 |
echo htmlspecialchars($text);
|
66 |
}
|
67 |
|
68 |
+
public static function get_db_type_format($variable) {
|
69 |
|
70 |
$type_string = gettype($variable);
|
71 |
|
275 |
return $is_unfiltered;
|
276 |
}
|
277 |
|
278 |
+
// public static function get_coupon_text()
|
279 |
+
// {
|
280 |
+
// $text = '';
|
281 |
+
//
|
282 |
+
// if(time() < strtotime('8 July 2014'))
|
283 |
+
// {
|
284 |
+
// $r = rand(0, 1);
|
285 |
+
//
|
286 |
+
// switch($r)
|
287 |
+
// {
|
288 |
+
// case 0:
|
289 |
+
// $text = '$10 off coupon for upcoming Coming Soon Page Pro';
|
290 |
+
// break;
|
291 |
+
//
|
292 |
+
// case 1:
|
293 |
+
// $text = 'Get a $10 off coupon for the upcoming Coming Soon Page Pro';
|
294 |
+
// break;
|
295 |
+
// }
|
296 |
+
// }
|
297 |
+
//
|
298 |
+
// if($text != '') {
|
299 |
+
// $text = "<a target='_blank' style='margin-top:17px; display:block; text-align:center' href='http://easypiewp.com/get-coming-soon-page-pro-coupon/'>$text</p>";
|
300 |
+
// }
|
301 |
+
//
|
302 |
+
// return $text;
|
303 |
+
// }
|
304 |
+
|
305 |
+
public static function append_query_value($url, $key, $value)
|
306 |
+
{
|
307 |
+
$separator = (parse_url($url, PHP_URL_QUERY) == NULL) ? '?' : '&';
|
308 |
+
|
309 |
+
$modified_url = $url . "$separator$key=$value";
|
310 |
+
|
311 |
+
return $modified_url;
|
312 |
+
}
|
313 |
+
|
314 |
+
public static function echo_footer_links()
|
315 |
{
|
|
|
316 |
|
317 |
+
$faq_text = __('FAQ');
|
318 |
+
$contact_text = __('Contact');
|
319 |
+
|
320 |
+
echo "<a href='http://easypiewp.com/easy-pie-coming-soon-faq' target='_blank'>$faq_text</a> | ";
|
321 |
+
echo "<a href='http://easypiewp.com/about/' target='_blank'>$contact_text</a> | ";
|
322 |
+
echo "<a href='http://easypiewp.com/' target='_blank'>Coming Soon Page ELITE</a>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
}
|
324 |
}
|
325 |
|
classes/class-ezp-cs-constants.php
CHANGED
@@ -32,7 +32,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
-
const PLUGIN_VERSION = "0.
|
36 |
|
37 |
|
38 |
|
@@ -44,7 +44,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
44 |
public static $SETTINGS_SUBMENU_SLUG;
|
45 |
public static $SUBSCRIBERS_SUBMENU_SLUG;
|
46 |
public static $PREVIEW_SUBMENU_SLUG;
|
47 |
-
public static $
|
48 |
|
49 |
public static function init() {
|
50 |
|
@@ -56,7 +56,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
56 |
self::$SETTINGS_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-settings';
|
57 |
self::$SUBSCRIBERS_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-subscribers';
|
58 |
self::$PREVIEW_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-view';
|
59 |
-
self::$
|
60 |
}
|
61 |
|
62 |
}
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
+
const PLUGIN_VERSION = "0.6.0"; // RSR Version
|
36 |
|
37 |
|
38 |
|
44 |
public static $SETTINGS_SUBMENU_SLUG;
|
45 |
public static $SUBSCRIBERS_SUBMENU_SLUG;
|
46 |
public static $PREVIEW_SUBMENU_SLUG;
|
47 |
+
public static $COMING_SOON_PAGE_ELITE_SUBMENU_SLUG;
|
48 |
|
49 |
public static function init() {
|
50 |
|
56 |
self::$SETTINGS_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-settings';
|
57 |
self::$SUBSCRIBERS_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-subscribers';
|
58 |
self::$PREVIEW_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-view';
|
59 |
+
self::$COMING_SOON_PAGE_ELITE_SUBMENU_SLUG = EZP_CS_Constants::PLUGIN_SLUG . '-coming-soon-page-elite';
|
60 |
}
|
61 |
|
62 |
}
|
classes/class-ezp-cs.php
CHANGED
@@ -467,7 +467,7 @@ if (!class_exists('EZP_CS')) {
|
|
467 |
$template_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Template'), $this->__('Template'), $perms, EZP_CS_Constants::$TEMPLATE_SUBMENU_SLUG, array($this, 'display_template_options_page'));
|
468 |
$settings_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Settings'), $this->__('Settings'), $perms, EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG, array($this, 'display_settings_options_page'));
|
469 |
$subscribers_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Subscribers'), $this->__('Subscribers'), $perms, EZP_CS_Constants::$SUBSCRIBERS_SUBMENU_SLUG, array($this, 'display_subscribers_options_page'));
|
470 |
-
$
|
471 |
// $preview_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Preview'), $this->__('Preview'), $perms, EZP_CS_Constants::$PREVIEW_SUBMENU_SLUG, array($this, 'display_preview_page'));
|
472 |
|
473 |
add_action('admin_print_scripts-' . $template_page_hook_suffix, array($this, 'enqueue_scripts'));
|
@@ -503,8 +503,8 @@ if (!class_exists('EZP_CS')) {
|
|
503 |
$this->display_options_page('page-subscribers.php');
|
504 |
}
|
505 |
|
506 |
-
function
|
507 |
-
$this->display_options_page('page-coming-soon-
|
508 |
}
|
509 |
|
510 |
function display_preview_page() {
|
467 |
$template_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Template'), $this->__('Template'), $perms, EZP_CS_Constants::$TEMPLATE_SUBMENU_SLUG, array($this, 'display_template_options_page'));
|
468 |
$settings_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Settings'), $this->__('Settings'), $perms, EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG, array($this, 'display_settings_options_page'));
|
469 |
$subscribers_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Subscribers'), $this->__('Subscribers'), $perms, EZP_CS_Constants::$SUBSCRIBERS_SUBMENU_SLUG, array($this, 'display_subscribers_options_page'));
|
470 |
+
$coming_soon_page_elite_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Coming Soon Page ELITE'), $this->__('Go Pro!'), $perms, EZP_CS_Constants::$COMING_SOON_PAGE_ELITE_SUBMENU_SLUG, array($this, 'display_coming_soon_page_elite_page'));
|
471 |
// $preview_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Easy Pie Coming Soon Preview'), $this->__('Preview'), $perms, EZP_CS_Constants::$PREVIEW_SUBMENU_SLUG, array($this, 'display_preview_page'));
|
472 |
|
473 |
add_action('admin_print_scripts-' . $template_page_hook_suffix, array($this, 'enqueue_scripts'));
|
503 |
$this->display_options_page('page-subscribers.php');
|
504 |
}
|
505 |
|
506 |
+
function display_coming_soon_page_elite_page() {
|
507 |
+
$this->display_options_page('page-coming-soon-page-elite.php');
|
508 |
}
|
509 |
|
510 |
function display_preview_page() {
|
easy-pie-coming-soon.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Coming Soon Page
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
-
Version: 0.
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
3 |
Plugin Name: Coming Soon Page
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
+
Version: 0.6.0
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
images/binoculars.png
ADDED
Binary file
|
images/cspe-screenshot-1a-1024x616.jpg
ADDED
Binary file
|
mini-themes/base-responsive/index.php
CHANGED
@@ -144,7 +144,7 @@ echo "
|
|
144 |
#email-collection-box { display:$email_display; }
|
145 |
#name-form-group { display:$name_display; }
|
146 |
#email-form-group { margin-left:auto;margin-right:auto;}
|
147 |
-
|
148 |
/* #name-input, #email-input { width: 180px; } */
|
149 |
|
150 |
#initial-section { display:$initial_section_display; }
|
@@ -198,11 +198,11 @@ echo "
|
|
198 |
<div id="name-form-group" class="form-group">
|
199 |
<label class="sr-only" for="ezp_cs_name"><?php EZP_CS_Utility::_e("Name"); ?></label>
|
200 |
<!-- Setting: {{name-placeholder}}-->
|
201 |
-
<input id="name-input" name="ezp_cs_name" type="text" class="form-control" placeholder="<?php echo $content->name_placeholder_text; ?>"/>
|
202 |
</div>
|
203 |
<div id="email-form-group" class="form-group">
|
204 |
<label class="sr-only" for="ezp_cs_email"><?php EZP_CS_Utility::_e("Email"); ?></label>
|
205 |
-
<input id="email-input" name="ezp_cs_email" type="email" class="form-control" placeholder="<?php echo $content->email_placeholder_text; ?>"/>
|
206 |
</div>
|
207 |
|
208 |
<button id="email-submit-button" form="email-collection-box" type="submit" class="btn btn-danger"><?php echo $content->email_button_text; ?></button>
|
144 |
#email-collection-box { display:$email_display; }
|
145 |
#name-form-group { display:$name_display; }
|
146 |
#email-form-group { margin-left:auto;margin-right:auto;}
|
147 |
+
/*#email-form-group, #name-form-group { width: 180px; }*/
|
148 |
/* #name-input, #email-input { width: 180px; } */
|
149 |
|
150 |
#initial-section { display:$initial_section_display; }
|
198 |
<div id="name-form-group" class="form-group">
|
199 |
<label class="sr-only" for="ezp_cs_name"><?php EZP_CS_Utility::_e("Name"); ?></label>
|
200 |
<!-- Setting: {{name-placeholder}}-->
|
201 |
+
<input required id="name-input" name="ezp_cs_name" type="text" class="form-control" placeholder="<?php echo $content->name_placeholder_text; ?>"/>
|
202 |
</div>
|
203 |
<div id="email-form-group" class="form-group">
|
204 |
<label class="sr-only" for="ezp_cs_email"><?php EZP_CS_Utility::_e("Email"); ?></label>
|
205 |
+
<input required id="email-input" name="ezp_cs_email" type="email" class="form-control" placeholder="<?php echo $content->email_placeholder_text; ?>"/>
|
206 |
</div>
|
207 |
|
208 |
<button id="email-submit-button" form="email-collection-box" type="submit" class="btn btn-danger"><?php echo $content->email_button_text; ?></button>
|
pages/page-coming-soon-page-elite.php
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<link href='https://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'/>
|
2 |
+
<style>
|
3 |
+
#post-1470 { background-color: rgb(238, 238, 238);}
|
4 |
+
h1.entry-title { display:none; }
|
5 |
+
table.cspe-pricing td { vertical-align:top; height: 20px;padding: 5px; width: 220px; }
|
6 |
+
table.cspe-pricing th { text-align:left; font-size: 2em; font-weight:bold; height: 20px;padding: 5px; width: 200px; }
|
7 |
+
table.cspe-pricing { margin-left:auto; margin-right: auto; }
|
8 |
+
.elite { color:rgb(71, 166, 70); font-style:italic}
|
9 |
+
li.elite { font-weight:bold; }
|
10 |
+
#screenshot-table { margin-bottom:20px;}
|
11 |
+
#screenshot-table tr td { text-align:center; padding:10px; }
|
12 |
+
#screenshot-table img { width:70%; }
|
13 |
+
.stylebox { background-color:white; border:1px solid #ddd;-webkit-box-shadow: 0 10px 6px -6px #777; -moz-box-shadow: 0 10px 6px -6px #777; box-shadow: 0 10px 6px -6px #777; padding: 19px; margin-top: 46px;width:900px}
|
14 |
+
.box-heading { font-size:3.5em; text-align:center; color: rgb(65, 123, 64);}
|
15 |
+
.cspe-button { width:103px; margin-left:auto; margin-right:auto; display:block; display:block;text-decoration:none!important; text-align:center; padding:20px; font-size:1.6em; background-color:red; border-radius:5px;-webkit-box-shadow: 0 10px 6px -6px #777; -moz-box-shadow: 0 10px 6px -6px #777; box-shadow: 0 10px 6px -6px #777;}
|
16 |
+
.cspe-button, .cspe-button:hover, .cspe-button:active, .cspe-button:visited { color:white!important;}
|
17 |
+
</style>
|
18 |
+
<div class="stylebox" >
|
19 |
+
<p style="font-size:1.5em;text-align:center;margin-bottom:10px">The Best Coming Soon Plugin on WordPress.org has been transformed.</p>
|
20 |
+
<p style="font-size:1.5em;text-align:center;margin-bottom:0px;">Introducing...</p>
|
21 |
+
<p style="text-align:center;font-size:4.5em; margin-top:-15px; margin-bottom:-5px;font-family: 'Dancing Script', cursive;color:rgb(65, 123, 64)">Coming Soon Page: Elite!</p>
|
22 |
+
<div>
|
23 |
+
<table id="screenshot-table">
|
24 |
+
<tr>
|
25 |
+
<td><img src="<?php echo EZP_CS_Utility::$PLUGIN_URL . '/images/cspe-screenshot-1a-1024x616.jpg'; ?>" alt="cspe-screenshot-1a" width="600" height="361" class="alignnone size-large wp-image-1569" /></td>
|
26 |
+
</tr>
|
27 |
+
</table>
|
28 |
+
</div>
|
29 |
+
<a target=_blank" style="margin-top:29px; margin-bottom:45px;" class="cspe-button" href="http://easypiewp.com#easy-pie-cspe-ordering" class="cspe-button"><?php EZP_CS_Utility::_e('Buy Now!'); ?></a>
|
30 |
+
<hr/>
|
31 |
+
<p style="margin-top:15px;" class="box-heading">Features</p>
|
32 |
+
<table class="cspe-pricing" style="margin-bottom:50px">
|
33 |
+
<tr>
|
34 |
+
<th>Emails</th>
|
35 |
+
<th>Social</th>
|
36 |
+
<th>Visuals</th>
|
37 |
+
<th>Experience</th>
|
38 |
+
</tr>
|
39 |
+
<tr>
|
40 |
+
<td>
|
41 |
+
<ul>
|
42 |
+
<li>Collect emails via simple form</li>
|
43 |
+
<li>CSV export of email list</li>
|
44 |
+
<li class="elite">MailChimp Integration</li>
|
45 |
+
</td>
|
46 |
+
<td>
|
47 |
+
<ul>
|
48 |
+
<li>Facebook</li>
|
49 |
+
<li>Twitter</li>
|
50 |
+
<li>Google+</li>
|
51 |
+
<li class="elite">Instagram</li>
|
52 |
+
<li class="elite">LinkedIn</li>
|
53 |
+
<li class="elite">Pinterest</li>
|
54 |
+
<li class="elite">SoundCloud</li>
|
55 |
+
<li class="elite">YouTube</li>
|
56 |
+
</ul>
|
57 |
+
</td>
|
58 |
+
<td>
|
59 |
+
<ul>
|
60 |
+
<li>Fully Responsive</li>
|
61 |
+
<li>CSS customizable</li>
|
62 |
+
<li>Add your own logo</li>
|
63 |
+
<li>Use built-in backgrounds or your own</li>
|
64 |
+
<li class="elite">New built-in backgrounds</li>
|
65 |
+
</ul>
|
66 |
+
</td>
|
67 |
+
<td>
|
68 |
+
<ul>
|
69 |
+
<li>Mega-simple</li>
|
70 |
+
<li>Countdown timer</li>
|
71 |
+
<li>No HTML required</li>
|
72 |
+
<li>Simple "Coming soon on" indicator</li>
|
73 |
+
<li>Preview from Admin panel</li>
|
74 |
+
<li>Choose 503 or 200 HTTP status</li>
|
75 |
+
<li>Selectively allow viewing certain URLs</li>
|
76 |
+
<li class="elite">Give people site access via different keyed URLs. Allows cutting off one group while allowing another continued access.</li>
|
77 |
+
</ul>
|
78 |
+
</td>
|
79 |
+
</tr>
|
80 |
+
</table>
|
81 |
+
<p class="elite">*Features only available in Elite, not Coming Soon Page standard</p>
|
82 |
+
<hr/>
|
83 |
+
<a target="_blank" style="margin-top:45px; margin-bottom:24px;" class="cspe-button" href="http://easypiewp.com#easy-pie-cspe-ordering" class="cspe-button"><?php EZP_CS_Utility::_e('Buy Now!'); ?></a>
|
84 |
+
</div>
|
85 |
+
|
pages/page-coming-soon-pro.php
DELETED
@@ -1,85 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Easy Pie Coming Soon Plugin
|
4 |
-
Copyright (C) 2014, Synthetic Thought LLC
|
5 |
-
website: easypiewp.com contact: bob@easypiewp.com
|
6 |
-
|
7 |
-
Easy Pie Coming Soon Plugin is distributed under the GNU General Public License, Version 3,
|
8 |
-
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
9 |
-
St, Fifth Floor, Boston, MA 02110, USA
|
10 |
-
|
11 |
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
12 |
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
13 |
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
14 |
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
15 |
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
16 |
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
17 |
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
18 |
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
19 |
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
20 |
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21 |
-
*/
|
22 |
-
?>
|
23 |
-
|
24 |
-
<style lang = "text/css">
|
25 |
-
.compound-setting { line-height:20px;
|
26 |
-
}
|
27 |
-
.narrow-input { width:66px;
|
28 |
-
}
|
29 |
-
.long-input { width: 345px;
|
30 |
-
}
|
31 |
-
|
32 |
-
#easy-pie-seedprod-coming-soon-pro, #easy-pie-seedprod-coming-soon-pro p { font-size: 1.2em!important; }
|
33 |
-
#easy-pie-seedprod-coming-soon-pro ul { list-style: circle; padding-left: 40px;}
|
34 |
-
#easy-pie-seedprod-coming-soon-pro li { line-height: 1.4em;}
|
35 |
-
</style>
|
36 |
-
|
37 |
-
<div class = "wrap">
|
38 |
-
|
39 |
-
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG);
|
40 |
-
?>
|
41 |
-
<h2>Coming Soon Pro</h2>
|
42 |
-
<?php
|
43 |
-
$global = EZP_CS_Global_Entity::get_instance();
|
44 |
-
|
45 |
-
$config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
46 |
-
|
47 |
-
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
48 |
-
?>
|
49 |
-
|
50 |
-
<div id="easypie-cs-options" class="inside">
|
51 |
-
<div class="postbox" style="padding:16px;" id="easy-pie-seedprod-coming-soon-pro">
|
52 |
-
<div style="text-align:center">
|
53 |
-
<a target="_blank" href="http://www.shareasale.com/r.cfm?b=576780&u=948111&m=51809&urllink=&afftrack="><img style="width:745px" src="<?php echo EZP_CS_Utility::$PLUGIN_URL . '/images/affiliates/banner-coming-soon-pro.jpg'?>" alt="SeedProd Coming Soon Pro" /></a>
|
54 |
-
|
55 |
-
<p>Our friends at SeedProd have created a great plugin: <strong><a target="_blank" href="http://www.shareasale.com/r.cfm?b=576780&u=948111&m=51809&urllink=&afftrack=">Coming Soon Pro!</strong></a></p>
|
56 |
-
</div>
|
57 |
-
|
58 |
-
<p style="font-weight:bold">Features</p>
|
59 |
-
<ul>
|
60 |
-
<li><span style="font-weight:bold">Social Follow Icons.</span> Twitter, Facebook, LinkedIn, Google+, YouTube, Flickr, Vimeo, Pinterest, Instagram, Foursquare, Tumblr, RSS</li>
|
61 |
-
<li><span style="font-weight:bold">Social Share Icons.</span> Twitter, Google+, LinkedIn, Pinterest, Tumblr</li>
|
62 |
-
<li><span style="font-weight:bold">Email Marketing Integrations.</span> MailChimp, Mad Mimi, AWeber, GetResponse, Constant Contact, Campaign Monitor, Gravity Forms</li>
|
63 |
-
<li><span style="font-weight:bold">Landing Page Mode.</span> Convert page into a landing page after launch</li>
|
64 |
-
<li><strong>Progress Bar.</strong> Let visitors know where you're at</li>
|
65 |
-
<li><strong>Shortcode Support.</strong> Use shortcodes right in your page!</li>
|
66 |
-
<li><strong>Google Fonts.</strong> Google's 600+ font library is at your disposal!</li>
|
67 |
-
<li><strong>Full Screen Slideshows.</strong> Go to the next level with full screen slideshows</li>
|
68 |
-
<li><strong>Let users view site</strong></li>
|
69 |
-
<ul>
|
70 |
-
<li>by IP</li>
|
71 |
-
<li>by Role</li>
|
72 |
-
<li>using secret link</li>
|
73 |
-
</ul>
|
74 |
-
</li>
|
75 |
-
<li><strong>Allows 3rd party web forms</strong> Use the web forms you've come to love in your page</li>
|
76 |
-
<li><strong>...and many more options!</strong></li>
|
77 |
-
</ul>
|
78 |
-
<p style="text-align:center; font-size:1.7em!important; margin-top:25px">
|
79 |
-
<a target="_blank" href="http://www.shareasale.com/r.cfm?b=576780&u=948111&m=51809&urllink=&afftrack=">Check out Coming Soon Pro!</a>
|
80 |
-
</p>
|
81 |
-
<p style="margin-top:20px;font-size:14px!important">Coming Soon Pro was not created by Easy Pie.</p>
|
82 |
-
</div>
|
83 |
-
</div>
|
84 |
-
</div>
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/page-options-settings.php
CHANGED
@@ -266,7 +266,7 @@
|
|
266 |
|
|
267 |
<a href="http://easypiewp.com/about/" target="_blank"><?php EZP_CS_Utility::_e('Contact') ?></a>
|
268 |
|
|
269 |
-
<a href="
|
270 |
</form>
|
271 |
</div>
|
272 |
</div>
|
266 |
|
|
267 |
<a href="http://easypiewp.com/about/" target="_blank"><?php EZP_CS_Utility::_e('Contact') ?></a>
|
268 |
|
|
269 |
+
<a href="http://easypiewp.com" target="_blank">Coming Soon Page ELITE</a>
|
270 |
</form>
|
271 |
</div>
|
272 |
</div>
|
pages/page-options.php
CHANGED
@@ -104,7 +104,7 @@ if (isset($_GET['tab'])) {
|
|
104 |
|
|
105 |
<a href="http://easypiewp.com/about/" target="_blank"><?php EZP_CS_Utility::_e('Contact') ?></a>
|
106 |
|
|
107 |
-
<a href="
|
108 |
</form>
|
109 |
</div>
|
110 |
</div>
|
104 |
|
|
105 |
<a href="http://easypiewp.com/about/" target="_blank"><?php EZP_CS_Utility::_e('Contact') ?></a>
|
106 |
|
|
107 |
+
<a href="http://easypiewp.com" target="_blank">Coming Soon Page ELITE</a>
|
108 |
</form>
|
109 |
</div>
|
110 |
</div>
|
pages/page-subscribers-list-tab.php
CHANGED
@@ -169,12 +169,11 @@ $config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
|
169 |
<button id="btn-next" <?php echo $next_disabled; ?> name="submit" type="submit" value="next" onclick="window.location = '<?php echo $next_url; ?>';
|
170 |
return false;"><?php EZP_CS_Utility::_e("Next"); ?><span style='float:right; margin-top:1px' class="ui-icon ui-icon-triangle-1-e"></span></button>
|
171 |
|
172 |
-
</div>
|
173 |
-
|
174 |
-
<?php echo EZP_CS_Utility::get_coupon_text(); ?>
|
175 |
</div>
|
176 |
</div>
|
177 |
</div>
|
178 |
<div id="easy-pie-cs-delete-confirm" title="<?php EZP_CS_Utility::_e('Delete User?'); ?>" >
|
179 |
-
<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span><span id='easy-pie-cs-delete-confirm-text'></span></p>
|
180 |
</div>
|
169 |
<button id="btn-next" <?php echo $next_disabled; ?> name="submit" type="submit" value="next" onclick="window.location = '<?php echo $next_url; ?>';
|
170 |
return false;"><?php EZP_CS_Utility::_e("Next"); ?><span style='float:right; margin-top:1px' class="ui-icon ui-icon-triangle-1-e"></span></button>
|
171 |
|
172 |
+
</div>
|
173 |
+
<p style="margin-top:17px; text-align:center;"><?php DUP_PRO_U::_e('Want to auto-sync to MailChimp?'); ?> Try <a target="_blank" href="http://easypiewp.com">Coming Soon Page Elite</a></p>
|
|
|
174 |
</div>
|
175 |
</div>
|
176 |
</div>
|
177 |
<div id="easy-pie-cs-delete-confirm" title="<?php EZP_CS_Utility::_e('Delete User?'); ?>" >
|
178 |
+
<p style="margin-top:17px; margin-bottom:-5px!important"><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span><span id='easy-pie-cs-delete-confirm-text'></span></p>
|
179 |
</div>
|
pages/page-subscribers.php
CHANGED
@@ -66,23 +66,19 @@ if (isset($_GET['tab'])) {
|
|
66 |
<?php
|
67 |
if ($active_tab == 'list') {
|
68 |
include 'page-subscribers-list-tab.php';
|
69 |
-
}
|
|
|
|
|
70 |
include 'page-subscribers-newsletter-tab.php';
|
71 |
-
}
|
72 |
?>
|
73 |
</div>
|
74 |
-
|
75 |
-
|
76 |
-
|
|
77 |
-
<a href="http://wordpress.org/support/view/plugin-reviews/easy-pie-coming-soon" target="_blank"><?php echo EZP_CS_Utility::__('Rate'); ?></a>
|
78 |
-
|
|
79 |
-
<a href="http://easypiewp.com/donate/" target="_blank"><?php EZP_CS_Utility::_e('Donate') ?></a>
|
80 |
-
|
|
81 |
-
<a href="http://easypiewp.com/about/" target="_blank"><?php EZP_CS_Utility::_e('Contact') ?></a>
|
82 |
-
|
|
83 |
-
<a href="<?php echo admin_url() . 'admin.php?page=' . EZP_CS_Constants::$COMING_SOON_PRO_SUBMENU_SLUG ?>">Coming Soon Pro</a>
|
84 |
-
|
85 |
</form>
|
|
|
|
|
|
|
86 |
</div>
|
87 |
</div>
|
88 |
|
66 |
<?php
|
67 |
if ($active_tab == 'list') {
|
68 |
include 'page-subscribers-list-tab.php';
|
69 |
+
}
|
70 |
+
else
|
71 |
+
{
|
72 |
include 'page-subscribers-newsletter-tab.php';
|
73 |
+
}
|
74 |
?>
|
75 |
</div>
|
76 |
+
|
77 |
+
<?php EZP_CS_Utility::echo_footer_links(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</form>
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
</div>
|
83 |
</div>
|
84 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bobriley
|
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.1
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -79,6 +79,9 @@ For the FAQ on the Coming Soon Page please visit the [Easy Pie Website](http://e
|
|
79 |
|
80 |
== Changelog ==
|
81 |
|
|
|
|
|
|
|
82 |
= 0.5.8 =
|
83 |
* Small tweaks
|
84 |
* Upped WordPress compatibility to 3.9.2
|
@@ -108,6 +111,9 @@ For the FAQ on the Coming Soon Page please visit the [Easy Pie Website](http://e
|
|
108 |
|
109 |
== Upgrade Notice ==
|
110 |
|
|
|
|
|
|
|
111 |
= 0.5.8 =
|
112 |
Small tweaks, upped WordPress compatibility to 3.9.2
|
113 |
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.1.1
|
7 |
+
Stable tag: 0.6.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 0.6.0 =
|
83 |
+
* Small tweaks
|
84 |
+
|
85 |
= 0.5.8 =
|
86 |
* Small tweaks
|
87 |
* Upped WordPress compatibility to 3.9.2
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
114 |
+
= 0.6.0 =
|
115 |
+
Small tweaks
|
116 |
+
|
117 |
= 0.5.8 =
|
118 |
Small tweaks, upped WordPress compatibility to 3.9.2
|
119 |
|