Version Description
- Minor Changes in Option Panel
- Added link to Video Tutorial
Download this release
Release Info
Developer | a.ankit |
Plugin | Easy Coming Soon |
Version | 1.8 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.8
coming-soon-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name:Easy Coming Soon
|
4 |
Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
|
5 |
-
Version: 1.
|
6 |
Author:Ankit Agarwal, Priyanshu Mittal
|
7 |
Author URI: http://webriti.com
|
8 |
Plugin URI: http://webriti.com/easy-coming-soon-pro-detail-page/
|
@@ -10,7 +10,7 @@
|
|
10 |
|
11 |
|
12 |
|
13 |
-
add_action('admin_menu','
|
14 |
|
15 |
|
16 |
/*
|
@@ -19,12 +19,12 @@
|
|
19 |
* Create the Plugin Menu
|
20 |
*
|
21 |
*/
|
22 |
-
function
|
23 |
{
|
24 |
|
25 |
$menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
|
26 |
|
27 |
-
add_action( 'admin_print_styles-' . $menu, '
|
28 |
}
|
29 |
|
30 |
/*
|
@@ -35,7 +35,7 @@
|
|
35 |
*/
|
36 |
|
37 |
|
38 |
-
function
|
39 |
{
|
40 |
// enqueue script for coming soon plugin
|
41 |
|
@@ -64,15 +64,15 @@
|
|
64 |
}
|
65 |
|
66 |
|
67 |
-
function
|
68 |
wp_register_style( 'custom_wp_admin_css', plugins_url('/css/ecs-admin-style.css',__FILE__), false, '1.0.0' );
|
69 |
wp_enqueue_style( 'custom_wp_admin_css' );
|
70 |
}
|
71 |
-
add_action( 'admin_enqueue_scripts', '
|
72 |
|
73 |
|
74 |
-
add_action('admin_bar_menu', '
|
75 |
-
function
|
76 |
{
|
77 |
global $wp_admin_bar;
|
78 |
$value=get_option('soon_page_settings');
|
@@ -196,8 +196,8 @@ function my_custom_menu()
|
|
196 |
*
|
197 |
*/
|
198 |
|
199 |
-
add_action('admin_enqueue_scripts', '
|
200 |
-
function
|
201 |
{
|
202 |
if ($hook == 'toplevel_page_coming_soon')
|
203 |
{
|
2 |
/*
|
3 |
Plugin Name:Easy Coming Soon
|
4 |
Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
|
5 |
+
Version: 1.8
|
6 |
Author:Ankit Agarwal, Priyanshu Mittal
|
7 |
Author URI: http://webriti.com
|
8 |
Plugin URI: http://webriti.com/easy-coming-soon-pro-detail-page/
|
10 |
|
11 |
|
12 |
|
13 |
+
add_action('admin_menu','cmgs_menu');
|
14 |
|
15 |
|
16 |
/*
|
19 |
* Create the Plugin Menu
|
20 |
*
|
21 |
*/
|
22 |
+
function cmgs_menu()
|
23 |
{
|
24 |
|
25 |
$menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
|
26 |
|
27 |
+
add_action( 'admin_print_styles-' . $menu, 'cmgs_plugin_js_css' );
|
28 |
}
|
29 |
|
30 |
/*
|
35 |
*/
|
36 |
|
37 |
|
38 |
+
function cmgs_plugin_js_css()
|
39 |
{
|
40 |
// enqueue script for coming soon plugin
|
41 |
|
64 |
}
|
65 |
|
66 |
|
67 |
+
function cmgs_wp_admin_style() {
|
68 |
wp_register_style( 'custom_wp_admin_css', plugins_url('/css/ecs-admin-style.css',__FILE__), false, '1.0.0' );
|
69 |
wp_enqueue_style( 'custom_wp_admin_css' );
|
70 |
}
|
71 |
+
add_action( 'admin_enqueue_scripts', 'cmgs_wp_admin_style' );
|
72 |
|
73 |
|
74 |
+
add_action('admin_bar_menu', 'cmgs_my_custom_menu', 1000);
|
75 |
+
function cmgs_my_custom_menu()
|
76 |
{
|
77 |
global $wp_admin_bar;
|
78 |
$value=get_option('soon_page_settings');
|
196 |
*
|
197 |
*/
|
198 |
|
199 |
+
add_action('admin_enqueue_scripts', 'cmgs_admin_enqueue_script');
|
200 |
+
function cmgs_admin_enqueue_script($hook)
|
201 |
{
|
202 |
if ($hook == 'toplevel_page_coming_soon')
|
203 |
{
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.webriti.com/
|
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,
|
5 |
Requires at least: 3.3+
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -110,6 +110,10 @@ In case you face any problem, contact us via the [Forums](http://wordpress.org/s
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
|
|
113 |
= 1.7 =
|
114 |
1. Option Panel revamped completely.
|
115 |
2. Added show smke tags.
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,
|
5 |
Requires at least: 3.3+
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 1.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 1.8 =
|
114 |
+
1. Minor Changes in Option Panel
|
115 |
+
2. Added link to Video Tutorial
|
116 |
+
|
117 |
= 1.7 =
|
118 |
1. Option Panel revamped completely.
|
119 |
2. Added show smke tags.
|
theme_options/pages/images/img/mailchimp snap.png
CHANGED
Binary file
|
theme_options/pages/images/img/multiple-mode.png
CHANGED
Binary file
|
theme_options/pages/images/img/video-thumb.jpg
ADDED
Binary file
|
theme_options/webriti_option_pannel.php
CHANGED
@@ -1,249 +1,310 @@
|
|
1 |
-
<div class="wrap settings-wrap" id="page-settings">
|
2 |
-
<h2><?php _e('Settings >>','commingsoon'); ?></h2>
|
3 |
-
<div id="option-tree-header-wrap">
|
4 |
-
<ul id="option-tree-header">
|
5 |
-
<li id=""><a href="" target="_blank"></a></li>
|
6 |
-
<li id="option-tree-version"><span><?php _e('Easy Coming Soon Plugin','commingsoon'); ?></span></li>
|
7 |
-
<a style="margin-right:16px;" target="_blank" href="<?php bloginfo("url"); ?>/?my_preview=true&TB_iframe=true&width=500&height=532" class="button button-primary button-large fb-btn"><?php _e('Preview','commingsoon'); ?></a>
|
8 |
-
<a style="margin-right:16px;" target="_blank" href="http://webriti.com/easy-coming-soon-pro-detail-page/" class="button button-primary button-large fb-btn"><?php _e('Upgrade to Pro version','commingsoon'); ?></a>
|
9 |
-
<a style="margin-right:16px;" target="_blank" href="https://wordpress.org/plugins/easy-coming-soon" class="button button-primary button-large fb-btn"><?php _e('Rate us on wordpress','commingsoon'); ?></a>
|
10 |
-
</ul>
|
11 |
-
|
12 |
-
</div>
|
13 |
-
<div id="option-tree-settings-api">
|
14 |
-
<div id="option-tree-sub-header"></div>
|
15 |
-
<div class = "ui-tabs ui-widget ui-widget-content ui-corner-all">
|
16 |
-
<ul>
|
17 |
-
|
18 |
-
<li id="tab_create_setting"><a href="#section_general"><?php _e('General Settings','commingsoon');?></a>
|
19 |
-
</li>
|
20 |
-
<li id="tab_design_setting"><a href="#section_design"><?php _e('Design','commingsoon');?></a>
|
21 |
-
</li>
|
22 |
-
<li id="tab_notification_setting"><a href="#section_notification"><?php _e('Notification','commingsoon');?></a>
|
23 |
-
</li>
|
24 |
-
<li id="tab_templates_setting"><a href="#section_templates"><?php _e('Templates','commingsoon');?></a>
|
25 |
-
</li>
|
26 |
-
<li id="tab_live_preview_setting"><a href="#section_live_preview"><?php _e('Live Preview','commingsoon');?></a>
|
27 |
-
</li>
|
28 |
-
<li id="tab_pro_features_setting"><a href="#section_pro_features"><?php _e('Pro Features','commingsoon');?></a>
|
29 |
-
</li>
|
30 |
-
<li id="tab_aboutpro_version_setting"><a href="#section_aboutpro_version"><?php _e('Whats included in the Pro Version','commingsoon');?></a>
|
31 |
-
</li>
|
32 |
-
<li id="tab_about_show_some_love"><a href="#section_about_show_some_love"><?php _e('Show Some Love','commingsoon');?></a>
|
33 |
-
</li>
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
<
|
164 |
-
|
165 |
-
<
|
166 |
-
</td>
|
167 |
-
<td style="
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
<a class="button button-primary button-large" target="_blank" href="
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
?>
|
1 |
+
<div class="wrap settings-wrap" id="page-settings">
|
2 |
+
<h2><?php _e('Settings >>','commingsoon'); ?></h2>
|
3 |
+
<div id="option-tree-header-wrap">
|
4 |
+
<ul id="option-tree-header">
|
5 |
+
<li id=""><a href="" target="_blank"></a></li>
|
6 |
+
<li id="option-tree-version"><span><?php _e('Easy Coming Soon Plugin','commingsoon'); ?></span></li>
|
7 |
+
<a style="margin-right:16px;" target="_blank" href="<?php bloginfo("url"); ?>/?my_preview=true&TB_iframe=true&width=500&height=532" class="button button-primary button-large fb-btn"><?php _e('Preview','commingsoon'); ?></a>
|
8 |
+
<a style="margin-right:16px;" target="_blank" href="http://webriti.com/easy-coming-soon-pro-detail-page/" class="button button-primary button-large fb-btn"><?php _e('Upgrade to Pro version','commingsoon'); ?></a>
|
9 |
+
<a style="margin-right:16px;" target="_blank" href="https://wordpress.org/plugins/easy-coming-soon" class="button button-primary button-large fb-btn"><?php _e('Rate us on wordpress','commingsoon'); ?></a>
|
10 |
+
</ul>
|
11 |
+
|
12 |
+
</div>
|
13 |
+
<div id="option-tree-settings-api">
|
14 |
+
<div id="option-tree-sub-header"></div>
|
15 |
+
<div class = "ui-tabs ui-widget ui-widget-content ui-corner-all">
|
16 |
+
<ul>
|
17 |
+
|
18 |
+
<li id="tab_create_setting"><a href="#section_general"><?php _e('General Settings','commingsoon');?></a>
|
19 |
+
</li>
|
20 |
+
<li id="tab_design_setting"><a href="#section_design"><?php _e('Design','commingsoon');?></a>
|
21 |
+
</li>
|
22 |
+
<li id="tab_notification_setting"><a href="#section_notification"><?php _e('Notification','commingsoon');?></a>
|
23 |
+
</li>
|
24 |
+
<li id="tab_templates_setting"><a href="#section_templates"><?php _e('Templates','commingsoon');?></a>
|
25 |
+
</li>
|
26 |
+
<li id="tab_live_preview_setting"><a href="#section_live_preview"><?php _e('Live Preview','commingsoon');?></a>
|
27 |
+
</li>
|
28 |
+
<li id="tab_pro_features_setting"><a href="#section_pro_features"><?php _e('Pro Features','commingsoon');?></a>
|
29 |
+
</li>
|
30 |
+
<li id="tab_aboutpro_version_setting"><a href="#section_aboutpro_version"><?php _e('Whats included in the Pro Version','commingsoon');?></a>
|
31 |
+
</li>
|
32 |
+
<li id="tab_about_show_some_love"><a href="#section_about_show_some_love"><?php _e('Show Some Love','commingsoon');?></a>
|
33 |
+
</li>
|
34 |
+
<li id="tab_about_vid_tutorial"><a href="#section_about_vid_tutorial"><?php _e('Video Tutorial','commingsoon');?></a>
|
35 |
+
</li>
|
36 |
+
|
37 |
+
</ul>
|
38 |
+
<div id="poststuff" class="metabox-holder">
|
39 |
+
<div id="post-body">
|
40 |
+
<div id="post-body-content">
|
41 |
+
<div id="section_general" class = "postbox">
|
42 |
+
<div class="inside">
|
43 |
+
<div id="setting_theme_options_ui_text" class="format-settings">
|
44 |
+
<div class="format-setting-wrap">
|
45 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/header_page_settings.php' ); ?>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
|
51 |
+
|
52 |
+
<div id="section_design" class = "postbox">
|
53 |
+
<div class="inside">
|
54 |
+
<div id="design_customization_settings" class="format-settings">
|
55 |
+
<div class="format-setting-wrap">
|
56 |
+
<div class = "format-setting type-textarea has-desc">
|
57 |
+
<div class = "format-setting-inner">
|
58 |
+
|
59 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/design_page_settings.php' ); ?>
|
60 |
+
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
</div>
|
64 |
+
</div>
|
65 |
+
</div>
|
66 |
+
</div>
|
67 |
+
|
68 |
+
|
69 |
+
<div id="section_notification" class = "postbox">
|
70 |
+
<div class="inside">
|
71 |
+
<div id="design_customization_settings" class="format-settings">
|
72 |
+
<div class="format-setting-wrap">
|
73 |
+
<div class = "format-setting type-textarea has-desc">
|
74 |
+
<div class = "format-setting-inner">
|
75 |
+
|
76 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/notification_page_setting.php' ); ?>
|
77 |
+
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
</div>
|
83 |
+
</div>
|
84 |
+
|
85 |
+
<div id="section_templates" class = "postbox">
|
86 |
+
<div class="inside">
|
87 |
+
<div id="design_customization_settings" class="format-settings">
|
88 |
+
<div class="format-setting-wrap">
|
89 |
+
<div class = "format-setting type-textarea has-desc">
|
90 |
+
<div class = "format-setting-inner">
|
91 |
+
|
92 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/template_page_settings.php' ); ?>
|
93 |
+
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
</div>
|
98 |
+
</div>
|
99 |
+
</div>
|
100 |
+
|
101 |
+
|
102 |
+
<div id="section_live_preview" class = "postbox">
|
103 |
+
<div class="inside">
|
104 |
+
<div id="design_customization_settings" class="format-settings">
|
105 |
+
<div class="format-setting-wrap">
|
106 |
+
<div class = "format-setting type-textarea has-desc">
|
107 |
+
<div class = "format-setting-inner">
|
108 |
+
|
109 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/live_preview_settings.php' ); ?>
|
110 |
+
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</div>
|
116 |
+
</div>
|
117 |
+
|
118 |
+
|
119 |
+
<div id="section_pro_features" class = "postbox">
|
120 |
+
<div class="inside">
|
121 |
+
<div id="design_customization_settings" class="format-settings">
|
122 |
+
<div class="format-setting-wrap">
|
123 |
+
<div class = "format-setting type-textarea has-desc">
|
124 |
+
<div class = "format-setting-inner">
|
125 |
+
|
126 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/pro_features_settings.php' ); ?>
|
127 |
+
|
128 |
+
</div>
|
129 |
+
</div>
|
130 |
+
</div>
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
<div id="section_aboutpro_version" class = "postbox">
|
138 |
+
<div class="inside">
|
139 |
+
<div id="design_customization_settings" class="format-settings">
|
140 |
+
<div class="format-setting-wrap">
|
141 |
+
<div class = "format-setting type-textarea has-desc">
|
142 |
+
<div class = "format-setting-inner">
|
143 |
+
|
144 |
+
<?php load_template( dirname( __FILE__ ) . '/pages/aboutpro_version_settings.php' ); ?>
|
145 |
+
|
146 |
+
</div>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
</div>
|
150 |
+
</div>
|
151 |
+
</div>
|
152 |
+
|
153 |
+
<div id="section_about_show_some_love" class = "postbox">
|
154 |
+
<div class="inside">
|
155 |
+
<div id="design_customization_settings" class="format-settings">
|
156 |
+
<div class="format-setting-wrap">
|
157 |
+
<div class = "format-setting type-textarea has-desc">
|
158 |
+
<div class = "format-setting-inner">
|
159 |
+
<div class="block ui-tabs-panel active" id="option-ui-id-5" >
|
160 |
+
<form method="post" id="commingsoon_lite_theme_options_5">
|
161 |
+
<div id="heading">
|
162 |
+
<table style="width:100%;"><tr>
|
163 |
+
<td><h2><?php _e('Show Some Love','commingsoon');?></h2>
|
164 |
+
<br>
|
165 |
+
<p>Like this plugin? Show your support by:</p>
|
166 |
+
</td>
|
167 |
+
<td style="width:30%;">
|
168 |
+
</td>
|
169 |
+
<td style="text-align:right;">
|
170 |
+
|
171 |
+
</tr>
|
172 |
+
</table>
|
173 |
+
</div>
|
174 |
+
|
175 |
+
<div class="section">
|
176 |
+
<a class="button button-primary button-large" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/easy-coming-soon">Rate It</a>
|
177 |
+
<a class="button button-primary button-large" target="_blank" href="http://twitter.com/share?url=https%3A%2F%2Fwordpress.org%2Fplugins%2Feasy-coming-soon%2F&text=Check out this awesome %23WordPress Plugin I'm using, Easy Coming Soon by @webriti"><i class="fa fa-twitter"></i>Tweet It</a>
|
178 |
+
<a class="button button-primary button-large" target="_blank" href="http://webriti.com/easy-coming-soon-pro-detail-page/">Buy Pro</a>
|
179 |
+
</div>
|
180 |
+
</form>
|
181 |
+
</div>
|
182 |
+
</div>
|
183 |
+
</div>
|
184 |
+
</div>
|
185 |
+
</div>
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
<div id="section_about_vid_tutorial" class = "postbox">
|
193 |
+
<div class="inside">
|
194 |
+
<div id="design_customization_settings" class="format-settings">
|
195 |
+
<div class="format-setting-wrap">
|
196 |
+
<div class = "format-setting type-textarea has-desc">
|
197 |
+
<div class = "format-setting-inner">
|
198 |
+
<div class="block ui-tabs-panel active" id="option-ui-id-5" >
|
199 |
+
<form method="post" id="commingsoon_lite_theme_options_5">
|
200 |
+
<div id="heading">
|
201 |
+
<table style="width:100%;"><tr>
|
202 |
+
<td><h2><?php _e('Fully Functional Coming Soon Page in 30 minutes','commingsoon');?></h2>
|
203 |
+
<br>
|
204 |
+
<p>In this <a target = "_blank" href = "https://www.youtube.com/watch?v=jwXOO9DDSpY"> Video Tutorial </a> , I will demonstrate how you can create a fully functional Coming Soon Page in as little as 30 minutes.</p>
|
205 |
+
<p> Here is what we the Landing page will look like.
|
206 |
+
<div class="span6" style="width:100%">
|
207 |
+
<img style="height:50%; width:50%" src="<?php echo plugins_url('/pages/images/img/video-thumb.jpg',__FILE__);?>" alt="" style="width:100%">
|
208 |
+
</div>
|
209 |
+
<br></br>
|
210 |
+
|
211 |
+
<b>This video tutorial is for the premium version of the plugin. As you can see, it has:</b>
|
212 |
+
<br></br>
|
213 |
+
|
214 |
+
<ul>1. Company Logo</ul>
|
215 |
+
<ul>2. An Image Slide Show BackGround</ul>
|
216 |
+
<ul>3. Email Capture Box, with option to Capture First Name and Last Name</ul>
|
217 |
+
<ul>4. CountDown Timer</ul>
|
218 |
+
<ul>5. A Progress Bar</ul>
|
219 |
+
<ul>6. Social Media Icons</ul>
|
220 |
+
<ul>7. The Video also contains a brief overview of the features like Multiple Templates, Ip based access, Newsletter Integration etc. </ul>
|
221 |
+
|
222 |
+
|
223 |
+
</p>The premium version is priced at 29 USD and lets you use the plugin on unlimited website. </p>
|
224 |
+
<p>Here is the <a target = "_blank" href = "https://www.youtube.com/watch?v=jwXOO9DDSpY">link to the Video.</a> Enjoy!!!</p>
|
225 |
+
</td>
|
226 |
+
<td style="width:30%;">
|
227 |
+
</td>
|
228 |
+
<td style="text-align:right;">
|
229 |
+
|
230 |
+
</tr>
|
231 |
+
</table>
|
232 |
+
</div>
|
233 |
+
|
234 |
+
|
235 |
+
</form>
|
236 |
+
</div>
|
237 |
+
</div>
|
238 |
+
</div>
|
239 |
+
</div>
|
240 |
+
</div>
|
241 |
+
</div>
|
242 |
+
</div>
|
243 |
+
|
244 |
+
|
245 |
+
|
246 |
+
|
247 |
+
|
248 |
+
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
</div>
|
252 |
+
<div class="webriti-submenu" style="height:35px;">
|
253 |
+
<div class="webriti-submenu-links" style="margin-top:5px;">
|
254 |
+
<form method="POST">
|
255 |
+
<input type="submit" onclick="return confirm( 'Click OK to reset theme data. Theme settings will be lost!' );" value="Restore All Defaults" name="restore_all_defaults" id="restore_all_defaults" class="reset-button btn">
|
256 |
+
<form>
|
257 |
+
</div><!-- webriti-submenu-links -->
|
258 |
+
</div>
|
259 |
+
<div class="clear"></div>
|
260 |
+
</div>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
+
|
264 |
+
<?php
|
265 |
+
$general_default_settings = array(
|
266 |
+
|
267 |
+
// general page settings
|
268 |
+
|
269 |
+
'status'=>'1',
|
270 |
+
'background'=>'',
|
271 |
+
'title'=>'',
|
272 |
+
'descrip'=>'',
|
273 |
+
'google_code'=>'',
|
274 |
+
'fb'=>'',
|
275 |
+
'twit'=>'',
|
276 |
+
'gp'=>''
|
277 |
+
|
278 |
+
);
|
279 |
+
$design_page_setting = array(
|
280 |
+
|
281 |
+
// design page settings
|
282 |
+
'background_color'=>'#21759B',
|
283 |
+
'title_color'=>'#ffffff',
|
284 |
+
'descrip_color'=>'#ffffff',
|
285 |
+
'title_font_size'=>'30',
|
286 |
+
'title_font_format'=>'Arial Black, sans-serif',
|
287 |
+
'description_font_size'=>'20',
|
288 |
+
'description_font_format'=>'Verdana, Geneva, sans-serif',
|
289 |
+
'background_effect'=>'0'
|
290 |
+
|
291 |
+
);
|
292 |
+
$notification_default_settings = array(
|
293 |
+
|
294 |
+
// notification page settings
|
295 |
+
|
296 |
+
'mailto'=>'no',
|
297 |
+
'email_address'=>'',
|
298 |
+
'message'=>'Thanks for subscribing this page',
|
299 |
+
'sb_btn'=>'',
|
300 |
+
'placeholder_text'=>''
|
301 |
+
|
302 |
+
);
|
303 |
+
// Restore all defaults
|
304 |
+
if(isset($_POST['restore_all_defaults']))
|
305 |
+
{
|
306 |
+
update_option('soon_page_settings',$general_default_settings);
|
307 |
+
update_option('soon_page_desgin_settings',$design_page_setting);
|
308 |
+
update_option('soon_page_notification_settings',$notification_default_settings);
|
309 |
+
}
|
310 |
?>
|