Version Description
- Minor Changes in Option Panel
Download this release
Release Info
Developer | a.ankit |
Plugin | Easy Coming Soon |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.1
- coming-soon-plugin.php +524 -521
- js/spa-tab.js +96 -82
- pro-detail.php +285 -0
- pro.php +605 -605
- readme.txt +4 -1
coming-soon-plugin.php
CHANGED
@@ -1,522 +1,525 @@
|
|
1 |
-
<?php
|
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
|
6 |
-
Author:Deepesh paiwal, ANkit Agarwal
|
7 |
-
Author URI: http://webriti.com
|
8 |
-
Plugin URI: http://webriti.com
|
9 |
-
*/
|
10 |
-
add_action('admin_menu','coming_soon_menu');
|
11 |
-
|
12 |
-
|
13 |
-
/*
|
14 |
-
* Coming Soon menu
|
15 |
-
*
|
16 |
-
* Create the Plugin Menu
|
17 |
-
*
|
18 |
-
*/
|
19 |
-
function coming_soon_menu()
|
20 |
-
{
|
21 |
-
|
22 |
-
$menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
|
23 |
-
|
24 |
-
add_action( 'admin_print_styles-' . $menu, 'coming_soon_plugin_js_css' );
|
25 |
-
}
|
26 |
-
|
27 |
-
/*
|
28 |
-
* Coming Soon plugin js and css
|
29 |
-
*
|
30 |
-
* attach file css and js from plugin directory
|
31 |
-
*
|
32 |
-
*/
|
33 |
-
|
34 |
-
|
35 |
-
function coming_soon_plugin_js_css()
|
36 |
-
{
|
37 |
-
// enqueue script for coming soon plugin
|
38 |
-
|
39 |
-
|
40 |
-
wp_enqueue_script( 'theme-preview' );
|
41 |
-
wp_enqueue_script('tab',plugins_url('/js/spa-tab.js',__FILE__));
|
42 |
-
// wp_enqueue_script('tab-content',plugins_url('/js/jquery.option.tree.js',__FILE__));
|
43 |
-
wp_enqueue_script('media-uploads',plugins_url('/js/media-upload-script.js',__FILE__),array('media-upload','thickbox','jquery'));
|
44 |
-
wp_enqueue_script('my-color-picker-script', plugins_url('js/my-color-picker-script.js',__FILE__), array( 'wp-color-picker' ), false, true );
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
wp_enqueue_style('dashboard');
|
50 |
-
|
51 |
-
wp_enqueue_style('wp-color-picker');
|
52 |
-
//enqueue css for coming soon plugin
|
53 |
-
wp_enqueue_style('spa_flexslider', plugins_url('/css/theme-admin.css',__FILE__));
|
54 |
-
wp_enqueue_style('classic',plugins_url('/css/style-classic.css',__FILE__));
|
55 |
-
wp_enqueue_style('option',plugins_url('/css/style-option.css',__FILE__));
|
56 |
-
wp_enqueue_style('bootsrap',plugins_url('/css/cs-bootstrap.css',__FILE__));
|
57 |
-
wp_enqueue_style('thickbox');
|
58 |
-
wp_enqueue_style('farbtasticss',plugins_url('/css/farbtasticss.css',__FILE__));
|
59 |
-
|
60 |
-
|
61 |
-
}
|
62 |
-
|
63 |
-
|
64 |
-
function load_custom_wp_admin_style() {
|
65 |
-
wp_register_style( 'custom_wp_admin_css', plugins_url('/css/ecs-admin-style.css',__FILE__), false, '1.0.0' );
|
66 |
-
wp_enqueue_style( 'custom_wp_admin_css' );
|
67 |
-
}
|
68 |
-
add_action( 'admin_enqueue_scripts', 'load_custom_wp_admin_style' );
|
69 |
-
|
70 |
-
|
71 |
-
add_action('admin_bar_menu', 'my_custom_menu', 1000);
|
72 |
-
function my_custom_menu()
|
73 |
-
{
|
74 |
-
global $wp_admin_bar;
|
75 |
-
$value=get_option('soon_page_settings');
|
76 |
-
if($value['status']=='0') return;
|
77 |
-
// Add Parent Menu
|
78 |
-
$argsParent=array(
|
79 |
-
'id' => 'myCustomMenu',
|
80 |
-
'title' => 'Coming Soon Mode Enable',
|
81 |
-
//'parent' => 'top-secondary',
|
82 |
-
'href' => '?page=coming_soon',
|
83 |
-
'meta' => array( 'class' => 'ecs-mode-enable' ),
|
84 |
-
);
|
85 |
-
$wp_admin_bar->add_menu($argsParent);
|
86 |
-
|
87 |
-
|
88 |
-
}
|
89 |
-
|
90 |
-
|
91 |
-
/*
|
92 |
-
* Construction
|
93 |
-
*
|
94 |
-
* This function is render all setting page on coming soon plugin page
|
95 |
-
*
|
96 |
-
*/
|
97 |
-
function construction()
|
98 |
-
{ ?>
|
99 |
-
<style>
|
100 |
-
.screenshot{
|
101 |
-
|
102 |
-
max-height: 30%;
|
103 |
-
max-width: 30%;
|
104 |
-
padding: 5px;
|
105 |
-
margin-right:10px;
|
106 |
-
margin-top: 10px;
|
107 |
-
margin-bottom:10px;
|
108 |
-
border: 1px solid #a4bbcd;
|
109 |
-
background: #a4bbcd;
|
110 |
-
-moz-border-radius: 3px;
|
111 |
-
-khtml-border-radius: 3px;
|
112 |
-
-webkit-border-radius: 3px;
|
113 |
-
border-radius: 3px;
|
114 |
-
}
|
115 |
-
</style>
|
116 |
-
|
117 |
-
<!-- div "wrap" is start to get all setting page in warpper -->
|
118 |
-
<div class="wrap" id="framework_wrap">
|
119 |
-
|
120 |
-
<!-- div class icon32 is start to attach coming soon icon on top page heading -->
|
121 |
-
|
122 |
-
<!-- div class icon32 is close -->
|
123 |
-
<div class="plugin-title">
|
124 |
-
|
125 |
-
<span style="float:left;margin-left:5px">
|
126 |
-
<!-- coming soon plugin headline -->
|
127 |
-
<h1 ><img style="vertical-align:middle" src="<?php echo plugins_url('/images/Home-icon.png',__FILE__); ?>"/> <?php _e('Easy Coming Soon Plugin');?></h1>
|
128 |
-
</span>
|
129 |
-
<span style="float:right;margin-right:1%;padding-top:20px;">
|
130 |
-
<a class="btn btn-primary " href="http://wordpress.org/plugins/easy-coming-soon/" target="_new"><img style="vertical-align:middle" src="<?php echo plugins_url('/images/star.png',__FILE__); ?>"/> <?php _e('Rate us on Wordpress','');?></a>
|
131 |
-
<a class="btn btn-danger " href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new"><?php _e('Upgrade to Pro version','');?></a>
|
132 |
-
<a class="btn btn-success" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new"><?php _e('View Pro Demo','');?></a>
|
133 |
-
</span>
|
134 |
-
</div>
|
135 |
-
<div class="one-third">
|
136 |
-
|
137 |
-
<!--div content_wrap is start -->
|
138 |
-
<div id="content_wrap">
|
139 |
-
<!-- div content is start to add content in tabs-->
|
140 |
-
<div id="content">
|
141 |
-
<!-- div options_tabs is start to add tab list in left side of warpper -->
|
142 |
-
<div id="options_tabs" class="ui-tabs ">
|
143 |
-
<ul class="options_tabs ui-tabs-nav" role="tablist" id="nav">
|
144 |
-
<li class="active" role="tab" tabindex="0" aria-controls="option_general_default" aria-labelledby="ui-id-1" aria-selected="true"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-1"><img src="<?php echo plugins_url('images/general.png',__FILE__)?>" /> <?php _e('General');?></a>
|
145 |
-
</li>
|
146 |
-
|
147 |
-
<li role="tab" tabindex="-1" aria-controls="option_demo_header" aria-labelledby="ui-id-2" aria-selected="true">
|
148 |
-
<a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-2"><img src="<?php echo plugins_url('images/design.png',__FILE__)?>" /> <?php _e('Design');?></a>
|
149 |
-
</li>
|
150 |
-
<li role="tab" tabindex="-1" aria-controls="option_color_header" aria-labelledby="ui-id-5" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-5"><img src="<?php echo plugins_url('images/message.png',__FILE__)?>" /> <?php _e('Notification');?></a>
|
151 |
-
</li>
|
152 |
-
</li>
|
153 |
-
<li role="tab" tabindex="-1" aria-controls="option_color_templates" aria-labelledby="ui-id-8" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-8"><img src="<?php echo plugins_url('images/template.png',__FILE__)?>" /> <?php _e('Templates');?></a>
|
154 |
-
</li>
|
155 |
-
<li><a href="<?php echo home_url(); ?>?my_preview=true&TB_iframe=true&width=500&height=532" title="<?php _e('Live Preview Window') ?>" class="ui-tabs-anchor thickbox-preview" ><img src="<?php echo plugins_url('images/icon_on.png',__FILE__)?>" /> <?php _e('Live Preview');?> </a>
|
156 |
-
</li>
|
157 |
-
<li role="tab" tabindex="-1" aria-controls="option_color_header" aria-labelledby="ui-id-6" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-6" style="font-size:16px;line-height:1.2"><strong><img style="vertical-align:middle" src="<?php echo plugins_url('images/plugin-naked1.png',__FILE__)?>" /> <?php _e('
|
158 |
-
</li>
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
<!-- tab-
|
166 |
-
<?php
|
167 |
-
<!-- tab-
|
168 |
-
<?php include('
|
169 |
-
|
170 |
-
<?php include('
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
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 |
-
add_action
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
*
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
$
|
254 |
-
|
255 |
-
|
256 |
-
$
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
'
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
*
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
$
|
294 |
-
|
295 |
-
$
|
296 |
-
$
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
'
|
305 |
-
'
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
*
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
$
|
332 |
-
$
|
333 |
-
$
|
334 |
-
$
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
'
|
342 |
-
'
|
343 |
-
'
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
*
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
$
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
'
|
378 |
-
'
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
*
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
$
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
'
|
419 |
-
'
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
*
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
//
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
|
|
|
|
|
|
522 |
?>
|
1 |
+
<?php
|
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.1
|
6 |
+
Author:Deepesh paiwal, ANkit Agarwal
|
7 |
+
Author URI: http://webriti.com
|
8 |
+
Plugin URI: http://webriti.com
|
9 |
+
*/
|
10 |
+
add_action('admin_menu','coming_soon_menu');
|
11 |
+
|
12 |
+
|
13 |
+
/*
|
14 |
+
* Coming Soon menu
|
15 |
+
*
|
16 |
+
* Create the Plugin Menu
|
17 |
+
*
|
18 |
+
*/
|
19 |
+
function coming_soon_menu()
|
20 |
+
{
|
21 |
+
|
22 |
+
$menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
|
23 |
+
|
24 |
+
add_action( 'admin_print_styles-' . $menu, 'coming_soon_plugin_js_css' );
|
25 |
+
}
|
26 |
+
|
27 |
+
/*
|
28 |
+
* Coming Soon plugin js and css
|
29 |
+
*
|
30 |
+
* attach file css and js from plugin directory
|
31 |
+
*
|
32 |
+
*/
|
33 |
+
|
34 |
+
|
35 |
+
function coming_soon_plugin_js_css()
|
36 |
+
{
|
37 |
+
// enqueue script for coming soon plugin
|
38 |
+
|
39 |
+
|
40 |
+
wp_enqueue_script( 'theme-preview' );
|
41 |
+
wp_enqueue_script('tab',plugins_url('/js/spa-tab.js',__FILE__));
|
42 |
+
// wp_enqueue_script('tab-content',plugins_url('/js/jquery.option.tree.js',__FILE__));
|
43 |
+
wp_enqueue_script('media-uploads',plugins_url('/js/media-upload-script.js',__FILE__),array('media-upload','thickbox','jquery'));
|
44 |
+
wp_enqueue_script('my-color-picker-script', plugins_url('js/my-color-picker-script.js',__FILE__), array( 'wp-color-picker' ), false, true );
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
wp_enqueue_style('dashboard');
|
50 |
+
|
51 |
+
wp_enqueue_style('wp-color-picker');
|
52 |
+
//enqueue css for coming soon plugin
|
53 |
+
wp_enqueue_style('spa_flexslider', plugins_url('/css/theme-admin.css',__FILE__));
|
54 |
+
wp_enqueue_style('classic',plugins_url('/css/style-classic.css',__FILE__));
|
55 |
+
wp_enqueue_style('option',plugins_url('/css/style-option.css',__FILE__));
|
56 |
+
wp_enqueue_style('bootsrap',plugins_url('/css/cs-bootstrap.css',__FILE__));
|
57 |
+
wp_enqueue_style('thickbox');
|
58 |
+
wp_enqueue_style('farbtasticss',plugins_url('/css/farbtasticss.css',__FILE__));
|
59 |
+
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
|
64 |
+
function load_custom_wp_admin_style() {
|
65 |
+
wp_register_style( 'custom_wp_admin_css', plugins_url('/css/ecs-admin-style.css',__FILE__), false, '1.0.0' );
|
66 |
+
wp_enqueue_style( 'custom_wp_admin_css' );
|
67 |
+
}
|
68 |
+
add_action( 'admin_enqueue_scripts', 'load_custom_wp_admin_style' );
|
69 |
+
|
70 |
+
|
71 |
+
add_action('admin_bar_menu', 'my_custom_menu', 1000);
|
72 |
+
function my_custom_menu()
|
73 |
+
{
|
74 |
+
global $wp_admin_bar;
|
75 |
+
$value=get_option('soon_page_settings');
|
76 |
+
if($value['status']=='0') return;
|
77 |
+
// Add Parent Menu
|
78 |
+
$argsParent=array(
|
79 |
+
'id' => 'myCustomMenu',
|
80 |
+
'title' => 'Coming Soon Mode Enable',
|
81 |
+
//'parent' => 'top-secondary',
|
82 |
+
'href' => '?page=coming_soon',
|
83 |
+
'meta' => array( 'class' => 'ecs-mode-enable' ),
|
84 |
+
);
|
85 |
+
$wp_admin_bar->add_menu($argsParent);
|
86 |
+
|
87 |
+
|
88 |
+
}
|
89 |
+
|
90 |
+
|
91 |
+
/*
|
92 |
+
* Construction
|
93 |
+
*
|
94 |
+
* This function is render all setting page on coming soon plugin page
|
95 |
+
*
|
96 |
+
*/
|
97 |
+
function construction()
|
98 |
+
{ ?>
|
99 |
+
<style>
|
100 |
+
.screenshot{
|
101 |
+
|
102 |
+
max-height: 30%;
|
103 |
+
max-width: 30%;
|
104 |
+
padding: 5px;
|
105 |
+
margin-right:10px;
|
106 |
+
margin-top: 10px;
|
107 |
+
margin-bottom:10px;
|
108 |
+
border: 1px solid #a4bbcd;
|
109 |
+
background: #a4bbcd;
|
110 |
+
-moz-border-radius: 3px;
|
111 |
+
-khtml-border-radius: 3px;
|
112 |
+
-webkit-border-radius: 3px;
|
113 |
+
border-radius: 3px;
|
114 |
+
}
|
115 |
+
</style>
|
116 |
+
|
117 |
+
<!-- div "wrap" is start to get all setting page in warpper -->
|
118 |
+
<div class="wrap" id="framework_wrap">
|
119 |
+
|
120 |
+
<!-- div class icon32 is start to attach coming soon icon on top page heading -->
|
121 |
+
|
122 |
+
<!-- div class icon32 is close -->
|
123 |
+
<div class="plugin-title">
|
124 |
+
|
125 |
+
<span style="float:left;margin-left:5px">
|
126 |
+
<!-- coming soon plugin headline -->
|
127 |
+
<h1 ><img style="vertical-align:middle" src="<?php echo plugins_url('/images/Home-icon.png',__FILE__); ?>"/> <?php _e('Easy Coming Soon Plugin');?></h1>
|
128 |
+
</span>
|
129 |
+
<span style="float:right;margin-right:1%;padding-top:20px;">
|
130 |
+
<a class="btn btn-primary " href="http://wordpress.org/plugins/easy-coming-soon/" target="_new"><img style="vertical-align:middle" src="<?php echo plugins_url('/images/star.png',__FILE__); ?>"/> <?php _e('Rate us on Wordpress','');?></a>
|
131 |
+
<a class="btn btn-danger " href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new"><?php _e('Upgrade to Pro version','');?></a>
|
132 |
+
<a class="btn btn-success" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new"><?php _e('View Pro Demo','');?></a>
|
133 |
+
</span>
|
134 |
+
</div>
|
135 |
+
<div class="one-third">
|
136 |
+
|
137 |
+
<!--div content_wrap is start -->
|
138 |
+
<div id="content_wrap">
|
139 |
+
<!-- div content is start to add content in tabs-->
|
140 |
+
<div id="content">
|
141 |
+
<!-- div options_tabs is start to add tab list in left side of warpper -->
|
142 |
+
<div id="options_tabs" class="ui-tabs ">
|
143 |
+
<ul class="options_tabs ui-tabs-nav" role="tablist" id="nav">
|
144 |
+
<li class="active" role="tab" tabindex="0" aria-controls="option_general_default" aria-labelledby="ui-id-1" aria-selected="true"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-1"><img src="<?php echo plugins_url('images/general.png',__FILE__)?>" /> <?php _e('General');?></a>
|
145 |
+
</li>
|
146 |
+
|
147 |
+
<li role="tab" tabindex="-1" aria-controls="option_demo_header" aria-labelledby="ui-id-2" aria-selected="true">
|
148 |
+
<a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-2"><img src="<?php echo plugins_url('images/design.png',__FILE__)?>" /> <?php _e('Design');?></a>
|
149 |
+
</li>
|
150 |
+
<li role="tab" tabindex="-1" aria-controls="option_color_header" aria-labelledby="ui-id-5" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-5"><img src="<?php echo plugins_url('images/message.png',__FILE__)?>" /> <?php _e('Notification');?></a>
|
151 |
+
</li>
|
152 |
+
</li>
|
153 |
+
<li role="tab" tabindex="-1" aria-controls="option_color_templates" aria-labelledby="ui-id-8" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-8"><img src="<?php echo plugins_url('images/template.png',__FILE__)?>" /> <?php _e('Templates');?></a>
|
154 |
+
</li>
|
155 |
+
<li><a href="<?php echo home_url(); ?>?my_preview=true&TB_iframe=true&width=500&height=532" title="<?php _e('Live Preview Window') ?>" class="ui-tabs-anchor thickbox-preview" ><img src="<?php echo plugins_url('images/icon_on.png',__FILE__)?>" /> <?php _e('Live Preview');?> </a>
|
156 |
+
</li>
|
157 |
+
<li role="tab" tabindex="-1" aria-controls="option_color_header" aria-labelledby="ui-id-6" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-6" style="font-size:16px;line-height:1.2"><strong><img style="vertical-align:middle" src="<?php echo plugins_url('images/plugin-naked1.png',__FILE__)?>" /> <?php _e('Pro Features');?></strong></a>
|
158 |
+
</li>
|
159 |
+
<li role="tab" tabindex="-1" aria-controls="option_color_header" aria-labelledby="ui-id-6" aria-selected="false"><a href="#" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-9" style="font-size:15px;line-height:1.2"><strong><img style="vertical-align:middle" src="<?php echo plugins_url('images/plugin-naked1.png',__FILE__)?>" /> <?php _e('Whats included in the Pro Version');?></strong></a>
|
160 |
+
</li>
|
161 |
+
<div id="nav-shadow"></div>
|
162 |
+
</ul>
|
163 |
+
|
164 |
+
<!-- Apply script for call open window on live preview button for preview coming soon page-->
|
165 |
+
<!-- tab-1 to add general settings on right side of coming soon plugin wrapper -->
|
166 |
+
<?php require_once('general-settings.php');?>
|
167 |
+
<!-- tab-2 to add design settings on right side of coming soon plugin wrappers-->
|
168 |
+
<?php include('design-settings.php');?>
|
169 |
+
<!-- tab-3 to add notification settings on right side of coming soon plugin wrappers-->
|
170 |
+
<?php include('notification-settings.php');?>
|
171 |
+
<!-- tab-5 pro Feature-->
|
172 |
+
<?php include('pro.php');?>
|
173 |
+
<?php include('templates.php');?>
|
174 |
+
<?php include('pro-detail.php');?>
|
175 |
+
<br class="clear">
|
176 |
+
</div><!-- end div of option_tabs -->
|
177 |
+
</div><!-- end div of content -->
|
178 |
+
</div><!-- end div of content_wrap -->
|
179 |
+
</div> <!-- end of div one third-->
|
180 |
+
<div class="plugin-title1">
|
181 |
+
|
182 |
+
|
183 |
+
</div>
|
184 |
+
|
185 |
+
|
186 |
+
</div> <!-- end of div wrap -->
|
187 |
+
<!--One Forth Part Right End-->
|
188 |
+
<?php
|
189 |
+
}
|
190 |
+
|
191 |
+
/*
|
192 |
+
* add_action to call coming_soon_general_page_save_settings
|
193 |
+
*/
|
194 |
+
|
195 |
+
add_action('wp_ajax_coming_soon_page_settings', 'coming_soon_general_page_save_settings');
|
196 |
+
|
197 |
+
/*
|
198 |
+
* Function coming_soon_general_page_save_settings function
|
199 |
+
*
|
200 |
+
* To get data from general setting page after "save settings" by ajax post
|
201 |
+
*
|
202 |
+
*/
|
203 |
+
|
204 |
+
function coming_soon_general_page_save_settings()
|
205 |
+
{
|
206 |
+
//when ajax action call to post data from general settings page
|
207 |
+
if(isset($_POST['action']) == "coming_soon_page_settings")
|
208 |
+
{
|
209 |
+
$status = $_POST['status'];
|
210 |
+
$background = $_POST['background'];
|
211 |
+
$title = $_POST['title'];
|
212 |
+
$descrip = stripslashes($_POST['descrip']);
|
213 |
+
$google_code = stripslashes($_POST['google_code']);
|
214 |
+
|
215 |
+
|
216 |
+
$fb = $_POST['fb'];
|
217 |
+
$twit = $_POST['twit'];
|
218 |
+
$gp = $_POST['gp'];
|
219 |
+
|
220 |
+
//all data is sotre in array form
|
221 |
+
$general_page_save_setting = array( 'status' => $status,
|
222 |
+
'background' => $background,
|
223 |
+
'title' => $title,
|
224 |
+
'descrip' => $descrip,
|
225 |
+
'google_code' => $google_code,
|
226 |
+
|
227 |
+
|
228 |
+
'fb' => $fb,
|
229 |
+
'twit' => $twit,
|
230 |
+
'gp' => $gp
|
231 |
+
);
|
232 |
+
// data is insert into option table
|
233 |
+
update_option("soon_page_settings", $general_page_save_setting);
|
234 |
+
}
|
235 |
+
}
|
236 |
+
|
237 |
+
/*
|
238 |
+
* add_action to call coming_soon_general_page_reset_settings
|
239 |
+
*/
|
240 |
+
|
241 |
+
add_action('wp_ajax_coming_soon_page_reset_settings', 'coming_soon_general_page_reset_settings');
|
242 |
+
|
243 |
+
/*
|
244 |
+
* Function coming_soon_general_page_reset_settings
|
245 |
+
*
|
246 |
+
* To get data from general setting page after "reset data" by ajax post
|
247 |
+
*
|
248 |
+
*/
|
249 |
+
function coming_soon_general_page_reset_settings()
|
250 |
+
{
|
251 |
+
if(isset($_POST['action']) == "coming_soon_page_reset_settings")
|
252 |
+
{
|
253 |
+
$status = "1";
|
254 |
+
$background = "";
|
255 |
+
$title = "";
|
256 |
+
$descrip = "";
|
257 |
+
$google_code = "";
|
258 |
+
|
259 |
+
$fb = "";
|
260 |
+
$twit ="";
|
261 |
+
$gp = "";
|
262 |
+
|
263 |
+
$general_page_reset_setting = array( 'status' => $status,
|
264 |
+
'background' => $background,
|
265 |
+
'title' => $title,
|
266 |
+
'descrip' => $descrip,
|
267 |
+
'google_code' => $google_code,
|
268 |
+
|
269 |
+
'fb' => $fb,
|
270 |
+
'twit' => $twit,
|
271 |
+
'gp' => $gp
|
272 |
+
);
|
273 |
+
//send data into option table by update option
|
274 |
+
update_option("soon_page_settings", $general_page_reset_setting);
|
275 |
+
}
|
276 |
+
}
|
277 |
+
|
278 |
+
/*
|
279 |
+
* add_action to call coming_soon_design_page_save_settings function
|
280 |
+
*/
|
281 |
+
add_action('wp_ajax_coming_soon_page_design_settings', 'coming_soon_page_design_save_settings');
|
282 |
+
|
283 |
+
/*
|
284 |
+
* Function coming_soon_design_page_save_settings
|
285 |
+
*
|
286 |
+
* To get data from design setting page after "save settings" by ajax post
|
287 |
+
*
|
288 |
+
*/
|
289 |
+
function coming_soon_page_design_save_settings()
|
290 |
+
{
|
291 |
+
if(isset($_POST['action']) == "coming_soon_page_design_settings")
|
292 |
+
{
|
293 |
+
$background_color = $_POST['background_color'];
|
294 |
+
$title_color = $_POST['title_color'];
|
295 |
+
$title_font_size = $_POST['pxselect_post_title'];
|
296 |
+
$title_font_format = $_POST['font_family_post_title'];
|
297 |
+
$descrip_color = $_POST['descrip_color'];
|
298 |
+
$description_font_size = $_POST['pxselect_post_entry'];
|
299 |
+
$description_font_format = $_POST['font_family_post_description'];
|
300 |
+
$background_effect= $_POST['background_effect'];
|
301 |
+
|
302 |
+
$design_settings_save_setting = array( 'background_color' => $background_color,
|
303 |
+
'title_color' => $title_color,
|
304 |
+
'title_font_size' => $title_font_size,
|
305 |
+
'title_font_format' => $title_font_format,
|
306 |
+
'descrip_color' => $descrip_color,
|
307 |
+
'description_font_size' => $description_font_size,
|
308 |
+
'description_font_format' => $description_font_format,
|
309 |
+
'background_effect'=>$background_effect,
|
310 |
+
);
|
311 |
+
|
312 |
+
update_option("soon_page_desgin_settings", $design_settings_save_setting);
|
313 |
+
}
|
314 |
+
}
|
315 |
+
|
316 |
+
/*
|
317 |
+
* add_action to call coming_soon_design_page_reset_settings function
|
318 |
+
*/
|
319 |
+
add_action('wp_ajax_coming_soon_page_design_reset_settings', 'coming_soon_page_design_reset_settings');
|
320 |
+
|
321 |
+
/*
|
322 |
+
* Function coming_soon_design_page_reset_settings
|
323 |
+
*
|
324 |
+
* To get data from design setting page after "reset settings" by ajax post
|
325 |
+
*
|
326 |
+
*/
|
327 |
+
function coming_soon_page_design_reset_settings()
|
328 |
+
{
|
329 |
+
if(isset($_POST['action']) == "coming_soon_page_design_reset_settings")
|
330 |
+
{
|
331 |
+
$background_color ="#21759B";
|
332 |
+
$title_color = "#ffffff";
|
333 |
+
$descrip_color ="#ffffff";
|
334 |
+
$title_font_size = "30";
|
335 |
+
$title_font_format = "Arial Black, sans-serif";
|
336 |
+
$description_font_size ="20";
|
337 |
+
$description_font_format = "Verdana, Geneva, sans-serif";
|
338 |
+
$background_effect = "0";
|
339 |
+
|
340 |
+
$design_page_reset_setting = array( 'background_color' => $background_color,
|
341 |
+
'title_color' => $title_color,
|
342 |
+
'descrip_color' => $descrip_color,
|
343 |
+
'title_font_size' => $title_font_size,
|
344 |
+
'title_font_format' => $title_font_format,
|
345 |
+
'description_font_size' => $description_font_size,
|
346 |
+
'description_font_format' => $description_font_format,
|
347 |
+
'background_effect'=>$background_effect,
|
348 |
+
);
|
349 |
+
|
350 |
+
update_option("soon_page_desgin_settings", $design_page_reset_setting);
|
351 |
+
}
|
352 |
+
}
|
353 |
+
/*
|
354 |
+
* add_action to call coming_soon_page_notification_settings function
|
355 |
+
*/
|
356 |
+
add_action('wp_ajax_coming_soon_page_notification_settings', 'coming_soon_page_notification_settings');
|
357 |
+
/*
|
358 |
+
* Function coming_soon_Notification_page_save_settings
|
359 |
+
*
|
360 |
+
* To get data from notification setting page after "save settings" by ajax post
|
361 |
+
*
|
362 |
+
*/
|
363 |
+
function coming_soon_page_notification_settings()
|
364 |
+
{
|
365 |
+
if(isset($_POST['action']) == "coming_soon_page_notification_settings")
|
366 |
+
{
|
367 |
+
$mailto = ($_POST['mailto']);
|
368 |
+
$email_address = ($_POST['email_address']);
|
369 |
+
$message = ($_POST['message']);
|
370 |
+
$sb_btn = ($_POST['sb_btn']);
|
371 |
+
$placeholder_text = ($_POST['placeholder_text']);
|
372 |
+
|
373 |
+
|
374 |
+
//all data is store in array form
|
375 |
+
$notification_page_save_setting = array(
|
376 |
+
|
377 |
+
'mailto' => $mailto,
|
378 |
+
'email_address' => $email_address,
|
379 |
+
'message' => $message,
|
380 |
+
'sb_btn' => $sb_btn,
|
381 |
+
'placeholder_text' => $placeholder_text,
|
382 |
+
|
383 |
+
);
|
384 |
+
// data is insert into option table
|
385 |
+
update_option("soon_page_notification_settings", $notification_page_save_setting);
|
386 |
+
|
387 |
+
|
388 |
+
}
|
389 |
+
}
|
390 |
+
|
391 |
+
|
392 |
+
/*
|
393 |
+
* add_action to call coming_soon_page_reset_notification_settings function
|
394 |
+
*/
|
395 |
+
add_action('wp_ajax_coming_soon_page_reset_notification_settings', 'coming_soon_page_reset_notification_settings');
|
396 |
+
/*
|
397 |
+
* Function coming_soon_Notification_page_save_settings
|
398 |
+
*
|
399 |
+
* To get data from notification setting page after "reset settings" by ajax post
|
400 |
+
*
|
401 |
+
*/
|
402 |
+
function coming_soon_page_reset_notification_settings()
|
403 |
+
{
|
404 |
+
if(isset($_POST['action']) == "coming_soon_page_reset_notification_settings")
|
405 |
+
{
|
406 |
+
|
407 |
+
$mailto = "no";
|
408 |
+
$email_address ="";
|
409 |
+
$message = "Thanks for subscribing this page";
|
410 |
+
$sb_btn ="";
|
411 |
+
$placeholder_text="";
|
412 |
+
|
413 |
+
|
414 |
+
|
415 |
+
//all data is sotre in array form
|
416 |
+
$notification_page_reset_setting = array(
|
417 |
+
|
418 |
+
'mailto' => $mailto,
|
419 |
+
'email_address' => $email_address,
|
420 |
+
'message' => $message,
|
421 |
+
'sb_btn' => $sb_btn,
|
422 |
+
'placeholder_text' => $placeholder_text,
|
423 |
+
|
424 |
+
|
425 |
+
);
|
426 |
+
// data is insert into option table
|
427 |
+
update_option("soon_page_notification_settings", $notification_page_reset_setting);
|
428 |
+
|
429 |
+
}
|
430 |
+
}
|
431 |
+
/*
|
432 |
+
* Function my_page_template_redirect
|
433 |
+
*
|
434 |
+
* To redirect our site url by coming soon page,after redirecting only our coming soon page can display
|
435 |
+
*
|
436 |
+
*/
|
437 |
+
function my_page_template_redirect()
|
438 |
+
{
|
439 |
+
//get status value from option table for enable or disable coming soon page
|
440 |
+
$value=get_option('soon_page_settings');
|
441 |
+
|
442 |
+
//condition matching if status is not disable for coming soon then page is redirect
|
443 |
+
if($value['status']!=='0')
|
444 |
+
{
|
445 |
+
if(!is_feed())
|
446 |
+
{
|
447 |
+
//if user not login page is redirect on coming soon template page
|
448 |
+
if ( !is_user_logged_in() )
|
449 |
+
{
|
450 |
+
//get path of our coming soon display page and redirecting
|
451 |
+
$file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
|
452 |
+
include($file);
|
453 |
+
exit();
|
454 |
+
}
|
455 |
+
}
|
456 |
+
//if user is log-in then we check role.
|
457 |
+
if (is_user_logged_in() )
|
458 |
+
{
|
459 |
+
//get logined in user role
|
460 |
+
global $current_user;
|
461 |
+
get_currentuserinfo();
|
462 |
+
$LoggedInUserID = $current_user->ID;
|
463 |
+
$UserData = get_userdata( $LoggedInUserID );
|
464 |
+
//if user role not 'administrator' redirect him to message page
|
465 |
+
if($UserData->roles[0] != "administrator")
|
466 |
+
{
|
467 |
+
if(!is_feed())
|
468 |
+
{
|
469 |
+
$file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
|
470 |
+
include($file);
|
471 |
+
exit();
|
472 |
+
}
|
473 |
+
}
|
474 |
+
}
|
475 |
+
}
|
476 |
+
}
|
477 |
+
|
478 |
+
/*
|
479 |
+
* add action to call function my_page_template_redirect
|
480 |
+
*/
|
481 |
+
// add_action( 'template_redirect', 'my_page_template_redirect' );
|
482 |
+
|
483 |
+
//get page for live preview when my_preview is true,that mean when this page is call on live preview
|
484 |
+
if ( (isset($_GET['my_preview']) && $_GET['my_preview'] == 'true') )
|
485 |
+
{
|
486 |
+
$file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
|
487 |
+
include($file);
|
488 |
+
exit();
|
489 |
+
}
|
490 |
+
|
491 |
+
|
492 |
+
|
493 |
+
/*
|
494 |
+
* We will wrap the template redirect action in this function. We will check if the page is wp-login.php.
|
495 |
+
The template redirect action will not be called on login pages.
|
496 |
+
*/
|
497 |
+
|
498 |
+
add_action('init','ecs_skip_redirect_on_login');
|
499 |
+
|
500 |
+
function ecs_skip_redirect_on_login ()
|
501 |
+
|
502 |
+
{
|
503 |
+
global $pagenow;
|
504 |
+
if ('wp-login.php' == $pagenow)
|
505 |
+
{
|
506 |
+
return;
|
507 |
+
|
508 |
+
} else
|
509 |
+
{
|
510 |
+
add_action( 'template_redirect', 'my_page_template_redirect' );
|
511 |
+
|
512 |
+
|
513 |
+
}
|
514 |
+
|
515 |
+
|
516 |
+
}
|
517 |
+
|
518 |
+
|
519 |
+
|
520 |
+
|
521 |
+
|
522 |
+
|
523 |
+
|
524 |
+
|
525 |
?>
|
js/spa-tab.js
CHANGED
@@ -1,82 +1,96 @@
|
|
1 |
-
jQuery(document).ready(function()
|
2 |
-
{
|
3 |
-
jQuery('#ui-id-1').click(function(){
|
4 |
-
jQuery('#option_general').show();
|
5 |
-
|
6 |
-
jQuery('#option_footer').hide();
|
7 |
-
jQuery('#option_home').hide();
|
8 |
-
jQuery('#option_typography').hide();
|
9 |
-
jQuery('#coming_soon_pro').hide();
|
10 |
-
jQuery('#option_templates').hide();
|
11 |
-
});
|
12 |
-
jQuery('#ui-id-2').click(function(){
|
13 |
-
jQuery('#option_typography').show();
|
14 |
-
jQuery('#option_general').hide();
|
15 |
-
|
16 |
-
jQuery('#option_footer').hide();
|
17 |
-
jQuery('#option_home').hide();
|
18 |
-
jQuery('#coming_soon_pro').hide();
|
19 |
-
jQuery('#option_templates').hide();
|
20 |
-
});
|
21 |
-
/* jQuery('#ui-id-3').click(function(){
|
22 |
-
jQuery('#option_logo_header').show();
|
23 |
-
jQuery('#option_general').hide();
|
24 |
-
jQuery('#option_typography').hide();
|
25 |
-
jQuery('#option_footer').hide();
|
26 |
-
jQuery('#option_home').hide();
|
27 |
-
}); */
|
28 |
-
jQuery('#ui-id-4').click(function(){
|
29 |
-
jQuery('#option_footer').hide();
|
30 |
-
jQuery('#option_general').show();
|
31 |
-
jQuery('#option_typography').hide();
|
32 |
-
|
33 |
-
jQuery('#option_home').hide();
|
34 |
-
jQuery('#coming_soon_pro').hide();
|
35 |
-
jQuery('#option_templates').hide();
|
36 |
-
});
|
37 |
-
jQuery('#ui-id-5').click(function(){
|
38 |
-
jQuery('#option_home').show();
|
39 |
-
jQuery('#option_general').hide();
|
40 |
-
jQuery('#option_typography').hide();
|
41 |
-
|
42 |
-
jQuery('#option_footer').hide();
|
43 |
-
jQuery('#coming_soon_pro').hide();
|
44 |
-
jQuery('#option_templates').hide();
|
45 |
-
});
|
46 |
-
jQuery('#ui-id-6').click(function(){
|
47 |
-
jQuery('#option_home').hide();
|
48 |
-
jQuery('#option_general').hide();
|
49 |
-
jQuery('#option_typography').hide();
|
50 |
-
|
51 |
-
jQuery('#option_footer').hide();
|
52 |
-
jQuery('#coming_soon_pro').show();
|
53 |
-
jQuery('#img-right').hide();
|
54 |
-
jQuery('#option_templates').hide();
|
55 |
-
});
|
56 |
-
jQuery('#ui-id-8').click(function(){
|
57 |
-
jQuery('#option_templates').show();
|
58 |
-
jQuery('#option_home').hide();
|
59 |
-
jQuery('#option_general').hide();
|
60 |
-
jQuery('#option_typography').hide();
|
61 |
-
|
62 |
-
jQuery('#option_footer').hide();
|
63 |
-
jQuery('#coming_soon_pro').hide();
|
64 |
-
|
65 |
-
jQuery('#img-right').hide();
|
66 |
-
});
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function()
|
2 |
+
{
|
3 |
+
jQuery('#ui-id-1').click(function(){
|
4 |
+
jQuery('#option_general').show();
|
5 |
+
|
6 |
+
jQuery('#option_footer').hide();
|
7 |
+
jQuery('#option_home').hide();
|
8 |
+
jQuery('#option_typography').hide();
|
9 |
+
jQuery('#coming_soon_pro').hide();
|
10 |
+
jQuery('#option_templates').hide();
|
11 |
+
});
|
12 |
+
jQuery('#ui-id-2').click(function(){
|
13 |
+
jQuery('#option_typography').show();
|
14 |
+
jQuery('#option_general').hide();
|
15 |
+
|
16 |
+
jQuery('#option_footer').hide();
|
17 |
+
jQuery('#option_home').hide();
|
18 |
+
jQuery('#coming_soon_pro').hide();
|
19 |
+
jQuery('#option_templates').hide();
|
20 |
+
});
|
21 |
+
/* jQuery('#ui-id-3').click(function(){
|
22 |
+
jQuery('#option_logo_header').show();
|
23 |
+
jQuery('#option_general').hide();
|
24 |
+
jQuery('#option_typography').hide();
|
25 |
+
jQuery('#option_footer').hide();
|
26 |
+
jQuery('#option_home').hide();
|
27 |
+
}); */
|
28 |
+
jQuery('#ui-id-4').click(function(){
|
29 |
+
jQuery('#option_footer').hide();
|
30 |
+
jQuery('#option_general').show();
|
31 |
+
jQuery('#option_typography').hide();
|
32 |
+
|
33 |
+
jQuery('#option_home').hide();
|
34 |
+
jQuery('#coming_soon_pro').hide();
|
35 |
+
jQuery('#option_templates').hide();
|
36 |
+
});
|
37 |
+
jQuery('#ui-id-5').click(function(){
|
38 |
+
jQuery('#option_home').show();
|
39 |
+
jQuery('#option_general').hide();
|
40 |
+
jQuery('#option_typography').hide();
|
41 |
+
|
42 |
+
jQuery('#option_footer').hide();
|
43 |
+
jQuery('#coming_soon_pro').hide();
|
44 |
+
jQuery('#option_templates').hide();
|
45 |
+
});
|
46 |
+
jQuery('#ui-id-6').click(function(){
|
47 |
+
jQuery('#option_home').hide();
|
48 |
+
jQuery('#option_general').hide();
|
49 |
+
jQuery('#option_typography').hide();
|
50 |
+
|
51 |
+
jQuery('#option_footer').hide();
|
52 |
+
jQuery('#coming_soon_pro').show();
|
53 |
+
jQuery('#img-right').hide();
|
54 |
+
jQuery('#option_templates').hide();
|
55 |
+
});
|
56 |
+
jQuery('#ui-id-8').click(function(){
|
57 |
+
jQuery('#option_templates').show();
|
58 |
+
jQuery('#option_home').hide();
|
59 |
+
jQuery('#option_general').hide();
|
60 |
+
jQuery('#option_typography').hide();
|
61 |
+
|
62 |
+
jQuery('#option_footer').hide();
|
63 |
+
jQuery('#coming_soon_pro').hide();
|
64 |
+
|
65 |
+
jQuery('#img-right').hide();
|
66 |
+
});
|
67 |
+
|
68 |
+
|
69 |
+
jQuery('#ui-id-9').click(function(){
|
70 |
+
jQuery('#option_templates').hide();
|
71 |
+
jQuery('#option_home').hide();
|
72 |
+
jQuery('#option_general').hide();
|
73 |
+
jQuery('#option_typography').hide();
|
74 |
+
|
75 |
+
jQuery('#option_footer').hide();
|
76 |
+
jQuery('#coming_soon_pro').hide();
|
77 |
+
jQuery('#coming_soon_pro_detail').show();
|
78 |
+
|
79 |
+
jQuery('#img-right').hide();
|
80 |
+
});
|
81 |
+
|
82 |
+
|
83 |
+
});
|
84 |
+
|
85 |
+
// js to active the link of option pannel
|
86 |
+
jQuery(document).ready(function() {
|
87 |
+
jQuery('ul.options_tabs li ').click(function() {
|
88 |
+
jQuery('ul.options_tabs li ').removeClass('active');
|
89 |
+
jQuery(this).addClass('active');
|
90 |
+
});
|
91 |
+
});
|
92 |
+
|
93 |
+
//js to for tabs..
|
94 |
+
/* jQuery(function() {
|
95 |
+
jQuery( "#tabs" ).tabs();
|
96 |
+
}); */
|
pro-detail.php
ADDED
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style>
|
2 |
+
.span6 h3{
|
3 |
+
font: 33px/29px "Helvetica Neue","Helvetica Neue",Helvetica,Arial,sans-serif;
|
4 |
+
color: #000;
|
5 |
+
-webkit-font-smoothing: antialiased;
|
6 |
+
}
|
7 |
+
.span6 p{
|
8 |
+
font-size: 20px;
|
9 |
+
font-family: "Source Sans Pro",sans-serif;
|
10 |
+
color: #707070;
|
11 |
+
line-height:1.8;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* =Tooltips style
|
15 |
+
========================================================================*/
|
16 |
+
|
17 |
+
.icon1 {
|
18 |
+
display: inline-block;
|
19 |
+
width: 13px;
|
20 |
+
height: 13px;
|
21 |
+
position: relative;
|
22 |
+
padding: 0 0px 0 0;
|
23 |
+
vertical-align: middle;
|
24 |
+
|
25 |
+
background: url(<?php echo plugins_url('images/icons1.png',__FILE__) ?>) no-repeat;
|
26 |
+
}
|
27 |
+
|
28 |
+
.tooltip1 {
|
29 |
+
display: none;
|
30 |
+
width: 200px;
|
31 |
+
position: absolute;
|
32 |
+
padding: 10px;
|
33 |
+
margin: 4px 0 0 4px;
|
34 |
+
top: 0;
|
35 |
+
left: 16px;
|
36 |
+
border: 1px solid #76B6D7;
|
37 |
+
border-radius: 0 8px 8px 8px;
|
38 |
+
background: #bedffe;
|
39 |
+
font-size: 13px;
|
40 |
+
box-shadow: 0 1px 2px -1px #21759B;
|
41 |
+
z-index: 999;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* Icons Sprite Position */
|
45 |
+
|
46 |
+
.help {
|
47 |
+
background-position: 0 0;
|
48 |
+
}
|
49 |
+
|
50 |
+
.warning {
|
51 |
+
background-position: -20px 0;
|
52 |
+
}
|
53 |
+
|
54 |
+
.error {
|
55 |
+
background-position: -40px 0;
|
56 |
+
}
|
57 |
+
|
58 |
+
/* Tooltip Colors */
|
59 |
+
|
60 |
+
.help .tooltip1 {
|
61 |
+
border-color: #76B6D7;
|
62 |
+
background-color: #bedffe;
|
63 |
+
box-shadow-color: #21759B;
|
64 |
+
}
|
65 |
+
|
66 |
+
.warning .tooltip1 {
|
67 |
+
border-color: #cca863;
|
68 |
+
background-color: #ffff70;
|
69 |
+
box-shadow-color: #ac8c4e;
|
70 |
+
}
|
71 |
+
|
72 |
+
.error .tooltip1 {
|
73 |
+
border-color: #b50d0d;
|
74 |
+
background-color: #e44d4e;
|
75 |
+
box-shadow-color: #810606;
|
76 |
+
}
|
77 |
+
|
78 |
+
.icon1:hover .tooltip1 {
|
79 |
+
display: block;
|
80 |
+
box-shadow: 0 10px 20px -1px rgba(0,0,0,0.5);
|
81 |
+
|
82 |
+
|
83 |
+
}
|
84 |
+
</style>
|
85 |
+
<div class="block ui-tabs-panel ui-widget-content ui-corner-bottom" id="coming_soon_pro_detail" aria-labelledby="ui-id-9" style="display: none;" >
|
86 |
+
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
87 |
+
|
88 |
+
<div class="span6" style="width:80%;margin-top: auto;text-align:center">
|
89 |
+
<h3 style="font-size: 45px;
|
90 |
+
font-style: normal;
|
91 |
+
font-weight: 900;
|
92 |
+
line-height:1.1;
|
93 |
+
color: #000;
|
94 |
+
letter-spacing: -1px;
|
95 |
+
text-align: center;
|
96 |
+
">Coming Soon Pro Features</h3>
|
97 |
+
<p style="font-size: 18px;
|
98 |
+
font-style: normal;
|
99 |
+
|
100 |
+
color: #707070;
|
101 |
+
text-align: left;">Hey There, <br><br>Thanks for using the lite version of Easy Coming Soon. I hope the plugin will enable you to quickly and easily create a landing page.<br><br>
|
102 |
+
|
103 |
+
If you are looking to create a more feature rich landing page then I would suggest you to have a look at the premium version of the Easy Coming Soon Plugin.
|
104 |
+
It has a lot of additional features which will allow you to quickly create a good looking landing page. <br><br>
|
105 |
+
|
106 |
+
I would suggest you to checkout the <a href = "http://webriti.com/demo/plugins/easycomingsoon/" target="_blank">Sample Coming Soon Page</a> created by the premium version of the plugin. <br><br>
|
107 |
+
Also Check out the Admin Panel <a href = "http://webriti.com/coming-soon-demo-select/" target="_blank">here</a>. User Login: user and Password: user
|
108 |
+
<br><br>
|
109 |
+
</p>
|
110 |
+
</div>
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
</div>
|
116 |
+
|
117 |
+
<!-- Email Capture Feature Start -->
|
118 |
+
|
119 |
+
<div class = "row" style="margin-left:25px;background:#f7f7f7;">
|
120 |
+
<h3 style="margin-left:25px;">Here is the complete List of Features in Pro Version </h3><br>
|
121 |
+
</div>
|
122 |
+
<div class="row" style="margin-left:10px;background:white;padding-top:70px;padding-bottom:70px;">
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
<div class="span6" style="width:84%;margin-top: auto;margin-left:5%; font-size:15px;">
|
127 |
+
|
128 |
+
<h3>1. Multiple Design Templates </h3>
|
129 |
+
<p>A Launch Page can play an important role in branding so we made sure that all included templates are good looking. <br>
|
130 |
+
As a user you just have to fill in the data via option panel and a Coming Soon Page will be created as per the selected template.</p>
|
131 |
+
|
132 |
+
|
133 |
+
<h3>2. Email Capture Form</h3>
|
134 |
+
<p>A Launch Page is ideal for collecting Email address of the interested visitors. You can quickly setup a Email Capture Form and Start collecting Email Address. All the Emails are stored on in your Website Database </p>
|
135 |
+
|
136 |
+
<h3>3. Newsletter / Autoresponder Integration</h3>
|
137 |
+
<p>Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , CampaignMonitor and Madmimi. You can connect the plugin to third party services and started building your Email List
|
138 |
+
</p>
|
139 |
+
|
140 |
+
<h3>4. User White List</h3>
|
141 |
+
|
142 |
+
<p>This feature is very useful if you are building the website for a client. With this feature you can allow client / contributor to view the live site while all others will be presented with the Coming Soon Page. </p>
|
143 |
+
|
144 |
+
<h3>5. Landing Page Mode</h3>
|
145 |
+
<p> With this feature you can choose to display the Coming Soon Page on the entire site or on a single Page. <br> Here is a Use Case: Suppose you want the blog to be accessible to all users while displaying the coming soon page on the font page. It can be done with the Landing Page Mode. </p>
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
<h3>6. Custom Favicon and Logo Support </h3>
|
154 |
+
|
155 |
+
<p>You can quickly upload a Custom Logo and favicon via the option Panel. We make use of Wordpress Mdeia Uploader, so you can also insert the logo from the Wordpress Media Library.</p>
|
156 |
+
|
157 |
+
|
158 |
+
<h3>7. Count-Down Timer Support </h3>
|
159 |
+
|
160 |
+
<p> This feature was implemented as a response to a suggestion by one of our user. With this feature you can display a count down timer on the coming soon page. The timer can be quickly configure via option panel.</p>
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
<h3>8. Progress Bar Support </h3>
|
165 |
+
|
166 |
+
<p>It is also possible to display a Progress Bar on the coming soon page. Currently 3 styles of progress bars are supported, Basic, Striped and Animated. </p>
|
167 |
+
|
168 |
+
<h3>9. Custom Text Strings</h3>
|
169 |
+
<p>This feature allows you to quickly change the labels of the Text Fields and Buttons. </p>
|
170 |
+
|
171 |
+
|
172 |
+
<h3>10. BackGround Slide-Show</h3>
|
173 |
+
<p>You can create a SlideShow and display it as a background with this feature. You may add as many slides as you want. It is also possible to display a Static Image or simply a color as a background. </p>
|
174 |
+
|
175 |
+
<h3>11. Video BackGround Support</h3>
|
176 |
+
<p>This feature allows you to create a Full Screen Video BackGround. Just upload the video on Youtube and configure the settings via the Admin Panel. Its that simple! </p>
|
177 |
+
|
178 |
+
<h3>12. Social Icon Support</h3>
|
179 |
+
<p>The premium version has support for 20 Social Media Network. You just need to fill in the url and the respective icon will be displayed on the coming soon page. </p>
|
180 |
+
|
181 |
+
<h3>13. Design Customization Options</h3>
|
182 |
+
<p>The plugin allows you to quickly customize the settings like Font Color, Font Size, Font type, Button Color etc. All of these settings can be accessed via the Option Panel. </p>
|
183 |
+
|
184 |
+
<h3>14. Custom CSS Support</h3>
|
185 |
+
<p>A lot of times the inbuilt settings are just not enough. With the Custom CSS support you can quikly add style rules to the coming soon page. </p>
|
186 |
+
|
187 |
+
<h3>15. Google Analytics Support</h3>
|
188 |
+
<p>You can paste the google analytics tracking code and track the pageviews. No need to install a separate plugin.. </p>
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
</div>
|
193 |
+
|
194 |
+
</div>
|
195 |
+
|
196 |
+
|
197 |
+
<!-- Email Capture Feature End -->
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
206 |
+
|
207 |
+
<div class="span6" style="width:85%;margin-top: auto;">
|
208 |
+
<h3>Pricing</h3>
|
209 |
+
<p> The pro version is priced at <strong>very reasonable 39 USD</strong> and entitles you to receive <strong>support and updates for 1 year</strong>. <br><br>If you need updates and support after one year, then simply renew the license. If not, then you may keep using the plugin. <br>You may use the plugin on any number of websites you want</p>
|
210 |
+
|
211 |
+
|
212 |
+
<h3>How to Purchase.</h3>
|
213 |
+
<p>If you are interested then you can buy the plugin <a href = "http://webriti.com/easy-coming-soon-pro-detail-page/" target = "_blank">here.</a> </p>
|
214 |
+
|
215 |
+
<h3>I look Forward to Working with you</h3>
|
216 |
+
<p>Thousands of users have enjoyed using our. I hope you will also enjoy working with us </p>
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
</div>
|
221 |
+
|
222 |
+
|
223 |
+
|
224 |
+
|
225 |
+
</div>
|
226 |
+
|
227 |
+
|
228 |
+
|
229 |
+
<div class="row" style="margin-left:10px;background:white;padding-top: 70px;padding-bottom: 70px;">
|
230 |
+
|
231 |
+
|
232 |
+
<div class="span6" style="width:45%;margin-top: auto;"></div>
|
233 |
+
<div class="span6" style="width:45%;margin-top: auto;">
|
234 |
+
|
235 |
+
|
236 |
+
<h3>Cheers</h3>
|
237 |
+
<h3>Priyanshu</h3>
|
238 |
+
<h3>Co-Founder, Webriti Themes and Plugins</p></h3>
|
239 |
+
</div>
|
240 |
+
|
241 |
+
|
242 |
+
</div>
|
243 |
+
|
244 |
+
|
245 |
+
|
246 |
+
|
247 |
+
|
248 |
+
|
249 |
+
|
250 |
+
|
251 |
+
|
252 |
+
|
253 |
+
|
254 |
+
|
255 |
+
|
256 |
+
|
257 |
+
|
258 |
+
|
259 |
+
|
260 |
+
|
261 |
+
|
262 |
+
|
263 |
+
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
264 |
+
|
265 |
+
|
266 |
+
|
267 |
+
|
268 |
+
|
269 |
+
|
270 |
+
</div>
|
271 |
+
<br>
|
272 |
+
|
273 |
+
<br>
|
274 |
+
|
275 |
+
<br>
|
276 |
+
<div style="text-align: center;">
|
277 |
+
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
278 |
+
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
279 |
+
</div>
|
280 |
+
<br>
|
281 |
+
</div>
|
282 |
+
|
283 |
+
|
284 |
+
|
285 |
+
|
pro.php
CHANGED
@@ -1,606 +1,606 @@
|
|
1 |
-
<style>
|
2 |
-
.span6 h3{
|
3 |
-
font: 33px/29px "Helvetica Neue","Helvetica Neue",Helvetica,Arial,sans-serif;
|
4 |
-
color: #000;
|
5 |
-
-webkit-font-smoothing: antialiased;
|
6 |
-
}
|
7 |
-
.span6 p{
|
8 |
-
font-size: 20px;
|
9 |
-
font-family: "Source Sans Pro",sans-serif;
|
10 |
-
color: #707070;
|
11 |
-
line-height:1.8;
|
12 |
-
}
|
13 |
-
|
14 |
-
/* =Tooltips style
|
15 |
-
========================================================================*/
|
16 |
-
|
17 |
-
.icon1 {
|
18 |
-
display: inline-block;
|
19 |
-
width: 13px;
|
20 |
-
height: 13px;
|
21 |
-
position: relative;
|
22 |
-
padding: 0 0px 0 0;
|
23 |
-
vertical-align: middle;
|
24 |
-
|
25 |
-
background: url(<?php echo plugins_url('images/icons1.png',__FILE__) ?>) no-repeat;
|
26 |
-
}
|
27 |
-
|
28 |
-
.tooltip1 {
|
29 |
-
display: none;
|
30 |
-
width: 200px;
|
31 |
-
position: absolute;
|
32 |
-
padding: 10px;
|
33 |
-
margin: 4px 0 0 4px;
|
34 |
-
top: 0;
|
35 |
-
left: 16px;
|
36 |
-
border: 1px solid #76B6D7;
|
37 |
-
border-radius: 0 8px 8px 8px;
|
38 |
-
background: #bedffe;
|
39 |
-
font-size: 13px;
|
40 |
-
box-shadow: 0 1px 2px -1px #21759B;
|
41 |
-
z-index: 999;
|
42 |
-
}
|
43 |
-
|
44 |
-
/* Icons Sprite Position */
|
45 |
-
|
46 |
-
.help {
|
47 |
-
background-position: 0 0;
|
48 |
-
}
|
49 |
-
|
50 |
-
.warning {
|
51 |
-
background-position: -20px 0;
|
52 |
-
}
|
53 |
-
|
54 |
-
.error {
|
55 |
-
background-position: -40px 0;
|
56 |
-
}
|
57 |
-
|
58 |
-
/* Tooltip Colors */
|
59 |
-
|
60 |
-
.help .tooltip1 {
|
61 |
-
border-color: #76B6D7;
|
62 |
-
background-color: #bedffe;
|
63 |
-
box-shadow-color: #21759B;
|
64 |
-
}
|
65 |
-
|
66 |
-
.warning .tooltip1 {
|
67 |
-
border-color: #cca863;
|
68 |
-
background-color: #ffff70;
|
69 |
-
box-shadow-color: #ac8c4e;
|
70 |
-
}
|
71 |
-
|
72 |
-
.error .tooltip1 {
|
73 |
-
border-color: #b50d0d;
|
74 |
-
background-color: #e44d4e;
|
75 |
-
box-shadow-color: #810606;
|
76 |
-
}
|
77 |
-
|
78 |
-
.icon1:hover .tooltip1 {
|
79 |
-
display: block;
|
80 |
-
box-shadow: 0 10px 20px -1px rgba(0,0,0,0.5);
|
81 |
-
|
82 |
-
|
83 |
-
}
|
84 |
-
</style>
|
85 |
-
<div class="block ui-tabs-panel ui-widget-content ui-corner-bottom" id="coming_soon_pro" aria-labelledby="ui-id-1" style="display: none;" >
|
86 |
-
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
87 |
-
|
88 |
-
<div class="span12" style="width:90%;margin-top: auto;text-align:center">
|
89 |
-
<h3 style="font-size: 45px;
|
90 |
-
font-style: normal;
|
91 |
-
font-weight: 900;
|
92 |
-
line-height:1.1;
|
93 |
-
color: #000;
|
94 |
-
letter-spacing: -1px;
|
95 |
-
text-align: center;
|
96 |
-
">Coming Soon Pro Features</h3>
|
97 |
-
<p style="font-size: 22px;
|
98 |
-
font-style: normal;
|
99 |
-
font-weight: 300;
|
100 |
-
color: #707070;
|
101 |
-
text-align: center;">The premium version allows you to capture Visitor Email address, integrates with various AutoResponders , Comes with 2 different Template and provide loads of Design Customization Options. <br><br>
|
102 |
-
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
103 |
-
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
104 |
-
</p>
|
105 |
-
</div>
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
</div>
|
111 |
-
|
112 |
-
<!-- Email Capture Feature Start -->
|
113 |
-
|
114 |
-
|
115 |
-
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
116 |
-
|
117 |
-
|
118 |
-
<div class="span6" style="width:45%">
|
119 |
-
<img src="<?php echo plugins_url('/images/img/subscriber.png',__FILE__);?>" alt="" style="width:100%">
|
120 |
-
</div>
|
121 |
-
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%; font-size:15px;">
|
122 |
-
<h3>Email Capture Field</h3>
|
123 |
-
<p>Collect email address of your visitors with an email Capture Field. The Captured Email address are stored in your Wordpress website.</p>
|
124 |
-
</div>
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
</div>
|
130 |
-
|
131 |
-
|
132 |
-
<!-- Email Capture Feature End -->
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
141 |
-
|
142 |
-
<div class="span6" style="width:45%;margin-top: auto;">
|
143 |
-
<h3>Newsletter Integration</h3>
|
144 |
-
<p>Premium version integrates with popular newsletter services like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> Mailchimp</li><li>Aweber</li><li>Madmimi</li><li>Constant Contact</li><li>Campaign Monitor</li><li>FeedBurner</li></ul></p>
|
145 |
-
</div>
|
146 |
-
|
147 |
-
<div class="span6" style="width:45%">
|
148 |
-
<img src="<?php echo plugins_url('/images/img/mailchimp snap.png',__FILE__);?>" alt="" style="width:100%">
|
149 |
-
</div>
|
150 |
-
|
151 |
-
|
152 |
-
</div>
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
<div class="row" style="margin-left:10px;background: #ededed;padding-top: 70px;padding-bottom: 70px;">
|
157 |
-
|
158 |
-
<div class="span6" style="width:45%">
|
159 |
-
<img src="<?php echo plugins_url('/images/img/responsive.png',__FILE__);?>" alt="" style="width:100%">
|
160 |
-
</div>
|
161 |
-
|
162 |
-
<div class="span6" style="width:45%;margin-top: auto;">
|
163 |
-
<h3>Responsive Design</h3>
|
164 |
-
<p>Create a Responsive Landing Page Mode. Easy coming soon support Bootstrap Based landing page which display perfectly on mobile and tablet device.</p>
|
165 |
-
</div>
|
166 |
-
|
167 |
-
|
168 |
-
</div>
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
<div class="row" style="margin-left:10px;background:#f7f7f7;padding-top:70px;padding-bottom:70px;">
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
178 |
-
<h3>4 additional Design Templates</h3>
|
179 |
-
<p>The premium version comes with 4 extra templates.
|
180 |
-
</div>
|
181 |
-
<div class="span6" style="width:45%">
|
182 |
-
<img src="<?php echo plugins_url('/images/img/laptop1.png',__FILE__);?>" alt="" style="width:100%">
|
183 |
-
</div>
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
</div>
|
189 |
-
|
190 |
-
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
191 |
-
|
192 |
-
<div class="span6" style="width:45%">
|
193 |
-
<img src="<?php echo plugins_url('/images/img/design2.png',__FILE__);?>" alt="" style="width:100%">
|
194 |
-
</div>
|
195 |
-
|
196 |
-
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
197 |
-
<h3>Powerful Design Settings</h3>
|
198 |
-
<p>Make your maintenance page look Sexy!!! The premium version comes with loads of design settings like : <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li>Video Back-Grounds</li><li>Background Slideshow</li><li>Google Font integration</li><li>Text color Customization</li><li>Custom Css</li></ul></p>
|
199 |
-
</div>
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
</div>
|
205 |
-
|
206 |
-
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
207 |
-
|
208 |
-
<div class="span6" style="width:45%;margin-top: auto;">
|
209 |
-
<h3>Landing Page Mode</h3>
|
210 |
-
<p>Design and Publish a Landing Page on your Wordpress Website. The premium version enables you add a landing page to your existing wordpress website. </p>
|
211 |
-
</div>
|
212 |
-
|
213 |
-
<div class="span6" style="width:45%">
|
214 |
-
<img src="<?php echo plugins_url('/images/img/multiple-mode.png',__FILE__);?>" alt="" style="width:100%">
|
215 |
-
</div>
|
216 |
-
|
217 |
-
|
218 |
-
</div>
|
219 |
-
|
220 |
-
|
221 |
-
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
222 |
-
|
223 |
-
|
224 |
-
<div class="span6" style="width:45%">
|
225 |
-
<img src="<?php echo plugins_url('/images/img/users_lock.png',__FILE__);?>" alt="" style="width:70%;margin-left:5%">
|
226 |
-
</div>
|
227 |
-
<div class="span6" style="width:45%;margin-top:auto;margin-left:5%">
|
228 |
-
<h3>Access Controls</h3>
|
229 |
-
<p>Powerful Access Control feature lets you decide which users can view the Live Website. Whitelist IP address and User Roles. Assign Coming Soon Page to a particualr Wordpress Page.</p>
|
230 |
-
</div>
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
</div>
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
<div class="row" style="margin-left:10px;background:#f7f7f7;padding-top:70px;padding-bottom:70px;">
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
246 |
-
<h3>Social Media Icons Support</h3>
|
247 |
-
<p>Quickly add links to your social profiles. The plugin supports adding links to Facebook, Twitter, Google+, Pinterest, Youtube, Tumblr, Viemo etc..</p>
|
248 |
-
</div>
|
249 |
-
<div class="span6" style="width:45%">
|
250 |
-
<img src="<?php echo plugins_url('/images/img/social.jpg',__FILE__);?>" alt="" style="width:100%">
|
251 |
-
</div>
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
</div>
|
256 |
-
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
257 |
-
|
258 |
-
<div class="span6" style="width:45%">
|
259 |
-
<img src="<?php echo plugins_url('/images/img/browsericons.png',__FILE__);?>" alt="" style="width:100%">
|
260 |
-
</div>
|
261 |
-
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
262 |
-
<h3>All Browser Support</h3>
|
263 |
-
<p>Plugin Tested with all popular browsers like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> IE 9 +</li><li> Google Chrome</li><li> Mozilla Firefox </li><li> Apple Safari</li></ul></p>
|
264 |
-
</div>
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
</div>
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
<div class="span6" style="width:45%;margin-top: auto;">
|
278 |
-
<h3>Translation Ready</h3>
|
279 |
-
<p>Quickly translate the plugin in the language of your choice.</p>
|
280 |
-
</div>
|
281 |
-
|
282 |
-
<div class="span6" style="width:45%">
|
283 |
-
<img src="<?php echo plugins_url('/images/img/language.png',__FILE__);?>" alt="" style="width:100%">
|
284 |
-
</div>
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
</div>
|
289 |
-
|
290 |
-
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
291 |
-
|
292 |
-
<div class="span12" style="width:90%;margin-top: auto;text-align:center">
|
293 |
-
<h3 style="font-size: 45px;
|
294 |
-
font-style: normal;
|
295 |
-
font-weight: 900;
|
296 |
-
line-height:1.1;
|
297 |
-
color: #000;
|
298 |
-
letter-spacing: -1px;
|
299 |
-
text-align: center;
|
300 |
-
">Upgarde to Coming Soon Pro Here</h3>
|
301 |
-
<p style="font-size: 22px;
|
302 |
-
font-style: normal;
|
303 |
-
font-weight: 300;
|
304 |
-
color: #707070;
|
305 |
-
text-align: center;">
|
306 |
-
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
307 |
-
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
308 |
-
</p>
|
309 |
-
</div>
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
</div>
|
315 |
-
<br>
|
316 |
-
<h3 style="font-size: 35px;
|
317 |
-
font-style: normal;
|
318 |
-
font-weight: 400;
|
319 |
-
line-height:1.1;
|
320 |
-
color: #000;
|
321 |
-
letter-spacing: -1px;
|
322 |
-
text-align: center;
|
323 |
-
">Comparison Table of Free And Pro Version</h3>
|
324 |
-
<br>
|
325 |
-
<table class="table table-hover table-bordered" style="font-size:15px;margin-bottom:0px;" >
|
326 |
-
<thead class="alert alert-info">
|
327 |
-
<tr>
|
328 |
-
<th></th>
|
329 |
-
<th style="text-align: center; font-size: 16px;">Features</th>
|
330 |
-
<th style="text-align: center; font-size: 16px;">Free</th>
|
331 |
-
<th style="text-align: center; font-size: 16px;">Premium</th>
|
332 |
-
</tr>
|
333 |
-
</thead>
|
334 |
-
<tbody>
|
335 |
-
|
336 |
-
|
337 |
-
<tr style="height:6px;">
|
338 |
-
<td><span class="icon1 help" style="float:right">
|
339 |
-
<span class="tooltip1"><?php _e('Plugin is work with any wordpress theme easily.');?></span></span></td>
|
340 |
-
<td><p style="font-size:16px"><strong>Works With Any Wordpress Theme</strong></p></td>
|
341 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
342 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
343 |
-
</tr>
|
344 |
-
|
345 |
-
<tr>
|
346 |
-
<td><span class="icon1 help" style="float:right">
|
347 |
-
<span class="tooltip1"><?php _e('Plugin template is compatible with all devices. It have completely resposive feature.');?></span></span></td>
|
348 |
-
<td><p style="font-size:16px"><b>Responsive Design</b></p></td>
|
349 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
350 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
351 |
-
</tr>
|
352 |
-
|
353 |
-
<tr>
|
354 |
-
<td><span class="icon1 help" style="float:right">
|
355 |
-
<span class="tooltip1"><?php _e('Defalut template is availale in both pro and free .');?></span></span></td>
|
356 |
-
<td><p style="font-size:16px"><b>Free Coming Soon Page Template</b></p></td>
|
357 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
358 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
359 |
-
</tr>
|
360 |
-
<tr>
|
361 |
-
<td><span class="icon1 help" style="float:right">
|
362 |
-
<span class="tooltip1"><?php _e('Easily customizable admin panel and very user friendly.');?></span></span></td>
|
363 |
-
<td><p style="font-size:16px"><b> User-friendly Setup</b> </p></td>
|
364 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
365 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
366 |
-
</tr>
|
367 |
-
|
368 |
-
<tr>
|
369 |
-
<td><span class="icon1 help" style="float:right">
|
370 |
-
<span class="tooltip1"><?php _e('Default fonts are availabel in both.');?></span></span></td>
|
371 |
-
<td><p style="font-size:16px"><b>Default fonts</b> </p></td>
|
372 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
373 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
374 |
-
</tr>
|
375 |
-
|
376 |
-
|
377 |
-
<tr>
|
378 |
-
<td><span class="icon1 help" style="float:right">
|
379 |
-
<span class="tooltip1"><?php _e('Buddy Press Supportive.','sis_spa');?></span></span></td>
|
380 |
-
<td><p style="font-size:16px"><b>BuddyPress Support</b></p></td>
|
381 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
382 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
383 |
-
</tr>
|
384 |
-
|
385 |
-
|
386 |
-
<tr>
|
387 |
-
<td><span class="icon1 help" style="float:right">
|
388 |
-
<span class="tooltip1"><?php _e('Visible only non loggeed user, if you are not login then you are not able to view regular site.');?></span></span></td>
|
389 |
-
<td><p style="font-size:16px"><b>Visible only non logged user</b></p></td>
|
390 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
391 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
392 |
-
</tr>
|
393 |
-
|
394 |
-
|
395 |
-
<tr>
|
396 |
-
<td><span class="icon1 help" style="float:right">
|
397 |
-
<span class="tooltip1"><?php _e('Easily collect user notify mail.');?></span></span></td>
|
398 |
-
<td><p style="font-size:16px"><b>Easily collect visitor emails</b> </p></td>
|
399 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
400 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
401 |
-
</tr>
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
<tr>
|
408 |
-
<td><span class="icon1 help" style="float:right">
|
409 |
-
<span class="tooltip1"><?php _e('Google Analytics supportive.');?></span></span></td>
|
410 |
-
<td><p style="font-size:16px"><b>Google Analytics Support</b></p></td>
|
411 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
412 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
413 |
-
</tr>
|
414 |
-
|
415 |
-
<tr>
|
416 |
-
<td><span class="icon1 help" style="float:right">
|
417 |
-
<span class="tooltip1"><?php _e('Get social support.','sis_spa');?></span></span></td>
|
418 |
-
<td><p style="font-size:16px"><b>Social Follow Icons</b></p></td>
|
419 |
-
<td style="text-align: center;"><p>Facebook, Twitter, Google+</p></td>
|
420 |
-
<td style="text-align: center;">Twitter, Facebook, Linkedin, Google+, Youtube, Email, Pinterest, Yahoo etc.</td>
|
421 |
-
</tr>
|
422 |
-
|
423 |
-
<tr>
|
424 |
-
<td><span class="icon1 help" style="float:right">
|
425 |
-
<span class="tooltip1"><?php _e('Google fonts api are integreted with coming soon.');?></span></span></td>
|
426 |
-
<td><p style="font-size:16px"><b>Google Fonts Support</b></p></td>
|
427 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
428 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
429 |
-
</tr>
|
430 |
-
|
431 |
-
<tr>
|
432 |
-
<td><span class="icon1 help" style="float:right">
|
433 |
-
<span class="tooltip1"><?php _e('Get our fast and friendly support.');?></span></span></td>
|
434 |
-
<td><p style="font-size:16px"><b>Multisite Support</b></p></td>
|
435 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
436 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
437 |
-
</tr>
|
438 |
-
|
439 |
-
|
440 |
-
<tr>
|
441 |
-
<td><span class="icon1 help" style="float:right">
|
442 |
-
<span class="tooltip1"><?php _e('laguage Translation is available in premium.');?></span></span></td>
|
443 |
-
<td><p style="font-size:16px"><b>Language Translation Support</b></p></td>
|
444 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
445 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
446 |
-
</tr>
|
447 |
-
|
448 |
-
<tr>
|
449 |
-
<td><span class="icon1 help" style="float:right">
|
450 |
-
<span class="tooltip1"><?php _e('limit access with clients who want to view regular sites.');?></span></span></td>
|
451 |
-
<td><p style="font-size:16px"><b>Limit Access with Client View</b></p></td>
|
452 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
453 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
454 |
-
</tr>
|
455 |
-
|
456 |
-
<tr>
|
457 |
-
<td><span class="icon1 help" style="float:right">
|
458 |
-
<span class="tooltip1"><?php _e('Multiple page template is available for coming soon page.');?></span></span></td>
|
459 |
-
<td><p style="font-size:16px"><b>Multiple Page Templates</b></p></td>
|
460 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
461 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
462 |
-
</tr>
|
463 |
-
|
464 |
-
<tr>
|
465 |
-
<td><span class="icon1 help" style="float:right">
|
466 |
-
<span class="tooltip1"><?php _e('Add user whitelist who access the site after login.');?></span></span></td>
|
467 |
-
<td><p style="font-size:16px"><b>Add User Whitelist</b></p></td>
|
468 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
469 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
470 |
-
</tr>
|
471 |
-
|
472 |
-
<tr>
|
473 |
-
<td><span class="icon1 help" style="float:right">
|
474 |
-
<span class="tooltip1"><?php _e('Add ip access for user.');?></span></span></td>
|
475 |
-
<td><p style="font-size:16px"><b>Access By Ip</b></p></td>
|
476 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
477 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
478 |
-
</tr>
|
479 |
-
|
480 |
-
<tr>
|
481 |
-
<td><span class="icon1 help" style="float:right">
|
482 |
-
<span class="tooltip1"><?php _e('page landing mode is available that mean you will able to add coming soon template for single site page .');?></span></span></td>
|
483 |
-
<td><p style="font-size:16px"><b>Single Page View Access</b></p></td>
|
484 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
485 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
486 |
-
</tr>
|
487 |
-
|
488 |
-
<tr>
|
489 |
-
<td><span class="icon1 help" style="float:right">
|
490 |
-
<span class="tooltip1"><?php _e('Add fullscreen background slideshow.');?></span></span></td>
|
491 |
-
<td><p style="font-size:16px"><b>Background Image SlideShow</b></p></td>
|
492 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
493 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
494 |
-
</tr>
|
495 |
-
|
496 |
-
<tr>
|
497 |
-
<td><span class="icon1 help" style="float:right">
|
498 |
-
<span class="tooltip1"><?php _e('Add youtube video background.');?></span></span></td>
|
499 |
-
<td><p style="font-size:16px"><b>Youtube Video background</b></p></td>
|
500 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
501 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
502 |
-
</tr>
|
503 |
-
|
504 |
-
<tr>
|
505 |
-
<td><span class="icon1 help" style="float:right">
|
506 |
-
<span class="tooltip1"><?php _e('Mailchimp Integration for Email Marketing & Data Capture.');?></span></span></td>
|
507 |
-
<td><p style="font-size:16px"><b>Mailchimp Support</b></p></td>
|
508 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
509 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
510 |
-
</tr>
|
511 |
-
|
512 |
-
<tr>
|
513 |
-
<td><span class="icon1 help" style="float:right">
|
514 |
-
<span class="tooltip1"><?php _e('Compaign Monitor for Email Marketing & Data Capture.');?></span></span></td>
|
515 |
-
<td><p style="font-size:16px"><b>Compaign Monitor</b></p></td>
|
516 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
517 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
518 |
-
</tr>
|
519 |
-
<tr>
|
520 |
-
<td><span class="icon1 help" style="float:right">
|
521 |
-
<span class="tooltip1"><?php _e('Constant Contact for Email Marketing & Data Capture.');?></span></span></td>
|
522 |
-
<td><p style="font-size:16px"><b>Constant Contact</b></p></td>
|
523 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
524 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
525 |
-
</tr>
|
526 |
-
<tr>
|
527 |
-
<td><span class="icon1 help" style="float:right">
|
528 |
-
<span class="tooltip1"><?php _e('Madmimi Integration for Email Marketing & Data Capture.');?></span></span></td>
|
529 |
-
<td><p style="font-size:16px"><b>Madmimi Support</b></p></td>
|
530 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
531 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
532 |
-
</tr>
|
533 |
-
<tr>
|
534 |
-
<td><span class="icon1 help" style="float:right">
|
535 |
-
<span class="tooltip1"><?php _e('Aweber Integration for Email Marketing & Data Capture.');?></span></span></td>
|
536 |
-
<td><p style="font-size:16px"><b>Aweber Support</b></p></td>
|
537 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
538 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
539 |
-
</tr>
|
540 |
-
|
541 |
-
<tr>
|
542 |
-
<td><span class="icon1 help" style="float:right">
|
543 |
-
<span class="tooltip1"><?php _e('feedburner Integration for Email Marketing & Data Capture.');?></span></span></td>
|
544 |
-
<td><p style="font-size:16px"><b>Feedburner Support</b></p></td>
|
545 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
546 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
547 |
-
</tr>
|
548 |
-
|
549 |
-
|
550 |
-
<tr>
|
551 |
-
<td><span class="icon1 help" style="float:right">
|
552 |
-
<span class="tooltip1"><?php _e('Add countdown timer for coming soon page.');?></span></span></td>
|
553 |
-
<td><p style="font-size:16px"><b>Countdown Timer</b></p></td>
|
554 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
555 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
556 |
-
</tr>
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
<tr>
|
561 |
-
<td><span class="icon1 help" style="float:right">
|
562 |
-
<span class="tooltip1"><?php _e('progress bar enable');?></span></span></td>
|
563 |
-
<td><p style="font-size:16px"><b>Progress Bar</b></p></td>
|
564 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
565 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
566 |
-
</tr>
|
567 |
-
|
568 |
-
<tr>
|
569 |
-
<td><span class="icon1 help" style="float:right">
|
570 |
-
<span class="tooltip1"><?php _e('SEO supportive. Add meta title, description and favicon image. ');?></span></span></td>
|
571 |
-
<td><p style="font-size:16px"><b>Custom Faviceon, Meta Title and Description </b></p></td>
|
572 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
573 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
574 |
-
</tr>
|
575 |
-
|
576 |
-
<tr>
|
577 |
-
<td><span class="icon1 help" style="float:right">
|
578 |
-
<span class="tooltip1"><?php _e('Get multiple mode of coming soon like Maintanance mode,Landing mode etc.');?></span></span></td>
|
579 |
-
<td><p style="font-size:16px"><b>Enable Multiple Mode of Coming Soon</b></p></td>
|
580 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
581 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
582 |
-
</tr>
|
583 |
-
<tr>
|
584 |
-
<td><span class="icon1 help" style="float:right">
|
585 |
-
<span class="tooltip1"><?php _e('Company logo and credit image insertig option.','sis_spa');?></span></span></td>
|
586 |
-
<td><p style="font-size:16px"><b>Company Logo and Credit Links</b></p></td>
|
587 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
588 |
-
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
589 |
-
</tr>
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
</tbody>
|
594 |
-
|
595 |
-
</table>
|
596 |
-
<br>
|
597 |
-
<div style="text-align: center;">
|
598 |
-
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
599 |
-
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
600 |
-
</div>
|
601 |
-
<br>
|
602 |
-
</div>
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
|
1 |
+
<style>
|
2 |
+
.span6 h3{
|
3 |
+
font: 33px/29px "Helvetica Neue","Helvetica Neue",Helvetica,Arial,sans-serif;
|
4 |
+
color: #000;
|
5 |
+
-webkit-font-smoothing: antialiased;
|
6 |
+
}
|
7 |
+
.span6 p{
|
8 |
+
font-size: 20px;
|
9 |
+
font-family: "Source Sans Pro",sans-serif;
|
10 |
+
color: #707070;
|
11 |
+
line-height:1.8;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* =Tooltips style
|
15 |
+
========================================================================*/
|
16 |
+
|
17 |
+
.icon1 {
|
18 |
+
display: inline-block;
|
19 |
+
width: 13px;
|
20 |
+
height: 13px;
|
21 |
+
position: relative;
|
22 |
+
padding: 0 0px 0 0;
|
23 |
+
vertical-align: middle;
|
24 |
+
|
25 |
+
background: url(<?php echo plugins_url('images/icons1.png',__FILE__) ?>) no-repeat;
|
26 |
+
}
|
27 |
+
|
28 |
+
.tooltip1 {
|
29 |
+
display: none;
|
30 |
+
width: 200px;
|
31 |
+
position: absolute;
|
32 |
+
padding: 10px;
|
33 |
+
margin: 4px 0 0 4px;
|
34 |
+
top: 0;
|
35 |
+
left: 16px;
|
36 |
+
border: 1px solid #76B6D7;
|
37 |
+
border-radius: 0 8px 8px 8px;
|
38 |
+
background: #bedffe;
|
39 |
+
font-size: 13px;
|
40 |
+
box-shadow: 0 1px 2px -1px #21759B;
|
41 |
+
z-index: 999;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* Icons Sprite Position */
|
45 |
+
|
46 |
+
.help {
|
47 |
+
background-position: 0 0;
|
48 |
+
}
|
49 |
+
|
50 |
+
.warning {
|
51 |
+
background-position: -20px 0;
|
52 |
+
}
|
53 |
+
|
54 |
+
.error {
|
55 |
+
background-position: -40px 0;
|
56 |
+
}
|
57 |
+
|
58 |
+
/* Tooltip Colors */
|
59 |
+
|
60 |
+
.help .tooltip1 {
|
61 |
+
border-color: #76B6D7;
|
62 |
+
background-color: #bedffe;
|
63 |
+
box-shadow-color: #21759B;
|
64 |
+
}
|
65 |
+
|
66 |
+
.warning .tooltip1 {
|
67 |
+
border-color: #cca863;
|
68 |
+
background-color: #ffff70;
|
69 |
+
box-shadow-color: #ac8c4e;
|
70 |
+
}
|
71 |
+
|
72 |
+
.error .tooltip1 {
|
73 |
+
border-color: #b50d0d;
|
74 |
+
background-color: #e44d4e;
|
75 |
+
box-shadow-color: #810606;
|
76 |
+
}
|
77 |
+
|
78 |
+
.icon1:hover .tooltip1 {
|
79 |
+
display: block;
|
80 |
+
box-shadow: 0 10px 20px -1px rgba(0,0,0,0.5);
|
81 |
+
|
82 |
+
|
83 |
+
}
|
84 |
+
</style>
|
85 |
+
<div class="block ui-tabs-panel ui-widget-content ui-corner-bottom" id="coming_soon_pro" aria-labelledby="ui-id-1" style="display: none;" >
|
86 |
+
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
87 |
+
|
88 |
+
<div class="span12" style="width:90%;margin-top: auto;text-align:center">
|
89 |
+
<h3 style="font-size: 45px;
|
90 |
+
font-style: normal;
|
91 |
+
font-weight: 900;
|
92 |
+
line-height:1.1;
|
93 |
+
color: #000;
|
94 |
+
letter-spacing: -1px;
|
95 |
+
text-align: center;
|
96 |
+
">Coming Soon Pro Features</h3>
|
97 |
+
<p style="font-size: 22px;
|
98 |
+
font-style: normal;
|
99 |
+
font-weight: 300;
|
100 |
+
color: #707070;
|
101 |
+
text-align: center;">The premium version allows you to capture Visitor Email address, integrates with various AutoResponders , Comes with 2 different Template and provide loads of Design Customization Options. <br><br>
|
102 |
+
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
103 |
+
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
104 |
+
</p>
|
105 |
+
</div>
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
</div>
|
111 |
+
|
112 |
+
<!-- Email Capture Feature Start -->
|
113 |
+
|
114 |
+
|
115 |
+
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
116 |
+
|
117 |
+
|
118 |
+
<div class="span6" style="width:45%">
|
119 |
+
<img src="<?php echo plugins_url('/images/img/subscriber.png',__FILE__);?>" alt="" style="width:100%">
|
120 |
+
</div>
|
121 |
+
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%; font-size:15px;">
|
122 |
+
<h3>Email Capture Field</h3>
|
123 |
+
<p>Collect email address of your visitors with an email Capture Field. The Captured Email address are stored in your Wordpress website.</p>
|
124 |
+
</div>
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
</div>
|
130 |
+
|
131 |
+
|
132 |
+
<!-- Email Capture Feature End -->
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
141 |
+
|
142 |
+
<div class="span6" style="width:45%;margin-top: auto;">
|
143 |
+
<h3>Newsletter Integration</h3>
|
144 |
+
<p>Premium version integrates with popular newsletter services like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> Mailchimp</li><li>Aweber</li><li>Madmimi</li><li>Constant Contact</li><li>Campaign Monitor</li><li>FeedBurner</li></ul></p>
|
145 |
+
</div>
|
146 |
+
|
147 |
+
<div class="span6" style="width:45%">
|
148 |
+
<img src="<?php echo plugins_url('/images/img/mailchimp snap.png',__FILE__);?>" alt="" style="width:100%">
|
149 |
+
</div>
|
150 |
+
|
151 |
+
|
152 |
+
</div>
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
<div class="row" style="margin-left:10px;background: #ededed;padding-top: 70px;padding-bottom: 70px;">
|
157 |
+
|
158 |
+
<div class="span6" style="width:45%">
|
159 |
+
<img src="<?php echo plugins_url('/images/img/responsive.png',__FILE__);?>" alt="" style="width:100%">
|
160 |
+
</div>
|
161 |
+
|
162 |
+
<div class="span6" style="width:45%;margin-top: auto;">
|
163 |
+
<h3>Responsive Design</h3>
|
164 |
+
<p>Create a Responsive Landing Page Mode. Easy coming soon support Bootstrap Based landing page which display perfectly on mobile and tablet device.</p>
|
165 |
+
</div>
|
166 |
+
|
167 |
+
|
168 |
+
</div>
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
<div class="row" style="margin-left:10px;background:#f7f7f7;padding-top:70px;padding-bottom:70px;">
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
178 |
+
<h3>4 additional Design Templates</h3>
|
179 |
+
<p>The premium version comes with 4 extra templates. All the templates are completely customizable.</p>
|
180 |
+
</div>
|
181 |
+
<div class="span6" style="width:45%">
|
182 |
+
<img src="<?php echo plugins_url('/images/img/laptop1.png',__FILE__);?>" alt="" style="width:100%">
|
183 |
+
</div>
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
</div>
|
189 |
+
|
190 |
+
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
191 |
+
|
192 |
+
<div class="span6" style="width:45%">
|
193 |
+
<img src="<?php echo plugins_url('/images/img/design2.png',__FILE__);?>" alt="" style="width:100%">
|
194 |
+
</div>
|
195 |
+
|
196 |
+
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
197 |
+
<h3>Powerful Design Settings</h3>
|
198 |
+
<p>Make your maintenance page look Sexy!!! The premium version comes with loads of design settings like : <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li>Video Back-Grounds</li><li>Background Slideshow</li><li>Google Font integration</li><li>Text color Customization</li><li>Custom Css</li></ul></p>
|
199 |
+
</div>
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
207 |
+
|
208 |
+
<div class="span6" style="width:45%;margin-top: auto;">
|
209 |
+
<h3>Landing Page Mode</h3>
|
210 |
+
<p>Design and Publish a Landing Page on your Wordpress Website. The premium version enables you add a landing page to your existing wordpress website. </p>
|
211 |
+
</div>
|
212 |
+
|
213 |
+
<div class="span6" style="width:45%">
|
214 |
+
<img src="<?php echo plugins_url('/images/img/multiple-mode.png',__FILE__);?>" alt="" style="width:100%">
|
215 |
+
</div>
|
216 |
+
|
217 |
+
|
218 |
+
</div>
|
219 |
+
|
220 |
+
|
221 |
+
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
222 |
+
|
223 |
+
|
224 |
+
<div class="span6" style="width:45%">
|
225 |
+
<img src="<?php echo plugins_url('/images/img/users_lock.png',__FILE__);?>" alt="" style="width:70%;margin-left:5%">
|
226 |
+
</div>
|
227 |
+
<div class="span6" style="width:45%;margin-top:auto;margin-left:5%">
|
228 |
+
<h3>Access Controls</h3>
|
229 |
+
<p>Powerful Access Control feature lets you decide which users can view the Live Website. Whitelist IP address and User Roles. Assign Coming Soon Page to a particualr Wordpress Page.</p>
|
230 |
+
</div>
|
231 |
+
|
232 |
+
|
233 |
+
|
234 |
+
|
235 |
+
</div>
|
236 |
+
|
237 |
+
|
238 |
+
|
239 |
+
|
240 |
+
|
241 |
+
<div class="row" style="margin-left:10px;background:#f7f7f7;padding-top:70px;padding-bottom:70px;">
|
242 |
+
|
243 |
+
|
244 |
+
|
245 |
+
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
246 |
+
<h3>Social Media Icons Support</h3>
|
247 |
+
<p>Quickly add links to your social profiles. The plugin supports adding links to Facebook, Twitter, Google+, Pinterest, Youtube, Tumblr, Viemo etc..</p>
|
248 |
+
</div>
|
249 |
+
<div class="span6" style="width:45%">
|
250 |
+
<img src="<?php echo plugins_url('/images/img/social.jpg',__FILE__);?>" alt="" style="width:100%">
|
251 |
+
</div>
|
252 |
+
|
253 |
+
|
254 |
+
|
255 |
+
</div>
|
256 |
+
<div class="row" style="margin-left:10px;background:#ededed;padding-top:70px;padding-bottom:70px;">
|
257 |
+
|
258 |
+
<div class="span6" style="width:45%">
|
259 |
+
<img src="<?php echo plugins_url('/images/img/browsericons.png',__FILE__);?>" alt="" style="width:100%">
|
260 |
+
</div>
|
261 |
+
<div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
|
262 |
+
<h3>All Browser Support</h3>
|
263 |
+
<p>Plugin Tested with all popular browsers like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> IE 9 +</li><li> Google Chrome</li><li> Mozilla Firefox </li><li> Apple Safari</li></ul></p>
|
264 |
+
</div>
|
265 |
+
|
266 |
+
|
267 |
+
|
268 |
+
|
269 |
+
</div>
|
270 |
+
|
271 |
+
|
272 |
+
|
273 |
+
<div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
|
274 |
+
|
275 |
+
|
276 |
+
|
277 |
+
<div class="span6" style="width:45%;margin-top: auto;">
|
278 |
+
<h3>Translation Ready</h3>
|
279 |
+
<p>Quickly translate the plugin in the language of your choice.</p>
|
280 |
+
</div>
|
281 |
+
|
282 |
+
<div class="span6" style="width:45%">
|
283 |
+
<img src="<?php echo plugins_url('/images/img/language.png',__FILE__);?>" alt="" style="width:100%">
|
284 |
+
</div>
|
285 |
+
|
286 |
+
|
287 |
+
|
288 |
+
</div>
|
289 |
+
|
290 |
+
<div class="row" style="margin-left:10px;background:#fff;text-align:center">
|
291 |
+
|
292 |
+
<div class="span12" style="width:90%;margin-top: auto;text-align:center">
|
293 |
+
<h3 style="font-size: 45px;
|
294 |
+
font-style: normal;
|
295 |
+
font-weight: 900;
|
296 |
+
line-height:1.1;
|
297 |
+
color: #000;
|
298 |
+
letter-spacing: -1px;
|
299 |
+
text-align: center;
|
300 |
+
">Upgarde to Coming Soon Pro Here</h3>
|
301 |
+
<p style="font-size: 22px;
|
302 |
+
font-style: normal;
|
303 |
+
font-weight: 300;
|
304 |
+
color: #707070;
|
305 |
+
text-align: center;">
|
306 |
+
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
307 |
+
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
308 |
+
</p>
|
309 |
+
</div>
|
310 |
+
|
311 |
+
|
312 |
+
|
313 |
+
|
314 |
+
</div>
|
315 |
+
<br>
|
316 |
+
<h3 style="font-size: 35px;
|
317 |
+
font-style: normal;
|
318 |
+
font-weight: 400;
|
319 |
+
line-height:1.1;
|
320 |
+
color: #000;
|
321 |
+
letter-spacing: -1px;
|
322 |
+
text-align: center;
|
323 |
+
">Comparison Table of Free And Pro Version</h3>
|
324 |
+
<br>
|
325 |
+
<table class="table table-hover table-bordered" style="font-size:15px;margin-bottom:0px;" >
|
326 |
+
<thead class="alert alert-info">
|
327 |
+
<tr>
|
328 |
+
<th></th>
|
329 |
+
<th style="text-align: center; font-size: 16px;">Features</th>
|
330 |
+
<th style="text-align: center; font-size: 16px;">Free</th>
|
331 |
+
<th style="text-align: center; font-size: 16px;">Premium</th>
|
332 |
+
</tr>
|
333 |
+
</thead>
|
334 |
+
<tbody>
|
335 |
+
|
336 |
+
|
337 |
+
<tr style="height:6px;">
|
338 |
+
<td><span class="icon1 help" style="float:right">
|
339 |
+
<span class="tooltip1"><?php _e('Plugin is work with any wordpress theme easily.');?></span></span></td>
|
340 |
+
<td><p style="font-size:16px"><strong>Works With Any Wordpress Theme</strong></p></td>
|
341 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
342 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
343 |
+
</tr>
|
344 |
+
|
345 |
+
<tr>
|
346 |
+
<td><span class="icon1 help" style="float:right">
|
347 |
+
<span class="tooltip1"><?php _e('Plugin template is compatible with all devices. It have completely resposive feature.');?></span></span></td>
|
348 |
+
<td><p style="font-size:16px"><b>Responsive Design</b></p></td>
|
349 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
350 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
351 |
+
</tr>
|
352 |
+
|
353 |
+
<tr>
|
354 |
+
<td><span class="icon1 help" style="float:right">
|
355 |
+
<span class="tooltip1"><?php _e('Defalut template is availale in both pro and free .');?></span></span></td>
|
356 |
+
<td><p style="font-size:16px"><b>Free Coming Soon Page Template</b></p></td>
|
357 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
358 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
359 |
+
</tr>
|
360 |
+
<tr>
|
361 |
+
<td><span class="icon1 help" style="float:right">
|
362 |
+
<span class="tooltip1"><?php _e('Easily customizable admin panel and very user friendly.');?></span></span></td>
|
363 |
+
<td><p style="font-size:16px"><b> User-friendly Setup</b> </p></td>
|
364 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
365 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
366 |
+
</tr>
|
367 |
+
|
368 |
+
<tr>
|
369 |
+
<td><span class="icon1 help" style="float:right">
|
370 |
+
<span class="tooltip1"><?php _e('Default fonts are availabel in both.');?></span></span></td>
|
371 |
+
<td><p style="font-size:16px"><b>Default fonts</b> </p></td>
|
372 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
373 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
374 |
+
</tr>
|
375 |
+
|
376 |
+
|
377 |
+
<tr>
|
378 |
+
<td><span class="icon1 help" style="float:right">
|
379 |
+
<span class="tooltip1"><?php _e('Buddy Press Supportive.','sis_spa');?></span></span></td>
|
380 |
+
<td><p style="font-size:16px"><b>BuddyPress Support</b></p></td>
|
381 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
382 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
383 |
+
</tr>
|
384 |
+
|
385 |
+
|
386 |
+
<tr>
|
387 |
+
<td><span class="icon1 help" style="float:right">
|
388 |
+
<span class="tooltip1"><?php _e('Visible only non loggeed user, if you are not login then you are not able to view regular site.');?></span></span></td>
|
389 |
+
<td><p style="font-size:16px"><b>Visible only non logged user</b></p></td>
|
390 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
391 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
392 |
+
</tr>
|
393 |
+
|
394 |
+
|
395 |
+
<tr>
|
396 |
+
<td><span class="icon1 help" style="float:right">
|
397 |
+
<span class="tooltip1"><?php _e('Easily collect user notify mail.');?></span></span></td>
|
398 |
+
<td><p style="font-size:16px"><b>Easily collect visitor emails</b> </p></td>
|
399 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
400 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
401 |
+
</tr>
|
402 |
+
|
403 |
+
|
404 |
+
|
405 |
+
|
406 |
+
|
407 |
+
<tr>
|
408 |
+
<td><span class="icon1 help" style="float:right">
|
409 |
+
<span class="tooltip1"><?php _e('Google Analytics supportive.');?></span></span></td>
|
410 |
+
<td><p style="font-size:16px"><b>Google Analytics Support</b></p></td>
|
411 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
412 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
413 |
+
</tr>
|
414 |
+
|
415 |
+
<tr>
|
416 |
+
<td><span class="icon1 help" style="float:right">
|
417 |
+
<span class="tooltip1"><?php _e('Get social support.','sis_spa');?></span></span></td>
|
418 |
+
<td><p style="font-size:16px"><b>Social Follow Icons</b></p></td>
|
419 |
+
<td style="text-align: center;"><p>Facebook, Twitter, Google+</p></td>
|
420 |
+
<td style="text-align: center;">Twitter, Facebook, Linkedin, Google+, Youtube, Email, Pinterest, Yahoo etc.</td>
|
421 |
+
</tr>
|
422 |
+
|
423 |
+
<tr>
|
424 |
+
<td><span class="icon1 help" style="float:right">
|
425 |
+
<span class="tooltip1"><?php _e('Google fonts api are integreted with coming soon.');?></span></span></td>
|
426 |
+
<td><p style="font-size:16px"><b>Google Fonts Support</b></p></td>
|
427 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
428 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
429 |
+
</tr>
|
430 |
+
|
431 |
+
<tr>
|
432 |
+
<td><span class="icon1 help" style="float:right">
|
433 |
+
<span class="tooltip1"><?php _e('Get our fast and friendly support.');?></span></span></td>
|
434 |
+
<td><p style="font-size:16px"><b>Multisite Support</b></p></td>
|
435 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
436 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
437 |
+
</tr>
|
438 |
+
|
439 |
+
|
440 |
+
<tr>
|
441 |
+
<td><span class="icon1 help" style="float:right">
|
442 |
+
<span class="tooltip1"><?php _e('laguage Translation is available in premium.');?></span></span></td>
|
443 |
+
<td><p style="font-size:16px"><b>Language Translation Support</b></p></td>
|
444 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
445 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
446 |
+
</tr>
|
447 |
+
|
448 |
+
<tr>
|
449 |
+
<td><span class="icon1 help" style="float:right">
|
450 |
+
<span class="tooltip1"><?php _e('limit access with clients who want to view regular sites.');?></span></span></td>
|
451 |
+
<td><p style="font-size:16px"><b>Limit Access with Client View</b></p></td>
|
452 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
453 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
454 |
+
</tr>
|
455 |
+
|
456 |
+
<tr>
|
457 |
+
<td><span class="icon1 help" style="float:right">
|
458 |
+
<span class="tooltip1"><?php _e('Multiple page template is available for coming soon page.');?></span></span></td>
|
459 |
+
<td><p style="font-size:16px"><b>Multiple Page Templates</b></p></td>
|
460 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
461 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
462 |
+
</tr>
|
463 |
+
|
464 |
+
<tr>
|
465 |
+
<td><span class="icon1 help" style="float:right">
|
466 |
+
<span class="tooltip1"><?php _e('Add user whitelist who access the site after login.');?></span></span></td>
|
467 |
+
<td><p style="font-size:16px"><b>Add User Whitelist</b></p></td>
|
468 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
469 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
470 |
+
</tr>
|
471 |
+
|
472 |
+
<tr>
|
473 |
+
<td><span class="icon1 help" style="float:right">
|
474 |
+
<span class="tooltip1"><?php _e('Add ip access for user.');?></span></span></td>
|
475 |
+
<td><p style="font-size:16px"><b>Access By Ip</b></p></td>
|
476 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
477 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
478 |
+
</tr>
|
479 |
+
|
480 |
+
<tr>
|
481 |
+
<td><span class="icon1 help" style="float:right">
|
482 |
+
<span class="tooltip1"><?php _e('page landing mode is available that mean you will able to add coming soon template for single site page .');?></span></span></td>
|
483 |
+
<td><p style="font-size:16px"><b>Single Page View Access</b></p></td>
|
484 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
485 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
486 |
+
</tr>
|
487 |
+
|
488 |
+
<tr>
|
489 |
+
<td><span class="icon1 help" style="float:right">
|
490 |
+
<span class="tooltip1"><?php _e('Add fullscreen background slideshow.');?></span></span></td>
|
491 |
+
<td><p style="font-size:16px"><b>Background Image SlideShow</b></p></td>
|
492 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
493 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
494 |
+
</tr>
|
495 |
+
|
496 |
+
<tr>
|
497 |
+
<td><span class="icon1 help" style="float:right">
|
498 |
+
<span class="tooltip1"><?php _e('Add youtube video background.');?></span></span></td>
|
499 |
+
<td><p style="font-size:16px"><b>Youtube Video background</b></p></td>
|
500 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
501 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
502 |
+
</tr>
|
503 |
+
|
504 |
+
<tr>
|
505 |
+
<td><span class="icon1 help" style="float:right">
|
506 |
+
<span class="tooltip1"><?php _e('Mailchimp Integration for Email Marketing & Data Capture.');?></span></span></td>
|
507 |
+
<td><p style="font-size:16px"><b>Mailchimp Support</b></p></td>
|
508 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
509 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
510 |
+
</tr>
|
511 |
+
|
512 |
+
<tr>
|
513 |
+
<td><span class="icon1 help" style="float:right">
|
514 |
+
<span class="tooltip1"><?php _e('Compaign Monitor for Email Marketing & Data Capture.');?></span></span></td>
|
515 |
+
<td><p style="font-size:16px"><b>Compaign Monitor</b></p></td>
|
516 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
517 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
518 |
+
</tr>
|
519 |
+
<tr>
|
520 |
+
<td><span class="icon1 help" style="float:right">
|
521 |
+
<span class="tooltip1"><?php _e('Constant Contact for Email Marketing & Data Capture.');?></span></span></td>
|
522 |
+
<td><p style="font-size:16px"><b>Constant Contact</b></p></td>
|
523 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
524 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
525 |
+
</tr>
|
526 |
+
<tr>
|
527 |
+
<td><span class="icon1 help" style="float:right">
|
528 |
+
<span class="tooltip1"><?php _e('Madmimi Integration for Email Marketing & Data Capture.');?></span></span></td>
|
529 |
+
<td><p style="font-size:16px"><b>Madmimi Support</b></p></td>
|
530 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
531 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
532 |
+
</tr>
|
533 |
+
<tr>
|
534 |
+
<td><span class="icon1 help" style="float:right">
|
535 |
+
<span class="tooltip1"><?php _e('Aweber Integration for Email Marketing & Data Capture.');?></span></span></td>
|
536 |
+
<td><p style="font-size:16px"><b>Aweber Support</b></p></td>
|
537 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
538 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
539 |
+
</tr>
|
540 |
+
|
541 |
+
<tr>
|
542 |
+
<td><span class="icon1 help" style="float:right">
|
543 |
+
<span class="tooltip1"><?php _e('feedburner Integration for Email Marketing & Data Capture.');?></span></span></td>
|
544 |
+
<td><p style="font-size:16px"><b>Feedburner Support</b></p></td>
|
545 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
546 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
547 |
+
</tr>
|
548 |
+
|
549 |
+
|
550 |
+
<tr>
|
551 |
+
<td><span class="icon1 help" style="float:right">
|
552 |
+
<span class="tooltip1"><?php _e('Add countdown timer for coming soon page.');?></span></span></td>
|
553 |
+
<td><p style="font-size:16px"><b>Countdown Timer</b></p></td>
|
554 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
555 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
556 |
+
</tr>
|
557 |
+
|
558 |
+
|
559 |
+
|
560 |
+
<tr>
|
561 |
+
<td><span class="icon1 help" style="float:right">
|
562 |
+
<span class="tooltip1"><?php _e('progress bar enable');?></span></span></td>
|
563 |
+
<td><p style="font-size:16px"><b>Progress Bar</b></p></td>
|
564 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
565 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
566 |
+
</tr>
|
567 |
+
|
568 |
+
<tr>
|
569 |
+
<td><span class="icon1 help" style="float:right">
|
570 |
+
<span class="tooltip1"><?php _e('SEO supportive. Add meta title, description and favicon image. ');?></span></span></td>
|
571 |
+
<td><p style="font-size:16px"><b>Custom Faviceon, Meta Title and Description </b></p></td>
|
572 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
573 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
574 |
+
</tr>
|
575 |
+
|
576 |
+
<tr>
|
577 |
+
<td><span class="icon1 help" style="float:right">
|
578 |
+
<span class="tooltip1"><?php _e('Get multiple mode of coming soon like Maintanance mode,Landing mode etc.');?></span></span></td>
|
579 |
+
<td><p style="font-size:16px"><b>Enable Multiple Mode of Coming Soon</b></p></td>
|
580 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
581 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
582 |
+
</tr>
|
583 |
+
<tr>
|
584 |
+
<td><span class="icon1 help" style="float:right">
|
585 |
+
<span class="tooltip1"><?php _e('Company logo and credit image insertig option.','sis_spa');?></span></span></td>
|
586 |
+
<td><p style="font-size:16px"><b>Company Logo and Credit Links</b></p></td>
|
587 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
588 |
+
<td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
|
589 |
+
</tr>
|
590 |
+
|
591 |
+
|
592 |
+
|
593 |
+
</tbody>
|
594 |
+
|
595 |
+
</table>
|
596 |
+
<br>
|
597 |
+
<div style="text-align: center;">
|
598 |
+
<a class="btn btn-danger btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">Upgrade To Pro Version</a>
|
599 |
+
<a class="btn btn-success btn-large" href="http://webriti.com/easy-coming-soon-pro-detail-page/" target="_new">View Live demo</a>
|
600 |
+
</div>
|
601 |
+
<br>
|
602 |
+
</div>
|
603 |
+
|
604 |
+
|
605 |
+
|
606 |
|
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.1
|
7 |
-
Stable tag: 1.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -110,6 +110,9 @@ In case you face any problem, contact us via the [Forums](http://wordpress.org/s
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
113 |
= 1.6 =
|
114 |
1. Plugin is now compatible with PHP 5.5
|
115 |
|
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.1
|
7 |
+
Stable tag: 1.6.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 1.6.1 =
|
114 |
+
1. Minor Changes in Option Panel
|
115 |
+
|
116 |
= 1.6 =
|
117 |
1. Plugin is now compatible with PHP 5.5
|
118 |
|