Version Description
Download this release
Release Info
Developer | niteo |
Plugin | CMP – Coming Soon & Maintenance Plugin by NiteoThemes |
Version | 3.6.9 |
Comparing to | |
See all releases |
Code changes from version 3.6.8 to 3.6.9
- cmp-advanced.php +63 -98
- cmp-settings.php +103 -322
- cmp-sidebar.php +2 -2
- css/cmp-settings-style.css +10 -4
- css/cmp-settings-style.min.css +1 -1
- inc/class-cmp-render_html.php +22 -0
- inc/render/javascripts.php +1 -20
- inc/settings/settings-content.php +32 -0
- inc/settings/settings-counter.php +5 -5
- inc/settings/settings-css.php +13 -0
- inc/settings/settings-general.php +68 -0
- inc/settings/settings-logo.php +2 -5
- inc/settings/settings-seo.php +150 -0
- languages/cmp-coming-soon-maintenance-default.mo +0 -0
- languages/cmp-coming-soon-maintenance-default.po +695 -494
- niteo-cmp.php +148 -171
- readme.txt +20 -12
cmp-advanced.php
CHANGED
@@ -211,6 +211,10 @@ if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
|
|
211 |
}
|
212 |
}
|
213 |
|
|
|
|
|
|
|
|
|
214 |
|
215 |
|
216 |
|
@@ -219,6 +223,7 @@ $niteoCS_page_whitelist = json_decode(get_option('niteoCS_page_whitelist', '[]
|
|
219 |
$niteoCS_page_whitelist_custom = json_decode(get_option('niteoCS_page_whitelist_custom', '[]'), true);
|
220 |
$niteoCS_page_blacklist = json_decode(get_option('niteoCS_page_blacklist', '[]'), true);
|
221 |
$niteoCS_page_blacklist_custom = json_decode(get_option('niteoCS_page_blacklist_custom', '[]'), true);
|
|
|
222 |
$niteoCS_roles = json_decode(get_option('niteoCS_roles', '[]'), true);
|
223 |
$niteoCS_roles_topbar = json_decode(get_option('niteoCS_roles_topbar', '[]'), true);
|
224 |
$head_scripts = json_decode(get_option('niteoCS_head_scripts', '[]'), true);
|
@@ -296,7 +301,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
296 |
</th>
|
297 |
|
298 |
<td>
|
299 |
-
<fieldset class="page-whitelist-switch x1"
|
300 |
<h4><?php _e('CMP Whitelist - set CMP landing page to specific page(s) only.', 'cmp-coming-soon-maintenance');?></h4>
|
301 |
<select name="niteoCS_page-whitelist[]" class="cmp-whitelist-select" multiple="multiple">
|
302 |
<option value="-1" <?php echo in_array('-1', $niteoCS_page_whitelist) ? 'selected' : '';?>><?php _e('Homepage', 'cmp-coming-soon-maintenance');?></option>
|
@@ -318,7 +323,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
318 |
} ?></textarea>
|
319 |
</fieldset>
|
320 |
|
321 |
-
<fieldset class="page-whitelist-switch x2"
|
322 |
<h4><?php _e('CMP Blacklist - select the pages to NOT display CMP landing page.', 'cmp-coming-soon-maintenance');?></h4>
|
323 |
<select name="niteoCS_page-blacklist[]" class="cmp-blacklist" multiple="multiple">
|
324 |
<option value="-1" <?php echo in_array('-1', $niteoCS_page_blacklist) ? 'selected' : '';?>><?php _e('Homepage', 'cmp-coming-soon-maintenance');?></option>
|
@@ -354,6 +359,35 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
354 |
|
355 |
</div>
|
356 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
<!-- BYPASS -->
|
358 |
|
359 |
<div class="table-wrapper general cmp-bypass">
|
@@ -362,21 +396,10 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
362 |
<table class="general">
|
363 |
<tbody>
|
364 |
<tr>
|
365 |
-
<th>
|
366 |
-
<fieldset>
|
367 |
-
<legend class="screen-reader-text">
|
368 |
-
<span><?php _e('User Roles Settings', 'cmp-coming-soon-maintenance');?></span>
|
369 |
-
</legend>
|
370 |
-
|
371 |
-
<p>
|
372 |
-
<h4><?php _e('Bypass User Roles', 'cmp-coming-soon-maintenance');?></h4>
|
373 |
-
</p>
|
374 |
-
|
375 |
-
</fieldset>
|
376 |
-
</th>
|
377 |
|
378 |
<td>
|
379 |
-
<fieldset
|
380 |
<h4><?php _e('Select User Roles to bypass CMP landing page.', 'cmp-coming-soon-maintenance');?></h4>
|
381 |
|
382 |
<select name="niteoCS_roles[]" class="cmp-user_roles" multiple="multiple">
|
@@ -437,7 +460,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
437 |
|
438 |
<td>
|
439 |
|
440 |
-
<fieldset class="cmp-bypass-switch x1"
|
441 |
|
442 |
<h4 style="margin-bottom:0.5em"><?php _e('Bypass URL', 'cmp-coming-soon-maintenance');?></h4>
|
443 |
<code><?php echo get_home_url().'/?cmp_bypass=' . $bypass_id;?></code>
|
@@ -477,24 +500,15 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
477 |
<table class="general">
|
478 |
<tbody>
|
479 |
<tr>
|
480 |
-
<th>
|
481 |
-
<fieldset>
|
482 |
-
<legend class="screen-reader-text">
|
483 |
-
<span><?php _e('Countdown expiration', 'cmp-coming-soon-maintenance');?></span>
|
484 |
-
</legend>
|
485 |
-
<p>
|
486 |
-
<h4><?php _e('Countdown expiration', 'cmp-coming-soon-maintenance');?></h4>
|
487 |
-
</p>
|
488 |
-
</fieldset>
|
489 |
-
</th>
|
490 |
|
491 |
<td>
|
492 |
<fieldset>
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
|
499 |
<div class="countdown-toggle-switch x1">
|
500 |
<label><?php _e('Specify Email Address', 'cmp-coming-soon-maintenance');?>
|
@@ -506,24 +520,15 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
506 |
</tr>
|
507 |
|
508 |
<tr>
|
509 |
-
<th>
|
510 |
-
<fieldset>
|
511 |
-
<legend class="screen-reader-text">
|
512 |
-
<span><?php _e('CMP Status Change', 'cmp-coming-soon-maintenance');?></span>
|
513 |
-
</legend>
|
514 |
-
<p>
|
515 |
-
<h4><?php _e('CMP Status Change', 'cmp-coming-soon-maintenance');?></h4>
|
516 |
-
</p>
|
517 |
-
</fieldset>
|
518 |
-
</th>
|
519 |
|
520 |
<td>
|
521 |
<fieldset>
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
|
528 |
<div class="mode-change-toggle-switch x1">
|
529 |
<label><?php _e('Specify Email Address', 'cmp-coming-soon-maintenance');?>
|
@@ -571,7 +576,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
571 |
</th>
|
572 |
|
573 |
<td>
|
574 |
-
<fieldset class="cmp-topbar-icon-switch x1"
|
575 |
<h4><?php _e('You can specify which roles have access to CMP Top Bar.', 'cmp-coming-soon-maintenance');?></h4>
|
576 |
|
577 |
<select name="niteoCS_roles_topbar[]" class="cmp-user_roles" multiple="multiple">
|
@@ -616,20 +621,10 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
616 |
<table class="general">
|
617 |
<tbody>
|
618 |
<tr>
|
619 |
-
<th>
|
620 |
-
<fieldset>
|
621 |
-
<legend class="screen-reader-text">
|
622 |
-
<span><?php _e('Add External Head Scripts', 'cmp-coming-soon-maintenance');?></span>
|
623 |
-
</legend>
|
624 |
-
|
625 |
-
<p>
|
626 |
-
<h4><?php _e('Head Scripts', 'cmp-coming-soon-maintenance');?></h4>
|
627 |
-
</p>
|
628 |
-
</fieldset>
|
629 |
-
</th>
|
630 |
|
631 |
<td>
|
632 |
-
<fieldset
|
633 |
<h4><?php _e('Insert Javascript or CSS external file URL', 'cmp-coming-soon-maintenance');?></h4>
|
634 |
<div id="wrapper-head_scripts">
|
635 |
|
@@ -639,7 +634,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
639 |
|
640 |
<div class="target-repeater-fields">
|
641 |
<?php
|
642 |
-
if ( count( $head_scripts )
|
643 |
foreach ( $head_scripts as $id => $script ) {
|
644 |
if ( $id != 0 ) {?>
|
645 |
<input type="text" name="niteoCS_head_scripts[]" value="<?php echo esc_attr( $script );?>" placeholder="Insert full script full URL" class="regular-text code"><a href="#delete-head_scripts"><i class="fa fa-times" aria-hidden="true"></i></a>
|
@@ -658,20 +653,10 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
658 |
</tr>
|
659 |
|
660 |
<tr>
|
661 |
-
<th>
|
662 |
-
<fieldset>
|
663 |
-
<legend class="screen-reader-text">
|
664 |
-
<span><?php _e('Add External Footer Scripts', 'cmp-coming-soon-maintenance');?></span>
|
665 |
-
</legend>
|
666 |
-
|
667 |
-
<p>
|
668 |
-
<h4><?php _e('Footer Scripts', 'cmp-coming-soon-maintenance');?></h4>
|
669 |
-
</p>
|
670 |
-
</fieldset>
|
671 |
-
</th>
|
672 |
|
673 |
<td>
|
674 |
-
<fieldset
|
675 |
<h4><?php _e('Insert Javascript or CSS external file URL', 'cmp-coming-soon-maintenance');?></h4>
|
676 |
<div id="wrapper-footer_scripts">
|
677 |
|
@@ -681,7 +666,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
681 |
|
682 |
<div class="target-repeater-fields">
|
683 |
<?php
|
684 |
-
if ( count( $footer_scripts )
|
685 |
foreach ( $footer_scripts as $id => $footer_script ) {
|
686 |
if ( $id != 0 ) {?>
|
687 |
<input type="text" name="niteoCS_footer_scripts[]" value="<?php echo esc_attr( $footer_script );?>" placeholder="Insert script full URL" class="regular-text code"><a href="#delete-footer_scripts"><i class="fa fa-times" aria-hidden="true"></i></a>
|
@@ -714,20 +699,10 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
714 |
<tbody>
|
715 |
|
716 |
<tr>
|
717 |
-
<th>
|
718 |
-
<fieldset>
|
719 |
-
<legend class="screen-reader-text">
|
720 |
-
<span><?php _e('Export CMP Settings', 'cmp-coming-soon-maintenance');?></span>
|
721 |
-
</legend>
|
722 |
-
|
723 |
-
<p>
|
724 |
-
<h4><?php _e('Export CMP Settings', 'cmp-coming-soon-maintenance');?></h4>
|
725 |
-
</p>
|
726 |
-
</fieldset>
|
727 |
-
</th>
|
728 |
|
729 |
<td>
|
730 |
-
<fieldset
|
731 |
<button id="cmp-export-json" class="cmp-button import-export-button" data-security="<?php echo esc_attr( $ajax_nonce );?>"><?php _e('Export to JSON file', 'cmp-coming-soon-maintenance');?></button>
|
732 |
<p class="cmp-hint"><?php _e('You can export complete CMP Settings to external JSON file. Which can be used to backup or transfer CMP Settings to another website.', 'cmp-coming-soon-maintenance');?></p>
|
733 |
</fieldset>
|
@@ -735,20 +710,10 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
735 |
</tr>
|
736 |
|
737 |
<tr>
|
738 |
-
<th>
|
739 |
-
<fieldset>
|
740 |
-
<legend class="screen-reader-text">
|
741 |
-
<span><?php _e('Import CMP Settings', 'cmp-coming-soon-maintenance');?></span>
|
742 |
-
</legend>
|
743 |
-
|
744 |
-
<p>
|
745 |
-
<h4><?php _e('Import CMP Settings', 'cmp-coming-soon-maintenance');?></h4>
|
746 |
-
</p>
|
747 |
-
</fieldset>
|
748 |
-
</th>
|
749 |
|
750 |
<td>
|
751 |
-
<fieldset
|
752 |
<input type="text" hidden name="cmp-import-input" id="cmp-import-input" />
|
753 |
|
754 |
<label class='cmp-input-file'>
|
@@ -757,7 +722,7 @@ $mode_change_email = get_option('niteoCS_mode_change_email_address', get_opt
|
|
757 |
</label>
|
758 |
|
759 |
<p>
|
760 |
-
<label for="cmp-import-media"><input type="checkbox" name="cmp-import-media" id="cmp-import-media" value="1" checked
|
761 |
</p>
|
762 |
|
763 |
<p class="cmp-hint"><?php _e('Insert valid JSON file with CMP Settings to import complete CMP Settings. All current settings will be overwritten.', 'cmp-coming-soon-maintenance');?></p>
|
211 |
}
|
212 |
}
|
213 |
|
214 |
+
if ( isset( $_POST['niteoCS_custom_login_url'] ) ) {
|
215 |
+
update_option('niteoCS_custom_login_url', sanitize_text_field( $_POST['niteoCS_custom_login_url'] ));
|
216 |
+
}
|
217 |
+
|
218 |
|
219 |
|
220 |
|
223 |
$niteoCS_page_whitelist_custom = json_decode(get_option('niteoCS_page_whitelist_custom', '[]'), true);
|
224 |
$niteoCS_page_blacklist = json_decode(get_option('niteoCS_page_blacklist', '[]'), true);
|
225 |
$niteoCS_page_blacklist_custom = json_decode(get_option('niteoCS_page_blacklist_custom', '[]'), true);
|
226 |
+
$custom_login_url = get_option('niteoCS_custom_login_url', '');
|
227 |
$niteoCS_roles = json_decode(get_option('niteoCS_roles', '[]'), true);
|
228 |
$niteoCS_roles_topbar = json_decode(get_option('niteoCS_roles_topbar', '[]'), true);
|
229 |
$head_scripts = json_decode(get_option('niteoCS_head_scripts', '[]'), true);
|
301 |
</th>
|
302 |
|
303 |
<td>
|
304 |
+
<fieldset class="page-whitelist-switch x1">
|
305 |
<h4><?php _e('CMP Whitelist - set CMP landing page to specific page(s) only.', 'cmp-coming-soon-maintenance');?></h4>
|
306 |
<select name="niteoCS_page-whitelist[]" class="cmp-whitelist-select" multiple="multiple">
|
307 |
<option value="-1" <?php echo in_array('-1', $niteoCS_page_whitelist) ? 'selected' : '';?>><?php _e('Homepage', 'cmp-coming-soon-maintenance');?></option>
|
323 |
} ?></textarea>
|
324 |
</fieldset>
|
325 |
|
326 |
+
<fieldset class="page-whitelist-switch x2">
|
327 |
<h4><?php _e('CMP Blacklist - select the pages to NOT display CMP landing page.', 'cmp-coming-soon-maintenance');?></h4>
|
328 |
<select name="niteoCS_page-blacklist[]" class="cmp-blacklist" multiple="multiple">
|
329 |
<option value="-1" <?php echo in_array('-1', $niteoCS_page_blacklist) ? 'selected' : '';?>><?php _e('Homepage', 'cmp-coming-soon-maintenance');?></option>
|
359 |
|
360 |
</div>
|
361 |
|
362 |
+
<div class="table-wrapper cmp-whitelist-blacklist">
|
363 |
+
|
364 |
+
<h3 class="no-icon"><?php _e('Custom Login URL', 'cmp-coming-soon-maintenance');?></h3>
|
365 |
+
<table>
|
366 |
+
<tbody>
|
367 |
+
<tr>
|
368 |
+
|
369 |
+
<th><?php _e('Login URL', 'cmp-coming-soon-maintenance');?></th>
|
370 |
+
|
371 |
+
<td>
|
372 |
+
<fieldset>
|
373 |
+
<h4><?php _e('Login URL', 'cmp-coming-soon-maintenance');?></h4>
|
374 |
+
<input type="text" name="niteoCS_custom_login_url" value="<?php echo esc_html( $custom_login_url ); ?>" class="regular-text"><br>
|
375 |
+
|
376 |
+
<p class="cmp-hint" style="margin-top:0"><?php _e('Insert custom login URL if you are using plugins to change default WordPress login URL.', 'cmp-coming-soon-maintenance');?></p>
|
377 |
+
|
378 |
+
|
379 |
+
</fieldset>
|
380 |
+
|
381 |
+
</td>
|
382 |
+
</tr>
|
383 |
+
|
384 |
+
<?php echo $this->render_settings->submit(); ?>
|
385 |
+
|
386 |
+
</tbody>
|
387 |
+
</table>
|
388 |
+
|
389 |
+
</div>
|
390 |
+
|
391 |
<!-- BYPASS -->
|
392 |
|
393 |
<div class="table-wrapper general cmp-bypass">
|
396 |
<table class="general">
|
397 |
<tbody>
|
398 |
<tr>
|
399 |
+
<th><?php _e('Bypass User Roles', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
|
401 |
<td>
|
402 |
+
<fieldset>
|
403 |
<h4><?php _e('Select User Roles to bypass CMP landing page.', 'cmp-coming-soon-maintenance');?></h4>
|
404 |
|
405 |
<select name="niteoCS_roles[]" class="cmp-user_roles" multiple="multiple">
|
460 |
|
461 |
<td>
|
462 |
|
463 |
+
<fieldset class="cmp-bypass-switch x1">
|
464 |
|
465 |
<h4 style="margin-bottom:0.5em"><?php _e('Bypass URL', 'cmp-coming-soon-maintenance');?></h4>
|
466 |
<code><?php echo get_home_url().'/?cmp_bypass=' . $bypass_id;?></code>
|
500 |
<table class="general">
|
501 |
<tbody>
|
502 |
<tr>
|
503 |
+
<th><?php _e('Countdown expiration', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
|
505 |
<td>
|
506 |
<fieldset>
|
507 |
+
|
508 |
+
<label for="cmp-countdown-notification">
|
509 |
+
<input type="checkbox" class="countdown-toggle" name="niteoCS-countdown-notification" id="cmp-countdown-notification" value="1" <?php checked('1', $cmp_countdown_notif);?>><?php _e('Enable Email notification when Countdown timer expires to 0.', 'cmp-coming-soon-maintenance');?>
|
510 |
+
</label>
|
511 |
+
|
512 |
|
513 |
<div class="countdown-toggle-switch x1">
|
514 |
<label><?php _e('Specify Email Address', 'cmp-coming-soon-maintenance');?>
|
520 |
</tr>
|
521 |
|
522 |
<tr>
|
523 |
+
<th><?php _e('CMP Status Change', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
|
525 |
<td>
|
526 |
<fieldset>
|
527 |
+
|
528 |
+
<label for="cmp-mode-change-notification">
|
529 |
+
<input type="checkbox" name="niteoCS-mode-change-notification" class="mode-change-toggle" id="cmp-mode-change-notification" value="1" <?php checked('1', $cmp_mode_change_notif);?>><?php _e('Enable Email notification if Coming Soon Mode is enabled or disabled by the user.', 'cmp-coming-soon-maintenance');?>
|
530 |
+
</label>
|
531 |
+
|
532 |
|
533 |
<div class="mode-change-toggle-switch x1">
|
534 |
<label><?php _e('Specify Email Address', 'cmp-coming-soon-maintenance');?>
|
576 |
</th>
|
577 |
|
578 |
<td>
|
579 |
+
<fieldset class="cmp-topbar-icon-switch x1">
|
580 |
<h4><?php _e('You can specify which roles have access to CMP Top Bar.', 'cmp-coming-soon-maintenance');?></h4>
|
581 |
|
582 |
<select name="niteoCS_roles_topbar[]" class="cmp-user_roles" multiple="multiple">
|
621 |
<table class="general">
|
622 |
<tbody>
|
623 |
<tr>
|
624 |
+
<th><?php _e('Head Scripts', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
|
626 |
<td>
|
627 |
+
<fieldset>
|
628 |
<h4><?php _e('Insert Javascript or CSS external file URL', 'cmp-coming-soon-maintenance');?></h4>
|
629 |
<div id="wrapper-head_scripts">
|
630 |
|
634 |
|
635 |
<div class="target-repeater-fields">
|
636 |
<?php
|
637 |
+
if ( count( $head_scripts )> 1 ) {
|
638 |
foreach ( $head_scripts as $id => $script ) {
|
639 |
if ( $id != 0 ) {?>
|
640 |
<input type="text" name="niteoCS_head_scripts[]" value="<?php echo esc_attr( $script );?>" placeholder="Insert full script full URL" class="regular-text code"><a href="#delete-head_scripts"><i class="fa fa-times" aria-hidden="true"></i></a>
|
653 |
</tr>
|
654 |
|
655 |
<tr>
|
656 |
+
<th><?php _e('Footer Scripts', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
|
658 |
<td>
|
659 |
+
<fieldset>
|
660 |
<h4><?php _e('Insert Javascript or CSS external file URL', 'cmp-coming-soon-maintenance');?></h4>
|
661 |
<div id="wrapper-footer_scripts">
|
662 |
|
666 |
|
667 |
<div class="target-repeater-fields">
|
668 |
<?php
|
669 |
+
if ( count( $footer_scripts )> 1 ) {
|
670 |
foreach ( $footer_scripts as $id => $footer_script ) {
|
671 |
if ( $id != 0 ) {?>
|
672 |
<input type="text" name="niteoCS_footer_scripts[]" value="<?php echo esc_attr( $footer_script );?>" placeholder="Insert script full URL" class="regular-text code"><a href="#delete-footer_scripts"><i class="fa fa-times" aria-hidden="true"></i></a>
|
699 |
<tbody>
|
700 |
|
701 |
<tr>
|
702 |
+
<th><?php _e('Export CMP Settings', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
703 |
|
704 |
<td>
|
705 |
+
<fieldset>
|
706 |
<button id="cmp-export-json" class="cmp-button import-export-button" data-security="<?php echo esc_attr( $ajax_nonce );?>"><?php _e('Export to JSON file', 'cmp-coming-soon-maintenance');?></button>
|
707 |
<p class="cmp-hint"><?php _e('You can export complete CMP Settings to external JSON file. Which can be used to backup or transfer CMP Settings to another website.', 'cmp-coming-soon-maintenance');?></p>
|
708 |
</fieldset>
|
710 |
</tr>
|
711 |
|
712 |
<tr>
|
713 |
+
<th><?php _e('Import CMP Settings', 'cmp-coming-soon-maintenance');?></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
|
715 |
<td>
|
716 |
+
<fieldset>
|
717 |
<input type="text" hidden name="cmp-import-input" id="cmp-import-input" />
|
718 |
|
719 |
<label class='cmp-input-file'>
|
722 |
</label>
|
723 |
|
724 |
<p>
|
725 |
+
<label for="cmp-import-media"><input type="checkbox" name="cmp-import-media" id="cmp-import-media" value="1" checked><?php _e('Import with media images', 'cmp-coming-soon-maintenance');?></label>
|
726 |
</p>
|
727 |
|
728 |
<p class="cmp-hint"><?php _e('Insert valid JSON file with CMP Settings to import complete CMP Settings. All current settings will be overwritten.', 'cmp-coming-soon-maintenance');?></p>
|
cmp-settings.php
CHANGED
@@ -576,15 +576,18 @@ add_thickbox();
|
|
576 |
<div id="icon-options-general" class="icon32">
|
577 |
<br />
|
578 |
</div>
|
|
|
579 |
<div class="settings-wrap">
|
580 |
<form method="post" action="admin.php?page=cmp-settings&status=settings-saved" id="csoptions">
|
581 |
|
582 |
<?php wp_nonce_field('save_options','save_options_field'); ?>
|
|
|
583 |
<h2 class="nav-tab-wrapper">
|
584 |
<a class="nav-tab nav-tab-active general" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#general" data-tab="general"><i class="fa fa-cog" aria-hidden="true"></i><?php _e('Settings', 'cmp-coming-soon-maintenance');?></a>
|
585 |
|
586 |
-
|
587 |
-
|
|
|
588 |
<a class="nav-tab theme-setup" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#theme-setup" data-tab="theme-setup"><i class="fa fa-wrench" aria-hidden="true"></i><?php _e('Customize', 'cmp-coming-soon-maintenance');?></a>
|
589 |
|
590 |
<a class="nav-tab seo" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#seo" data-tab="seo"><i class="fa fa-line-chart" aria-hidden="true"></i><?php _e('SEO & Analytics', 'cmp-coming-soon-maintenance');?></a>
|
@@ -599,200 +602,125 @@ add_thickbox();
|
|
599 |
|
600 |
<div class="cmp-inputs-wrapper">
|
601 |
|
602 |
-
|
603 |
-
<h3><?php _e('General Settings', 'cmp-coming-soon-maintenance');?></h3>
|
604 |
-
<table class="general">
|
605 |
-
<tbody>
|
606 |
-
<tr>
|
607 |
-
<th><?php _e('CMP Status', 'cmp-coming-soon-maintenance');?></th>
|
608 |
-
<td>
|
609 |
-
<fieldset>
|
610 |
-
<div class="toggle-wrapper">
|
611 |
-
<input type="checkbox" name="cmp_status" id="cmp-status" class="toggle-checkbox" <?php checked( '1', $this->cmp_active() ); ?>>
|
612 |
-
<label for="cmp-status" class="toggle"><span class="toggle_handler"></span></label>
|
613 |
-
</div>
|
614 |
-
</fieldset>
|
615 |
-
|
616 |
-
<fieldset class="cmp-status-pages" style="display: <?php echo ( $this->cmp_active() == '1' ) ? 'block' : 'none';?>">
|
617 |
-
<label for="cmp-status-pages-0"<?php echo ($page_filter == '0') ? ' class="active"' : '';?>>
|
618 |
-
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-0" value="0" <?php checked( '0', $page_filter ); ?>>
|
619 |
-
<?php _e('Whole Website', 'cmp-coming-soon-maintenance');?>
|
620 |
-
</label>
|
621 |
-
|
622 |
-
<label for="cmp-status-pages-1"<?php echo ($page_filter == '1') ? ' class="active"' : '';?>>
|
623 |
-
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-1" value="1" <?php checked( '1', $page_filter ); ?>>
|
624 |
-
<?php _e('Homepage only', 'cmp-coming-soon-maintenance');?>
|
625 |
-
</label>
|
626 |
-
|
627 |
-
<a href="<?php echo admin_url(); ?>admin.php?page=cmp-advanced"><div class="label<?php echo ($page_filter == '2') ? ' active' : '';?>">
|
628 |
-
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-2" value="2" <?php checked( '2', $page_filter ); ?>>
|
629 |
-
<?php _e('Whitelist/Blacklist', 'cmp-coming-soon-maintenance');?>
|
630 |
-
</div></a>
|
631 |
-
</fieldset>
|
632 |
-
</td>
|
633 |
-
</tr>
|
634 |
-
|
635 |
-
<tr>
|
636 |
-
<th><?php _e('CMP Mode', 'cmp-coming-soon-maintenance');?></th>
|
637 |
-
<td>
|
638 |
-
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 2 ? ' active' : '';?>">
|
639 |
-
<input type="radio" name="cmp-activate" value="2" <?php checked( '2', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Coming Soon & Landing Page', 'cmp-coming-soon-maintenance');?><br>
|
640 |
-
<span class="info"><?php _e('Returns standard 200 HTTP OK response code to indexing robots. Set this option if you want to use our plugin as "Coming Soon" page.','cmp-coming-soon-maintenance')?></span>
|
641 |
-
</fieldset>
|
642 |
-
|
643 |
-
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 1 ? ' active' : '';?>">
|
644 |
-
<input type="radio" name="cmp-activate" value="1" <?php checked( '1', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Maintenance Mode', 'cmp-coming-soon-maintenance');?><br>
|
645 |
-
<span class="info"><?php _e('Returns 503 HTTP Service unavailable code to indexing robots. Set this option if your site is down due to maintanance and you want to display Maintanance page.','cmp-coming-soon-maintenance')?></span>
|
646 |
-
</fieldset>
|
647 |
-
|
648 |
-
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 3 ? ' active' : '';?>">
|
649 |
-
<input type="radio" name="cmp-activate" value="3" <?php checked( '3', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Redirect Mode', 'cmp-coming-soon-maintenance');?><br>
|
650 |
-
<span class="info redirect"><?php _e('Choose Redirect Mode if you want to redirect your website to another URL.','cmp-coming-soon-maintenance')?></span>
|
651 |
-
<div class="redirect-inputs" <?php echo $this->cmp_mode() == 3 ? 'style="display: block"' : 'style="display: none"';?>>
|
652 |
-
<input type="text" id="niteoCS_URL_redirect" name="niteoCS_URL_redirect" value="<?php echo esc_url( $niteoCS_URL_redirect ); ?>" class="regular-text code"><br>
|
653 |
-
<label for="niteoCS_redirect_time"><?php _e('Delay Time in Seconds', 'cmp-coming-soon-maintenance');?></label>
|
654 |
-
<input type="text" id="niteoCS_redirect_time" name="niteoCS_redirect_time" value="<?php echo esc_attr( $niteoCS_redirect_time ); ?>" class="regular-text code"><br>
|
655 |
-
</div>
|
656 |
-
</fieldset>
|
657 |
-
</td>
|
658 |
-
</tr>
|
659 |
-
|
660 |
-
<?php echo $this->render_settings->submit(); ?>
|
661 |
-
|
662 |
-
</tbody>
|
663 |
-
</table>
|
664 |
-
|
665 |
-
</div>
|
666 |
|
667 |
<?php
|
|
|
|
|
|
|
|
|
668 |
|
669 |
-
|
670 |
-
|
|
|
671 |
<?php
|
672 |
-
|
673 |
|
674 |
// add theme selector settings
|
675 |
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-theme-selector.php' ) ) {
|
676 |
require ( dirname(__FILE__) . '/inc/settings/settings-theme-selector.php' );
|
677 |
}
|
678 |
|
679 |
-
|
680 |
-
if ( isset( $theme_supports['logo'] ) && $theme_supports['logo'] ) {
|
681 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-logo.php' ) ) {
|
682 |
-
require ( dirname(__FILE__) . '/inc/settings/settings-logo.php' );
|
683 |
-
}
|
684 |
|
685 |
-
|
686 |
-
if (
|
687 |
-
|
688 |
-
|
|
|
689 |
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
<h3><?php _e('Main Content', 'cmp-coming-soon-maintenance');?></h3>
|
695 |
-
<table class="content">
|
696 |
-
<tbody>
|
697 |
-
<tr class="body-title">
|
698 |
-
<th><?php _e('Heading', 'cmp-coming-soon-maintenance');?></th>
|
699 |
-
<td>
|
700 |
-
<fieldset>
|
701 |
-
<input type="text" name="niteoCS_body_title" id="niteoCS_body_title" value="<?php echo esc_attr( $niteoCS_body_title ); ?>" class="regular-text code" placeholder="<?php _e('Leave empty to disable', 'cmp-coming-soon-maintenance');?>">
|
702 |
-
</fieldset>
|
703 |
-
</td>
|
704 |
-
</tr>
|
705 |
-
|
706 |
-
<tr>
|
707 |
-
<th><?php _e('Message', 'cmp-coming-soon-maintenance');?></th>
|
708 |
-
<td>
|
709 |
-
<?php wp_editor( $this->niteo_sanitize_html( $niteoCS_body ), 'niteoCS_body', $settings = array('textarea_name'=>'niteoCS_body', 'editor_height'=>'300') ); ?>
|
710 |
-
<span class="cmp-hint">* <?php _e('WordPress embeds are fully supported. You can also add any custom HTML. No 3rd party shortcodes are currently supported.', 'cmp-coming-soon-maintenance');?></span>
|
711 |
-
</td>
|
712 |
-
</tr>
|
713 |
-
|
714 |
-
<?php echo $this->render_settings->submit(); ?>
|
715 |
-
|
716 |
-
</tbody>
|
717 |
-
</table>
|
718 |
-
|
719 |
-
</div>
|
720 |
-
|
721 |
-
<?php
|
722 |
-
// get background settings
|
723 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-background.php' ) ) {
|
724 |
-
require ( dirname(__FILE__) . '/inc/settings/settings-background.php' );
|
725 |
-
}
|
726 |
-
|
727 |
-
// get slider settings
|
728 |
-
if ( isset( $theme_supports['slider'] ) && $theme_supports['slider'] ) {
|
729 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-slider.php' ) ) {
|
730 |
-
require (dirname(__FILE__) . '/inc/settings/settings-slider.php' );
|
731 |
-
}
|
732 |
|
733 |
-
} else {
|
734 |
-
update_option('niteoCS_slider', '0');
|
735 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-slider-disabled.php' ) ) {
|
736 |
-
require ( dirname(__FILE__) . '/inc/settings/settings-slider-disabled.php' );
|
737 |
}
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
}
|
744 |
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
require (dirname(__FILE__) . '/inc/settings/settings-counter.php');
|
749 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
|
751 |
-
|
752 |
-
|
753 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
}
|
755 |
|
756 |
-
|
|
|
|
|
|
|
|
|
757 |
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
}
|
763 |
|
764 |
-
} else {
|
765 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-subscribe-disabled.php') ) {
|
766 |
-
require (dirname(__FILE__) . '/inc/settings/settings-subscribe-disabled.php');
|
767 |
}
|
768 |
|
769 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
|
771 |
-
// get contact form settings
|
772 |
-
if ( isset( $theme_supports['contact-form'] ) && $theme_supports['contact-form'] ) {
|
773 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-contact_form.php') ) {
|
774 |
-
require (dirname(__FILE__) . '/inc/settings/settings-contact_form.php');
|
775 |
}
|
776 |
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
}
|
783 |
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
|
|
788 |
}
|
789 |
|
790 |
-
|
791 |
-
if (
|
792 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
793 |
}
|
|
|
794 |
|
795 |
-
|
|
|
|
|
|
|
796 |
|
797 |
// special effects for premium themes
|
798 |
if ( in_array( $this->cmp_selectedTheme(), $this->cmp_premium_themes_installed() ) || ( isset( $theme_supports['special_effects'] ) && $theme_supports['special_effects'] ) ) {
|
@@ -815,167 +743,20 @@ add_thickbox();
|
|
815 |
}
|
816 |
|
817 |
// font selector settings
|
818 |
-
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-typography.php' ) ) {
|
819 |
require ( dirname(__FILE__) . '/inc/settings/settings-typography.php' );
|
820 |
}
|
821 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
?>
|
823 |
|
824 |
-
<div class="table-wrapper seo">
|
825 |
-
<h3><?php _e('SEO Settings', 'cmp-coming-soon-maintenance');?></h3>
|
826 |
-
<table class="seo">
|
827 |
-
<tbody>
|
828 |
-
|
829 |
-
<tr>
|
830 |
-
<th><?php _e('Favicon', 'cmp-coming-soon-maintenance');?></th>
|
831 |
-
<td>
|
832 |
-
<fieldset>
|
833 |
-
<input type="hidden" class="widefat" id="niteoCS-favicon-id" name="niteoCS_favicon_id" value="<?php echo esc_attr( $niteoCS_favicon_id ); ?>" />
|
834 |
-
<input id="add-favicon" type="button" class="button" value="Select Favicon" />
|
835 |
-
|
836 |
-
<div class="favicon-wrapper">
|
837 |
-
<?php
|
838 |
-
if ( isset($niteoCS_favicon_url) && $niteoCS_favicon_url !== '' ) {
|
839 |
-
echo '<img src="'.esc_url($niteoCS_favicon_url).'" alt="">';
|
840 |
-
} ?>
|
841 |
-
</div>
|
842 |
-
<span class="cmp-hint">* <?php _e('By default your standard Favicon will be used but you can override it for CMP page by selecting different Favicon.', 'cmp-coming-soon-maintenance');?></span>
|
843 |
-
<br><br>
|
844 |
-
<input id="delete-favicon" type="button" class="button" value="Remove Favicon" />
|
845 |
-
</fieldset>
|
846 |
-
</td>
|
847 |
-
</tr>
|
848 |
-
|
849 |
-
<tr class="seo-title">
|
850 |
-
<th><?php _e('SEO Title', 'cmp-coming-soon-maintenance');?></th>
|
851 |
-
<td>
|
852 |
-
<fieldset>
|
853 |
-
<input type="text" name="niteoCS_title" id="niteoCS_title" value="<?php echo esc_attr( $niteoCS_title); ?>" class="regular-text code">
|
854 |
-
<span class="cmp-hint">* <?php _e('It is recommended to keep title under 60 characters.', 'cmp-coming-soon-maintenance');?></span>
|
855 |
-
</fieldset>
|
856 |
-
</td>
|
857 |
-
</tr>
|
858 |
-
|
859 |
-
<tr>
|
860 |
-
<th><?php _e('SEO Description', 'cmp-coming-soon-maintenance');?></th>
|
861 |
-
<td>
|
862 |
-
<fieldset>
|
863 |
-
<textarea name="niteoCS_descr" id="niteoCS_descr" class="code"><?php echo esc_attr( $niteoCS_descr); ?></textarea>
|
864 |
-
<span class="cmp-hint">* <?php _e('It is recommended to keep description between 50–300 characters.', 'cmp-coming-soon-maintenance');?></span>
|
865 |
-
</fieldset>
|
866 |
-
</td>
|
867 |
-
</tr>
|
868 |
-
|
869 |
-
<tr>
|
870 |
-
<th><?php _e('SEO Image', 'cmp-coming-soon-maintenance');?></th>
|
871 |
-
<td>
|
872 |
-
<fieldset>
|
873 |
-
<input type="hidden" class="widefat" id="niteoCS-seo_img-id" name="niteoCS_seo_img_id" value="<?php echo esc_attr( $niteoCS_seo_img_id ); ?>" />
|
874 |
-
<input id="add-seo_img" type="button" class="button" value="Select Image" />
|
875 |
-
|
876 |
-
<div class="seo_img-wrapper">
|
877 |
-
<?php
|
878 |
-
if ( isset( $niteoCS_seo_img_url ) && $niteoCS_seo_img_url !== '' ) {
|
879 |
-
echo '<img src="'.esc_url( $niteoCS_seo_img_url ).'" alt="">';
|
880 |
-
} ?>
|
881 |
-
</div>
|
882 |
-
<span class="cmp-hint">* <?php _e('By default seleceted Background image is displayed on Social Networks if your Website is shared. You can overwrite the image by selecting your custom image here.', 'cmp-coming-soon-maintenance');?></span>
|
883 |
-
<br><br>
|
884 |
-
<input id="delete-seo_img" type="button" class="button" value="Remove Image" />
|
885 |
-
</fieldset>
|
886 |
-
</td>
|
887 |
-
</tr>
|
888 |
-
|
889 |
-
<tr>
|
890 |
-
<th><?php _e('Search Engine Visibility', 'cmp-coming-soon-maintenance');?></th>
|
891 |
-
<td>
|
892 |
-
<fieldset>
|
893 |
-
<label><input id="seo-visibility" name="niteoCS_seo_visibility" type="checkbox" class="regular-text code" <?php checked( '0', $seo_visibility );?> /><?php _e('Discourage search engines from indexing this site - applies only for CMP page.', 'cmp-coming-soon-maintenance');?></label><br>
|
894 |
-
<span class="cmp-hint">* <?php _e('It is up to search engines to honor this request.', 'cmp-coming-soon-maintenance');?></span>
|
895 |
-
|
896 |
-
</fieldset>
|
897 |
-
</td>
|
898 |
-
</tr>
|
899 |
-
|
900 |
-
<tr>
|
901 |
-
<th><?php _e('No-cache Headers', 'cmp-coming-soon-maintenance');?></th>
|
902 |
-
<td>
|
903 |
-
<fieldset>
|
904 |
-
<label><input id="seo-nocache" name="niteoCS_seo_nocache" type="checkbox" class="regular-text code" <?php checked( '1', $seo_nocache );?> /><?php _e('Send no-cache headers. If you don\'t want the CMP page\'s preview to be cached by Facebook or other social media then enable this option.', 'cmp-coming-soon-maintenance');?></label>
|
905 |
-
</fieldset>
|
906 |
-
</td>
|
907 |
-
</tr>
|
908 |
-
|
909 |
-
<?php echo $this->render_settings->submit(); ?>
|
910 |
-
|
911 |
-
</tbody>
|
912 |
-
</table>
|
913 |
-
</div>
|
914 |
-
|
915 |
-
<div class="table-wrapper seo">
|
916 |
-
<h3><?php _e('Website Analytics', 'cmp-coming-soon-maintenance');?></h3>
|
917 |
-
<table class="seo">
|
918 |
-
<tbody>
|
919 |
-
|
920 |
-
<tr>
|
921 |
-
<th>
|
922 |
-
<fieldset>
|
923 |
-
<legend class="screen-reader-text">
|
924 |
-
<span><?php _e('Analytics', 'cmp-coming-soon-maintenance');?></span>
|
925 |
-
</legend>
|
926 |
-
|
927 |
-
<p>
|
928 |
-
<label title="<?php _e('Disabled', 'cmp-coming-soon-maintenance');?>">
|
929 |
-
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="disabled"<?php checked( 'disabled', $niteoCS_analytics_status );?>> <?php _e('Disabled', 'cmp-coming-soon-maintenance');?>
|
930 |
-
</label>
|
931 |
-
</p>
|
932 |
-
|
933 |
-
<p>
|
934 |
-
<label title="<?php _e('Google Analytics', 'cmp-coming-soon-maintenance');?>">
|
935 |
-
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="google"<?php checked( 'google', $niteoCS_analytics_status );?>> <?php _e('Google Analytics', 'cmp-coming-soon-maintenance');?>
|
936 |
-
</label>
|
937 |
-
</p>
|
938 |
-
|
939 |
-
<p>
|
940 |
-
<label title="<?php _e('Other', 'cmp-coming-soon-maintenance');?>">
|
941 |
-
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="other"<?php checked( 'other', $niteoCS_analytics_status );?>> <?php _e('Other', 'cmp-coming-soon-maintenance');?>
|
942 |
-
</label>
|
943 |
-
</p>
|
944 |
-
|
945 |
-
</fieldset>
|
946 |
-
</th>
|
947 |
-
|
948 |
-
<td>
|
949 |
-
<fieldset>
|
950 |
-
<p class="analytics-switch disabled"><?php _e('Analytics is disabled', 'cmp-coming-soon-maintenance');?></p>
|
951 |
-
|
952 |
-
<p class="analytics-switch google">
|
953 |
-
<label for="niteoCS_analytics"><?php _e('Insert Google Analytics Tracking ID', 'cmp-coming-soon-maintenance');?></label><br>
|
954 |
-
<input type="text" name="niteoCS_analytics" value="<?php echo esc_attr( $niteoCS_analytics ); ?>" class="regular-text code" placeholder="UA-xxxxxx-xx"/>
|
955 |
-
</p>
|
956 |
-
|
957 |
-
<p class="analytics-switch other">
|
958 |
-
<label for="niteoCS_analytics_other"><?php _e('Insert your the code provided by your Analytics Plugin or Website.', 'cmp-coming-soon-maintenance');?></label><br>
|
959 |
-
<textarea name="niteoCS_analytics_other" rows="5" class="code"><?php echo stripslashes( $niteoCS_analytics_other ); ?></textarea>
|
960 |
-
</p>
|
961 |
-
</fieldset>
|
962 |
-
</td>
|
963 |
-
</tr>
|
964 |
-
|
965 |
-
<?php echo $this->render_settings->submit(); ?>
|
966 |
-
|
967 |
-
</tbody>
|
968 |
-
</table>
|
969 |
-
</div>
|
970 |
-
|
971 |
-
<div class="table-wrapper-css custom_css">
|
972 |
-
<h3><?php _e('Enter Custom CSS', 'cmp-coming-soon-maintenance');?></h3>
|
973 |
-
|
974 |
-
<textarea name="niteoCS_custom_css" rows="20" id="niteoCS_custom_css" class="code"><?php echo esc_attr( $niteoCS_custom_css ); ?></textarea>
|
975 |
-
|
976 |
-
<?php echo $this->render_settings->submit(); ?>
|
977 |
-
|
978 |
-
</div>
|
979 |
|
980 |
</div> <!-- <div class="cmp-settings-wrapper"> -->
|
981 |
|
576 |
<div id="icon-options-general" class="icon32">
|
577 |
<br />
|
578 |
</div>
|
579 |
+
|
580 |
<div class="settings-wrap">
|
581 |
<form method="post" action="admin.php?page=cmp-settings&status=settings-saved" id="csoptions">
|
582 |
|
583 |
<?php wp_nonce_field('save_options','save_options_field'); ?>
|
584 |
+
|
585 |
<h2 class="nav-tab-wrapper">
|
586 |
<a class="nav-tab nav-tab-active general" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#general" data-tab="general"><i class="fa fa-cog" aria-hidden="true"></i><?php _e('Settings', 'cmp-coming-soon-maintenance');?></a>
|
587 |
|
588 |
+
<?php if ( $this->cmp_selectedTheme() !== 'divi' ) : ?>
|
589 |
+
<a class="nav-tab content" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#content" data-tab="content"><i class="fa fa-pencil-square-o" aria-hidden="true"></i><?php _e('Content', 'cmp-coming-soon-maintenance');?></a>
|
590 |
+
<?php endif; ?>
|
591 |
<a class="nav-tab theme-setup" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#theme-setup" data-tab="theme-setup"><i class="fa fa-wrench" aria-hidden="true"></i><?php _e('Customize', 'cmp-coming-soon-maintenance');?></a>
|
592 |
|
593 |
<a class="nav-tab seo" href="<?php echo admin_url(); ?>admin.php?page=cmp-settings#seo" data-tab="seo"><i class="fa fa-line-chart" aria-hidden="true"></i><?php _e('SEO & Analytics', 'cmp-coming-soon-maintenance');?></a>
|
602 |
|
603 |
<div class="cmp-inputs-wrapper">
|
604 |
|
605 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
|
607 |
<?php
|
608 |
+
// get general settings
|
609 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-general.php' ) ) {
|
610 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-general.php' );
|
611 |
+
}
|
612 |
|
613 |
+
// include banner
|
614 |
+
if ( !class_exists('cmp_themes_manager') ) { ?>
|
615 |
+
<a class="cmp-bundle-banner table-wrapper general" href="https://niteothemes.com/cmp-bundle/" target="_blank"><img src="<?php echo plugins_url('img/banner_bundle.jpg', __FILE__);?>" alt="CMP Bundle Banner"></a>
|
616 |
<?php
|
617 |
+
}
|
618 |
|
619 |
// add theme selector settings
|
620 |
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-theme-selector.php' ) ) {
|
621 |
require ( dirname(__FILE__) . '/inc/settings/settings-theme-selector.php' );
|
622 |
}
|
623 |
|
624 |
+
if ( $this->cmp_selectedTheme() !== 'divi' ) {
|
|
|
|
|
|
|
|
|
625 |
|
626 |
+
// get logo settings
|
627 |
+
if ( isset( $theme_supports['logo'] ) && $theme_supports['logo'] ) {
|
628 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-logo.php' ) ) {
|
629 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-logo.php' );
|
630 |
+
}
|
631 |
|
632 |
+
} else {
|
633 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-logo-disabled.php' ) ) {
|
634 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-logo-disabled.php' );
|
635 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
|
|
|
|
|
|
|
|
|
637 |
}
|
638 |
+
|
639 |
+
// get content settings
|
640 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-content.php' ) ) {
|
641 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-content.php' );
|
642 |
+
}
|
|
|
643 |
|
644 |
+
// get background settings
|
645 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-background.php' ) ) {
|
646 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-background.php' );
|
|
|
647 |
}
|
648 |
+
|
649 |
+
// get slider settings
|
650 |
+
if ( isset( $theme_supports['slider'] ) && $theme_supports['slider'] ) {
|
651 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-slider.php' ) ) {
|
652 |
+
require (dirname(__FILE__) . '/inc/settings/settings-slider.php' );
|
653 |
+
}
|
654 |
|
655 |
+
} else {
|
656 |
+
update_option('niteoCS_slider', '0');
|
657 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-slider-disabled.php' ) ) {
|
658 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-slider-disabled.php' );
|
659 |
+
}
|
660 |
+
}
|
661 |
+
|
662 |
+
// include custom theme content settings
|
663 |
+
if ( file_exists($this->cmp_theme_dir($this->cmp_selectedTheme()).$this->cmp_selectedTheme().'/'.$this->cmp_selectedTheme().'-content_settings.php') ) {
|
664 |
+
include ( $this->cmp_theme_dir($this->cmp_selectedTheme()).$this->cmp_selectedTheme().'/'.$this->cmp_selectedTheme().'-content_settings.php' );
|
665 |
}
|
666 |
|
667 |
+
// get counter settings
|
668 |
+
if ( isset( $theme_supports['counter'] ) && $theme_supports['counter'] ) {
|
669 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-counter.php') ) {
|
670 |
+
require (dirname(__FILE__) . '/inc/settings/settings-counter.php');
|
671 |
+
}
|
672 |
|
673 |
+
} else {
|
674 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-counter-disabled.php') ) {
|
675 |
+
require (dirname(__FILE__) . '/inc/settings/settings-counter-disabled.php');
|
676 |
+
}
|
|
|
677 |
|
|
|
|
|
|
|
678 |
}
|
679 |
|
680 |
+
// get subscribe settings
|
681 |
+
if ( isset( $theme_supports['subscribe'] ) && $theme_supports['subscribe'] ) {
|
682 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-subscribe.php') ) {
|
683 |
+
require (dirname(__FILE__) . '/inc/settings/settings-subscribe.php');
|
684 |
+
}
|
685 |
+
|
686 |
+
} else {
|
687 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-subscribe-disabled.php') ) {
|
688 |
+
require (dirname(__FILE__) . '/inc/settings/settings-subscribe-disabled.php');
|
689 |
+
}
|
690 |
|
|
|
|
|
|
|
|
|
691 |
}
|
692 |
|
693 |
+
// get contact form settings
|
694 |
+
if ( isset( $theme_supports['contact-form'] ) && $theme_supports['contact-form'] ) {
|
695 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-contact_form.php') ) {
|
696 |
+
require (dirname(__FILE__) . '/inc/settings/settings-contact_form.php');
|
697 |
+
}
|
|
|
698 |
|
699 |
+
}
|
700 |
+
|
701 |
+
// get social media settings
|
702 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-social-media.php' ) ) {
|
703 |
+
require_once ( dirname(__FILE__) . '/inc/settings/settings-social-media.php' );
|
704 |
}
|
705 |
|
706 |
+
// get footer
|
707 |
+
if ( isset( $theme_supports['footer'] ) && $theme_supports['footer'] ) {
|
708 |
+
if ( file_exists( dirname(__FILE__) . '/inc/settings/settings-footer.php') ) {
|
709 |
+
require_once ( dirname(__FILE__) . '/inc/settings/settings-footer.php' );
|
710 |
+
}
|
711 |
+
|
712 |
+
} else {
|
713 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-footer-disabled.php' ) ) {
|
714 |
+
require_once ( dirname(__FILE__) . '/inc/settings/settings-footer-disabled.php' );
|
715 |
+
}
|
716 |
+
|
717 |
}
|
718 |
+
}
|
719 |
|
720 |
+
// include theme related settings
|
721 |
+
if ( file_exists( $this->cmp_theme_dir( 'divi' ).'divi/divi-admin-settings.php' ) ) {
|
722 |
+
require ( $this->cmp_theme_dir( 'divi' ).'divi/divi-admin-settings.php' );
|
723 |
+
}
|
724 |
|
725 |
// special effects for premium themes
|
726 |
if ( in_array( $this->cmp_selectedTheme(), $this->cmp_premium_themes_installed() ) || ( isset( $theme_supports['special_effects'] ) && $theme_supports['special_effects'] ) ) {
|
743 |
}
|
744 |
|
745 |
// font selector settings
|
746 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-typography.php' ) && $this->cmp_selectedTheme() !== 'divi' ) {
|
747 |
require ( dirname(__FILE__) . '/inc/settings/settings-typography.php' );
|
748 |
}
|
749 |
+
|
750 |
+
// SEO settings
|
751 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-seo.php' ) ) {
|
752 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-seo.php' );
|
753 |
+
}
|
754 |
+
// CSS settings
|
755 |
+
if ( file_exists(dirname(__FILE__) . '/inc/settings/settings-css.php' ) ) {
|
756 |
+
require ( dirname(__FILE__) . '/inc/settings/settings-css.php' );
|
757 |
+
}
|
758 |
?>
|
759 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
|
761 |
</div> <!-- <div class="cmp-settings-wrapper"> -->
|
762 |
|
cmp-sidebar.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<div class="cmp-sidebar-wrapper">
|
2 |
|
3 |
<div class="selected-theme widget">
|
4 |
-
<h3 class="title"><?php _e('Selected CMP Theme', 'cmp-coming-soon-maintenance');?>: <?php echo ucwords( esc_html( str_replace( '_', ' ',
|
5 |
|
6 |
-
<img src="<?php echo esc_url( plugins_url('/img/thumbnails/'.
|
7 |
|
8 |
</div>
|
9 |
|
1 |
<div class="cmp-sidebar-wrapper">
|
2 |
|
3 |
<div class="selected-theme widget">
|
4 |
+
<h3 class="title"><?php _e('Selected CMP Theme', 'cmp-coming-soon-maintenance');?>: <?php echo ucwords( esc_html( str_replace( '_', ' ', CMP_Coming_Soon_and_Maintenance()->cmp_selectedTheme() ) ) );?></h3>
|
5 |
|
6 |
+
<img src="<?php echo esc_url( plugins_url('/img/thumbnails/'. CMP_Coming_Soon_and_Maintenance()->cmp_selectedTheme() . '_thumbnail.jpg', __FILE__) );?>" style="max-width:100%" alt="">
|
7 |
|
8 |
</div>
|
9 |
|
css/cmp-settings-style.css
CHANGED
@@ -195,10 +195,7 @@
|
|
195 |
text-align: left
|
196 |
}
|
197 |
|
198 |
-
|
199 |
-
.cmp-coming-soon-maintenance .cmp-logo-switch.graphic {
|
200 |
-
margin-top: 1em
|
201 |
-
}
|
202 |
|
203 |
.cmp-coming-soon-maintenance .table-wrapper h3:not(.no-icon):not(.notice-title):not(#heading-example)::after {
|
204 |
font-family: fontAwesome;
|
@@ -222,6 +219,7 @@
|
|
222 |
content: "\f196"
|
223 |
}
|
224 |
|
|
|
225 |
.cmp-coming-soon-maintenance .table-wrapper h4 {
|
226 |
margin: 0
|
227 |
}
|
@@ -260,6 +258,10 @@
|
|
260 |
font-weight: 600;
|
261 |
}
|
262 |
|
|
|
|
|
|
|
|
|
263 |
.cmp-coming-soon-maintenance #delete-banner,
|
264 |
.cmp-coming-soon-maintenance #delete-favicon,
|
265 |
.cmp-coming-soon-maintenance #delete-seo_img,
|
@@ -470,6 +472,10 @@
|
|
470 |
font-weight: 600;
|
471 |
}
|
472 |
|
|
|
|
|
|
|
|
|
473 |
.cmp-coming-soon-maintenance .banner-wrapper,
|
474 |
.cmp-coming-soon-maintenance .favicon-wrapper,
|
475 |
.cmp-coming-soon-maintenance .logo-wrapper,
|
195 |
text-align: left
|
196 |
}
|
197 |
|
198 |
+
|
|
|
|
|
|
|
199 |
|
200 |
.cmp-coming-soon-maintenance .table-wrapper h3:not(.no-icon):not(.notice-title):not(#heading-example)::after {
|
201 |
font-family: fontAwesome;
|
219 |
content: "\f196"
|
220 |
}
|
221 |
|
222 |
+
|
223 |
.cmp-coming-soon-maintenance .table-wrapper h4 {
|
224 |
margin: 0
|
225 |
}
|
258 |
font-weight: 600;
|
259 |
}
|
260 |
|
261 |
+
.cmp-coming-soon-maintenance .table-wrapper th p:first-of-type {
|
262 |
+
margin-top: 0;
|
263 |
+
}
|
264 |
+
|
265 |
.cmp-coming-soon-maintenance #delete-banner,
|
266 |
.cmp-coming-soon-maintenance #delete-favicon,
|
267 |
.cmp-coming-soon-maintenance #delete-seo_img,
|
472 |
font-weight: 600;
|
473 |
}
|
474 |
|
475 |
+
.cmp-coming-soon-maintenance .logo-wrapper:empty {
|
476 |
+
display: none;
|
477 |
+
}
|
478 |
+
|
479 |
.cmp-coming-soon-maintenance .banner-wrapper,
|
480 |
.cmp-coming-soon-maintenance .favicon-wrapper,
|
481 |
.cmp-coming-soon-maintenance .logo-wrapper,
|
css/cmp-settings-style.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.cmp-coming-soon-maintenance{overflow-x:hidden}.no-margin{margin:0}.cmp-coming-soon-maintenance .cmp-settings-wrapper{position:relative;margin-top:6px}.cmp-coming-soon-maintenance .wrapper-disabled{opacity:.4}.cmp-coming-soon-maintenance .comingsoon-error,.cmp-coming-soon-maintenance .comingsoon-success{padding:1em;width:calc(100% - 4em);border-left:4px solid red;background-color:#fff}.cmp-coming-soon-maintenance .comingsoon-success{border-left:4px solid #00d221}.cmp-coming-soon-maintenance .padding-bottom{padding-bottom:10px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single,.cmp-coming-soon-maintenance input[type=text]{border:1px solid #d4d4d4;border-radius:4px;line-height:2.5em;height:2.5em;box-shadow:inset 0 1px 2px rgba(0,0,0,.03)}.cmp-coming-soon-maintenance .select2-container .select2-selection--single{height:35px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:35px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single .select2-selection__arrow{top:4px}.cmp-coming-soon-maintenance .select2-container:not(.select2-container--open){width:100%!important}.cmp-coming-soon-maintenance input[type=range]{display:block;-webkit-appearance:none;background-color:#dedede;width:100%;height:12px;border-radius:5px;margin:10px auto 0;outline:0}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background-color:#1d3557;width:17px;height:17px;border-radius:50%;border:1px solid #d4d4d4;cursor:pointer;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb:hover{background-color:#1d3557;border:2px solid #1d3557}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb:active{-webkit-transform:scale(1.2);transform:scale(1.2)}.cmp-coming-soon-maintenance input[type=text],.cmp-coming-soon-maintenance textarea{width:100%}.cmp-coming-soon-maintenance .table-wrapper.cmp-bypass,.cmp-coming-soon-maintenance .table-wrapper.cmp-export-import,.cmp-coming-soon-maintenance .table-wrapper.cmp-misc,.cmp-coming-soon-maintenance .table-wrapper.cmp-notifications,.cmp-coming-soon-maintenance .table-wrapper.content,.cmp-coming-soon-maintenance .table-wrapper.install,.cmp-coming-soon-maintenance .table-wrapper.seo,.cmp-coming-soon-maintenance .table-wrapper.theme-setup{display:none}.cmp-coming-soon-maintenance .wp-upload-form.cmp{padding:4em;display:block}.cmp-coming-soon-maintenance .cmp-status{width:95%;padding:10px;font-weight:600;font-size:1.2em;cursor:pointer;opacity:.8}.cmp-coming-soon-maintenance .cmp-status.active{opacity:1}.cmp-coming-soon-maintenance .cmp-status span{font-weight:400}.cmp-coming-soon-maintenance .redirect{margin-bottom:0}.cmp-coming-soon-maintenance .help-settings,.cmp-coming-soon-maintenance .subscribers-settings,.cmp-coming-soon-maintenance .table-wrapper,.cmp-coming-soon-maintenance .translate-settings{background-color:#fff;border:1px solid #dedede;margin:0 0 1em}.cmp-coming-soon-maintenance div.custom_css{padding-bottom:2em;padding-right:3em;background:#fff;border:1px solid #dedede;max-width:100%}.cmp-coming-soon-maintenance .CodeMirror-wrap{border-right:1px solid #dedede}.cmp-coming-soon-maintenance .custom_css .cmp-submit{padding-left:1em;border-top:1px solid #dedede;padding-top:2em}.cmp-coming-soon-maintenance .cmp-inputs-wrapper .translation input,.cmp-coming-soon-maintenance .cmp-inputs-wrapper .translation textarea{width:100%}.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{display:inline-block;max-width:1140px;width:100%}.cmp-coming-soon-maintenance .table-wrapper.closed table,.cmp-coming-soon-maintenance .translate-settings tfoot{display:none}.cmp-coming-soon-maintenance .help-settings,.cmp-coming-soon-maintenance .subscribers-settings,.cmp-coming-soon-maintenance .translate-settings{max-width:calc(920px - 2em);min-width:calc(920px - 2em);padding:1em}.cmp-coming-soon-maintenance .custom_css h3,.cmp-coming-soon-maintenance .table-wrapper h3{position:relative;padding:.5em 0 .5em 1em;margin:0;border-bottom:1px solid #dedede;text-align:left}.cmp-coming-soon-maintenance .background-media td fieldset,.cmp-coming-soon-maintenance .cmp-logo-switch.graphic{margin-top:1em}.cmp-coming-soon-maintenance .table-wrapper h3:not(.no-icon):not(.notice-title):not(#heading-example)::after{font-family:fontAwesome;content:"\f147";position:absolute;right:10px;font-weight:400;opacity:.6;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cmp-coming-soon-maintenance #niteoCS-text-logo,.cmp-coming-soon-maintenance .theme-title,.cmp-coming-soon-maintenance th label{font-weight:600}.cmp-coming-soon-maintenance .table-wrapper.closed h3:not(.no-icon):not(.notice-title)::after{content:"\f196"}.cmp-coming-soon-maintenance .table-wrapper h4{margin:0}.cmp-coming-soon-maintenance .table-wrapper table{padding:1em;height:auto;width:95%}.cmp-coming-soon-maintenance .table-wrapper .theme-selector{width:100%}.cmp-coming-soon-maintenance .table-wrapper select{margin-bottom:10px;width:100%}.cmp-coming-soon-maintenance .table-wrapper td{width:100%;max-width:960px;margin-bottom:1em;display:block}.cmp-coming-soon-maintenance #unsplash_img,.cmp-coming-soon-maintenance .table-wrapper td.theme-selector{max-width:100%}.cmp-coming-soon-maintenance .table-wrapper th{vertical-align:top;width:180px;text-align:left;font-weight:600}.cmp-coming-soon-maintenance #delete-banner,.cmp-coming-soon-maintenance #delete-favicon,.cmp-coming-soon-maintenance #delete-logo,.cmp-coming-soon-maintenance #delete-seo_img,.cmp-coming-soon-maintenance #delete-video-thumb{display:none}.cmp-coming-soon-maintenance .social-inputs li.social-labels{display:block}.cmp-coming-soon-maintenance .social-media{margin-top:0;margin-bottom:3em}.cmp-coming-soon-maintenance .social-inputs{position:relative}.cmp-coming-soon-maintenance .social-inputs .label{display:none;font-weight:600;position:absolute;top:-20px;left:-8px}.cmp-coming-soon-maintenance #niteoCS-text-logo{border:none;box-shadow:none;font-size:3em}.cmp-coming-soon-maintenance .social-description{margin-top:0}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(2){left:62px}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(3){left:148px}.cmp-coming-soon-maintenance .social-media li{display:inline-block;padding-right:1.2em;padding-bottom:1em}.cmp-coming-soon-maintenance .social-media i{font-size:2.45em;cursor:pointer}.cmp-coming-soon-maintenance .social-media i.active{color:#d54e21}.cmp-coming-soon-maintenance .social-inputs li{display:none;width:100%}.cmp-coming-soon-maintenance .social-inputs li.active{display:inline-block}.cmp-coming-soon-maintenance #custom_content_font,.cmp-coming-soon-maintenance #custom_headings_font,.cmp-coming-soon-maintenance .unsplash-feed{display:none}.cmp-coming-soon-maintenance .social-inputs p{position:relative;padding-left:50px;height:50px}.cmp-coming-soon-maintenance .social-inputs p i{position:absolute;left:0;top:20px;font-size:30px;width:30px;cursor:move}.cmp-coming-soon-maintenance .theme-details,.cmp-coming-soon-maintenance .toggle{cursor:pointer}.cmp-coming-soon-maintenance .social-inputs label{padding-left:100px}.cmp-coming-soon-maintenance .social-inputs input[type=text]{margin-left:100px;width:calc(100% - 100px)}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]{position:absolute;width:26px;height:26px;top:23px;left:65px}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]:checked:before{margin:3px 0 0 1px}.cmp-coming-soon-maintenance #unsplash_img{display:none}.cmp-coming-soon-maintenance #unsplash-media{position:relative}.cmp-coming-soon-maintenance .color-preview,.cmp-coming-soon-maintenance .gradient-preview,.cmp-coming-soon-maintenance .pattern-wrapper{position:relative;background-repeat:repeat;height:200px;border:1px solid #ededed;margin-top:1em}.chameleon.color-preview{-webkit-animation:chameleon 19s infinite;animation:chameleon 19s infinite}@-webkit-keyframes chameleon{0%{background:#2ecc71}25%{background:#f1c40f}50%{background:#e74c3c}75%{background:#3498db}100%{background:#2ecc71}}@keyframes chameleon{0%{background:#2ecc71}25%{background:#f1c40f}50%{background:#e74c3c}75%{background:#3498db}100%{background:#2ecc71}}.cmp-coming-soon-maintenance .theme-overlay .screenshot,.cmp-coming-soon-maintenance .thumbnail-holder{position:relative;background-size:cover;background-repeat:no-repeat;background-position:center}.cmp-coming-soon-maintenance .video-local-wrapper,.cmp-coming-soon-maintenance .video-yt-wrapper{position:relative;width:100%;margin-top:1em}.cmp-coming-soon-maintenance #add-pattern{margin-bottom:1em}.cmp-coming-soon-maintenance .info{font-size:12px}.cmp-coming-soon-maintenance .nav-tab i{padding-right:3px}.cmp-coming-soon-maintenance .nav-tab-wrapper{border:none!important}.cmp-coming-soon-maintenance .nav-tab{font-weight:400;background:#fff;padding:10px 20px;border:1px solid #e2e2e2}.cmp-coming-soon-maintenance .nav-tab:first-of-type{margin-left:0}.cmp-coming-soon-maintenance .nav-tab-active,.cmp-coming-soon-maintenance .nav-tab-active:focus,.cmp-coming-soon-maintenance .nav-tab-active:focus:active,.cmp-coming-soon-maintenance .nav-tab-active:hover{background:#1d3557;border:1px solid #1d3557;outline:0;box-shadow:none;color:#fff;font-weight:600}.cmp-coming-soon-maintenance .banner-wrapper,.cmp-coming-soon-maintenance .favicon-wrapper,.cmp-coming-soon-maintenance .logo-wrapper,.cmp-coming-soon-maintenance .seo_img-wrapper{margin:1em 0}.cmp-coming-soon-maintenance .favicon-wrapper img,.cmp-coming-soon-maintenance .logo-wrapper img{background-color:#efefef;padding:1em}.cmp-coming-soon-maintenance .favicon-wrapper img{max-width:32px}.cmp-coming-soon-maintenance .background-media img,.cmp-coming-soon-maintenance .logo-wrapper img,.cmp-coming-soon-maintenance .seo_img-wrapper img{max-width:100%;width:100%;vertical-align:top}.cmp-coming-soon-maintenance .background-thumb-wrapper,.cmp-coming-soon-maintenance .video-thumb-wrapper{position:relative;margin:1em 0;overflow:hidden}.cmp-coming-soon-maintenance .thumbnail-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.cmp-coming-soon-maintenance .custom-gallery:not(.gallery-1):not(.gallery-2){display:-ms-grid;display:grid;height:auto;-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;-ms-grid-rows:1fr auto;grid-template-rows:1fr auto;grid-template-areas:"Big Big Big" "small-3 small-2 small-1";grid-gap:10px}.cmp-coming-soon-maintenance .custom-gallery.gallery-3{-ms-grid-columns:1fr 1fr!important;grid-template-columns:1fr 1fr!important;grid-template-areas:"Big Big" "small-2 small-1"!important}.cmp-coming-soon-maintenance .gallery-2 .big-thumb{margin-bottom:1em}.cmp-coming-soon-maintenance .big-thumb{grid-area:Big/Big;overflow:hidden;position:relative}.cmp-coming-soon-maintenance .logo-wrapper img{max-height:150px;width:auto}.cmp-coming-soon-maintenance #font-example-wrapper{padding:1em;border:1px solid #dedede;overflow:hidden;min-height:20em;overflow:auto}.cmp-coming-soon-maintenance #heading-example{border-bottom:none;line-height:1.5;padding:0}.cmp-coming-soon-maintenance .font-selector td:first-of-type{padding-bottom:2em;display:flex;flex-wrap:wrap}.cmp-coming-soon-maintenance .font-selector fieldset{box-sizing:border-box;padding:.5em .2em;flex:1;min-width:100%}.cmp-coming-soon-maintenance .font-selector .cmp-width-33{min-width:30%}.cmp-coming-soon-maintenance .font-selector .cmp-width-50{min-width:50%}.cmp-coming-soon-maintenance .theme-wrapper{display:inline-block;margin:10px 10px 0 0;width:calc(33.33% - 12px);text-align:center;border:1px solid #efefef;border-radius:6px;position:relative}.cmp-coming-soon-maintenance .theme-wrapper:nth-of-type(3n){margin-right:0}.cmp-coming-soon-maintenance .theme-wrapper.active{background-color:#ddd}.cmp-coming-soon-maintenance .thumbnail-holder{width:100%;border-top-left-radius:5px;border-top-right-radius:5px}.cmp-coming-soon-maintenance .thumbnail-holder::before{content:'';display:block;padding-top:56.25%;-o-transition:background-color .1s;transition:background-color .1s;border-top-left-radius:5px;border-top-right-radius:5px}.cmp-coming-soon-maintenance .theme-wrapper:hover .thumbnail-holder::before{background-color:rgba(0,0,0,.95)}.cmp-coming-soon-maintenance .toggle,.cmp-coming-soon-maintenance .toggle-wrapper{display:inline-block}.cmp-coming-soon-maintenance .theme-title{text-transform:uppercase}.cmp-coming-soon-maintenance .theme-version{float:right}.cmp-coming-soon-maintenance .theme-wrapper .hide:not(.selected){opacity:0;-o-transition:opacity .1s,background-color .1s;transition:opacity .1s,background-color .1s}.cmp-coming-soon-maintenance .theme-wrapper:hover .hide{opacity:1;-o-transition:opacity .1s,background-color .1s;transition:opacity .1s,background-color .1s}.cmp-coming-soon-maintenance .theme-inputs{padding:5px;height:2em;line-height:2em;color:#656565}.cmp-coming-soon-maintenance .active .theme-inputs{background:#2d936c;color:#fff}.cmp-coming-soon-maintenance .theme-inputs .italic{font-style:italic}.cmp-coming-soon-maintenance .theme-wrapper .buttons-wrapper{position:absolute;top:calc(50% - 1em);left:0;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.cmp-coming-soon-maintenance .cmp-button,.cmp-coming-soon-maintenance .cmp-preview,.cmp-coming-soon-maintenance .theme-wrapper .button{height:28px;line-height:28px;padding:0 10px;min-width:80px;border-radius:3px;color:#fff!important;-moz-appearance:none;-webkit-appearance:none;-o-transition:background-color .5s;transition:background-color .5s;border:none!important;box-shadow:none;-webkit-box-shadow:none;text-shadow:none;text-transform:uppercase;cursor:pointer}.cmp-coming-soon-maintenance .cmp-button.submit,.cmp-coming-soon-maintenance .theme-actions .activate{background-color:#e63946;color:#fff;border:none;-o-transition:background-color .5s;transition:background-color .5s}.cmp-coming-soon-maintenance .import-export-button{background-color:#0085ba}.cmp-coming-soon-maintenance .theme-wrapper a.button:focus,.cmp-coming-soon-maintenance .theme-wrapper a.button:visited{background:0 0;box-shadow:none}.cmp-coming-soon-maintenance .theme-wrapper a.button.theme-purchase{background-color:#ff3284}.cmp-coming-soon-maintenance .cmp-status-pages .label,.cmp-coming-soon-maintenance .cmp-status-pages label{height:33px;width:140px;display:flex;align-items:center;justify-content:center;flex-direction:inherit;text-align:center;border-bottom:2px solid transparent;border-radius:0;float:left;margin-top:2em;margin-left:3em;margin-bottom:2em}.cmp-coming-soon-maintenance .cmp-status-pages .label.active,.cmp-coming-soon-maintenance .cmp-status-pages label.active{border-color:rgba(29,53,87,.6)}.cmp-coming-soon-maintenance .cmp-status-pages label:first-of-type{margin-left:0}.cmp-coming-soon-maintenance .cmp-status-pages a{color:inherit}.cmp-coming-soon-maintenance .cmp-status-pages input{margin:0;margin-right:.5em}.redirect-inputs{font-size:.8em;font-weight:400}.cmp-coming-soon-maintenance .cmp-button.submit:focus,.cmp-coming-soon-maintenance .cmp-button.submit:hover,.cmp-coming-soon-maintenance .theme-actions .activate:focus,.cmp-coming-soon-maintenance .theme-actions .activate:hover{background-color:#e63946;color:#fff;border:none}.cmp-coming-soon-maintenance .theme-wrapper .button{border:2px solid #fff!important;background:0 0;min-width:190px;line-height:2.5em;height:3em}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]{position:relative;background:0 0;border:none;outline:0;box-shadow:none}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]::before{content:none}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]::after{content:'';font-family:fontAwesome;content:"\f096";position:absolute;top:3px;left:0;opacity:1;color:#fff}.cmp-coming-soon-maintenance .theme-wrapper .selected.button.theme-select input[type=radio]::after{content:"\f046";color:#23282d}.cmp-coming-soon-maintenance .theme-wrapper.active .button.theme-select input[type=radio]::after{content:"\f046"}.cmp-coming-soon-maintenance .theme-wrapper .button:hover,.cmp-coming-soon-maintenance .theme-wrapper a.button:hover{background:#fff;color:#23282d!important}.cmp-coming-soon-maintenance .selected.button,.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select:hover input[type=radio]::after{color:#23282d!important}.cmp-coming-soon-maintenance .theme-wrapper .theme-preview,.cmp-coming-soon-maintenance .theme-wrapper .theme-purchase,.cmp-coming-soon-maintenance .theme-wrapper .theme-select{margin-bottom:5px}.cmp-coming-soon-maintenance .theme-wrapper .theme-select.selected{background-color:#fff}.cmp-coming-soon-maintenance .theme-wrapper .theme-details.button{line-height:0}.cmp-coming-soon-maintenance .cmp-preview{background-color:#2485bf!important}.cmp-coming-soon-maintenance .cmp-preview:active,.cmp-coming-soon-maintenance .cmp-preview:hover{background-color:#32b2ff!important}.cmp-coming-soon-maintenance .theme-info .theme-purchase{width:auto;min-width:40%;height:55px;font-size:2em;background-color:#2c3e50;border:none}.cmp-coming-soon-maintenance .theme-info .theme-purchase:focus,.cmp-coming-soon-maintenance .theme-info .theme-purchase:hover{background-color:#34495e}.cmp-coming-soon-maintenance .button i{margin-right:5px}.cmp-coming-soon-maintenance .theme-purchase a,.cmp-coming-soon-maintenance .theme-purchase a:hover,.cmp-coming-soon-maintenance .theme-purchase a:visited{color:#fff;text-decoration:none}.cmp-coming-soon-maintenance p.cmp-submit{margin:0;padding-top:0;font-weight:400;text-align:left}.cmp-coming-soon-maintenance .theme-overlay .screenshot{-o-transition:background-image .2s ease-in-out;transition:background-image .2s ease-in-out}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav{position:absolute;right:0;top:0;color:#fff;cursor:pointer}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav div{width:40px;height:40px;background-color:#000;line-height:40px;opacity:.7;-o-transition:opacity .5s;transition:opacity .5s}.cmp-coming-soon-maintenance .fifty-layout input:checked+img,.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav div:hover{opacity:1}.cmp-coming-soon-maintenance .toggle,.cmp-coming-soon-maintenance .toggle:after,.cmp-coming-soon-maintenance .toggle:before{-webkit-transition:all .2s ease-in-out}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav .left{float:left}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav .right{float:right}.cmp-coming-soon-maintenance .theme-description ul{list-style:none;padding-left:2em}.cmp-coming-soon-maintenance .theme-description h4,.cmp-coming-soon-maintenance .theme-description li{font-size:13px}.cmp-coming-soon-maintenance .theme-description .supported i{color:green}.cmp-coming-soon-maintenance .theme-description .not-supported i{color:red}.cmp-coming-soon-maintenance .wp-list-table .column-id{width:5%}.cmp-coming-soon-maintenance .cmp-status{margin-bottom:1em}.cmp-coming-soon-maintenance .toggle{position:relative;width:340px;height:50px;font-weight:600;background:0 0;border:2px solid rgba(29,53,87,.6);-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;border-radius:15px}.cmp-coming-soon-maintenance .toggle:after,.cmp-coming-soon-maintenance .toggle:before{position:absolute;line-height:50px;font-size:1em;z-index:2;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.cmp-coming-soon-maintenance input[type=checkbox].toggle-checkbox{display:none}.cmp-coming-soon-maintenance .toggle_handler{display:inline-block;position:relative;z-index:1;background:#e63946;width:170px;height:44px;top:3px;left:5px;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);border-radius:10px}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle .toggle_handler{-webkit-transform:translateX(160px);-ms-transform:translateX(160px);transform:translateX(160px);background:#2d936c}.cmp-coming-soon-maintenance .toggle:before{content:"Disabled";left:63px;color:#fff}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle:before,.cmp-coming-soon-maintenance .toggle:after{color:#444}.cmp-coming-soon-maintenance .toggle:after{content:"Enabled";right:68px}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle:after{color:#fff}.cmp-coming-soon-maintenance .fifty-layout label{display:block;position:relative;padding-bottom:1em;margin-top:1em}.cmp-coming-soon-maintenance .fifty-layout input{visibility:hidden;position:absolute;margin:0}.cmp-coming-soon-maintenance .fifty-layout img{display:block;opacity:.3;outline:solid 1px;padding:2px;margin-left:5px;margin-top:5px}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{display:inline-block;width:calc(100% - 6em - 1088px);max-width:350px;min-width:300px;margin-left:1em;padding-top:0;vertical-align:top;text-align:center}.cmp-advanced .cmp-sidebar-wrapper,.content-settings .cmp-sidebar-wrapper{margin-top:61px}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:2em;border:1px solid #dedede;background:#fff}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget.selected-theme{padding:0}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget.selected-theme img{vertical-align:top}.cmp-coming-soon-maintenance .widget.donate img{padding:0}.cmp-coming-soon-maintenance .widget.donate img.niteo-logo{max-width:120px}.cmp-coming-soon-maintenance .cmp-rate-us .button,.cmp-coming-soon-maintenance .cmp-rate-us a{display:block;text-align:center}.cmp-coming-soon-maintenance .cmp-rate-us a{padding:1em 0}.cmp-coming-soon-maintenance .cmp-rate-us .button{max-width:150px;margin:0 auto 1em}.cmp-coming-soon-maintenance .cmp-rate-us form{text-align:center}.cmp-coming-soon-maintenance .subscribers .column-id{width:5%}.cmp-coming-soon-maintenance #niteoCS_subscribe_label{height:150px}.cmp-coming-soon-maintenance #subscribe-3rdparty fieldset,.cmp-coming-soon-maintenance .constellation{margin-top:1em}.cmp-coming-soon-maintenance .cmp-hint{font-size:.9em}.cmp-coming-soon-maintenance .source-repeater-fields input,.cmp-coming-soon-maintenance .target-repeater-fields input{width:95%;margin-bottom:1em}.cmp-coming-soon-maintenance .source-repeater-fields i,.cmp-coming-soon-maintenance .target-repeater-fields i{line-height:2.5;float:right}.logo-height-wrap{display:flex;line-height:2}.logo-height-wrap input[type=range]{margin-right:1em}.cmp-coming-soon-maintenance .table-wrapper.cmp-bundle-banner{margin:0;border:none;margin-bottom:.7em;display:block;background:0 0}.cmp-coming-soon-maintenance .table-wrapper.cmp-bundle-banner img{max-width:100%;height:auto}.cmp-coming-soon-maintenance .source-repeater-fields a{display:none}.cmp-coming-soon-maintenance .cmp-export-import textarea{display:none}.cmp-coming-soon-maintenance .import-json-label{position:relative}.cmp-coming-soon-maintenance .import-json-label.import-fail{background:red}.cmp-coming-soon-maintenance .import-json-label:before{display:block;content:attr(data-default)}.cmp-coming-soon-maintenance #cmp-import-json{display:none}.cmp-coming-soon-maintenance .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:35px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #dedede;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #dedede;border-radius:4px}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#2980b9;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-o-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#2980b9;color:#fff;border:none;padding:3px 5px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#fff}.cmp-coming-soon-maintenance .select2-container--default .select2-search--inline .select2-search__field{line-height:2.5em;margin-top:0}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__rendered li{margin-bottom:0}.cmp-coming-soon-maintenance .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.cmp-coming-soon-maintenance .select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#5b9dd9;box-shadow:0 0 2px rgba(30,140,190,.8)}.cmp-coming-soon-maintenance .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#2980b9}#niteoCS_body_ifr{min-height:280px}@media screen and (max-width:1600px){.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{max-width:960px;min-width:initial}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{max-width:270px;min-width:initial;width:100%}}@media screen and (max-width:1270px){.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{min-width:100%;max-width:100%}}@media screen and (max-width:1024px){.cmp-coming-soon-maintenance .table-wrapper table{width:100%}.cmp-coming-soon-maintenance .table-wrapper th{width:140px}.cmp-coming-soon-maintenance .theme-wrapper,.cmp-coming-soon-maintenance .theme-wrapper.premium{width:calc(50% - 1em - 5px)}.cmp-coming-soon-maintenance .theme-wrapper:nth-of-type(3n){margin-right:1em}}@media screen and (max-width:782px){.cmp-coming-soon-maintenance .theme-wrapper,.cmp-coming-soon-maintenance .theme-wrapper.premium{margin-right:0;width:calc(100% - 5px)}.cmp-coming-soon-maintenance .table-wrapper th{display:block}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:1em}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]:checked:before{margin:-1px 0 0 -4px}.cmp-coming-soon-maintenance .cmp-inputs-wrapper,.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{display:block;max-width:100%;width:100%;margin:0}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:2em;margin-bottom:1em!important}.cmp-coming-soon-maintenance .theme-overlay .theme-info,.cmp-coming-soon-maintenance .theme-overlay .theme-screenshots{width:100%;float:none}.cmp-coming-soon-maintenance input[type=text],.cmp-coming-soon-maintenance textarea{font-size:13px}.cmp-coming-soon-maintenance #font-example-wrapper{min-height:24em}}@media screen and (max-width:560px){.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(2){left:50px}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(3){left:105px}.cmp-coming-soon-maintenance .social-inputs p i{top:22px}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]{top:28px;left:53px}.cmp-coming-soon-maintenance .social-inputs label{padding-left:55px}.cmp-coming-soon-maintenance .social-inputs input[type=text]{margin-left:55px;width:calc(100% - 55px)}}
|
1 |
+
.cmp-coming-soon-maintenance{overflow-x:hidden}.no-margin{margin:0}.cmp-coming-soon-maintenance .cmp-settings-wrapper{position:relative;margin-top:6px}.cmp-coming-soon-maintenance .wrapper-disabled{opacity:.4}.cmp-coming-soon-maintenance .comingsoon-error,.cmp-coming-soon-maintenance .comingsoon-success{padding:1em;width:calc(100% - 4em);border-left:4px solid red;background-color:#fff}.cmp-coming-soon-maintenance .comingsoon-success{border-left:4px solid #00d221}.cmp-coming-soon-maintenance .padding-bottom{padding-bottom:10px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single,.cmp-coming-soon-maintenance input[type=text]{border:1px solid #d4d4d4;border-radius:4px;line-height:2.5em;height:2.5em;box-shadow:inset 0 1px 2px rgba(0,0,0,.03)}.cmp-coming-soon-maintenance .select2-container .select2-selection--single{height:35px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:35px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--single .select2-selection__arrow{top:4px}.cmp-coming-soon-maintenance .select2-container:not(.select2-container--open){width:100%!important}.cmp-coming-soon-maintenance input[type=range]{display:block;-webkit-appearance:none;background-color:#dedede;width:100%;height:12px;border-radius:5px;margin:10px auto 0;outline:0}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background-color:#1d3557;width:17px;height:17px;border-radius:50%;border:1px solid #d4d4d4;cursor:pointer;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb:hover{background-color:#1d3557;border:2px solid #1d3557}.cmp-coming-soon-maintenance input[type=range]::-webkit-slider-thumb:active{-webkit-transform:scale(1.2);transform:scale(1.2)}.cmp-coming-soon-maintenance input[type=text],.cmp-coming-soon-maintenance textarea{width:100%}.cmp-coming-soon-maintenance .table-wrapper.cmp-bypass,.cmp-coming-soon-maintenance .table-wrapper.cmp-export-import,.cmp-coming-soon-maintenance .table-wrapper.cmp-misc,.cmp-coming-soon-maintenance .table-wrapper.cmp-notifications,.cmp-coming-soon-maintenance .table-wrapper.content,.cmp-coming-soon-maintenance .table-wrapper.install,.cmp-coming-soon-maintenance .table-wrapper.seo,.cmp-coming-soon-maintenance .table-wrapper.theme-setup{display:none}.cmp-coming-soon-maintenance .wp-upload-form.cmp{padding:4em;display:block}.cmp-coming-soon-maintenance .cmp-status{width:95%;padding:10px;font-weight:600;font-size:1.2em;cursor:pointer;opacity:.8}.cmp-coming-soon-maintenance .cmp-status.active{opacity:1}.cmp-coming-soon-maintenance .cmp-status span{font-weight:400}.cmp-coming-soon-maintenance .redirect{margin-bottom:0}.cmp-coming-soon-maintenance .help-settings,.cmp-coming-soon-maintenance .subscribers-settings,.cmp-coming-soon-maintenance .table-wrapper,.cmp-coming-soon-maintenance .translate-settings{background-color:#fff;border:1px solid #dedede;margin:0 0 1em}.cmp-coming-soon-maintenance div.custom_css{padding-bottom:2em;padding-right:3em;background:#fff;border:1px solid #dedede;max-width:100%}.cmp-coming-soon-maintenance .CodeMirror-wrap{border-right:1px solid #dedede}.cmp-coming-soon-maintenance .custom_css .cmp-submit{padding-left:1em;border-top:1px solid #dedede;padding-top:2em}.cmp-coming-soon-maintenance .cmp-inputs-wrapper .translation input,.cmp-coming-soon-maintenance .cmp-inputs-wrapper .translation textarea{width:100%}.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{display:inline-block;max-width:1140px;width:100%}.cmp-coming-soon-maintenance .table-wrapper.closed table,.cmp-coming-soon-maintenance .translate-settings tfoot{display:none}.cmp-coming-soon-maintenance .help-settings,.cmp-coming-soon-maintenance .subscribers-settings,.cmp-coming-soon-maintenance .translate-settings{max-width:calc(920px - 2em);min-width:calc(920px - 2em);padding:1em}.cmp-coming-soon-maintenance .custom_css h3,.cmp-coming-soon-maintenance .table-wrapper h3{position:relative;padding:.5em 0 .5em 1em;margin:0;border-bottom:1px solid #dedede;text-align:left}.cmp-coming-soon-maintenance .table-wrapper h3:not(.no-icon):not(.notice-title):not(#heading-example)::after{font-family:fontAwesome;content:"\f147";position:absolute;right:10px;font-weight:400;opacity:.6;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cmp-coming-soon-maintenance #niteoCS-text-logo,.cmp-coming-soon-maintenance .theme-title,.cmp-coming-soon-maintenance th label{font-weight:600}.cmp-coming-soon-maintenance .table-wrapper.closed h3:not(.no-icon):not(.notice-title)::after{content:"\f196"}.cmp-coming-soon-maintenance .table-wrapper h4{margin:0}.cmp-coming-soon-maintenance .table-wrapper table{padding:1em;height:auto;width:95%}.cmp-coming-soon-maintenance .table-wrapper .theme-selector{width:100%}.cmp-coming-soon-maintenance .table-wrapper select{margin-bottom:10px;width:100%}.cmp-coming-soon-maintenance .table-wrapper td{width:100%;max-width:960px;margin-bottom:1em;display:block}.cmp-coming-soon-maintenance #unsplash_img,.cmp-coming-soon-maintenance .table-wrapper td.theme-selector{max-width:100%}.cmp-coming-soon-maintenance .table-wrapper th{vertical-align:top;width:180px;text-align:left;font-weight:600}.cmp-coming-soon-maintenance .table-wrapper th p:first-of-type{margin-top:0}.cmp-coming-soon-maintenance #delete-banner,.cmp-coming-soon-maintenance #delete-favicon,.cmp-coming-soon-maintenance #delete-logo,.cmp-coming-soon-maintenance #delete-seo_img,.cmp-coming-soon-maintenance #delete-video-thumb{display:none}.cmp-coming-soon-maintenance .social-inputs li.social-labels{display:block}.cmp-coming-soon-maintenance .social-media{margin-top:0;margin-bottom:3em}.cmp-coming-soon-maintenance .social-inputs{position:relative}.cmp-coming-soon-maintenance .social-inputs .label{display:none;font-weight:600;position:absolute;top:-20px;left:-8px}.cmp-coming-soon-maintenance #niteoCS-text-logo{border:none;box-shadow:none;font-size:3em}.cmp-coming-soon-maintenance .social-description{margin-top:0}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(2){left:62px}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(3){left:148px}.cmp-coming-soon-maintenance .social-media li{display:inline-block;padding-right:1.2em;padding-bottom:1em}.cmp-coming-soon-maintenance .social-media i{font-size:2.45em;cursor:pointer}.cmp-coming-soon-maintenance .social-media i.active{color:#d54e21}.cmp-coming-soon-maintenance .social-inputs li{display:none;width:100%}.cmp-coming-soon-maintenance .social-inputs li.active{display:inline-block}.cmp-coming-soon-maintenance #custom_content_font,.cmp-coming-soon-maintenance #custom_headings_font,.cmp-coming-soon-maintenance .unsplash-feed{display:none}.cmp-coming-soon-maintenance .social-inputs p{position:relative;padding-left:50px;height:50px}.cmp-coming-soon-maintenance .social-inputs p i{position:absolute;left:0;top:20px;font-size:30px;width:30px;cursor:move}.cmp-coming-soon-maintenance .theme-details,.cmp-coming-soon-maintenance .toggle{cursor:pointer}.cmp-coming-soon-maintenance .social-inputs label{padding-left:100px}.cmp-coming-soon-maintenance .social-inputs input[type=text]{margin-left:100px;width:calc(100% - 100px)}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]{position:absolute;width:26px;height:26px;top:23px;left:65px}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]:checked:before{margin:3px 0 0 1px}.cmp-coming-soon-maintenance #unsplash_img{display:none}.cmp-coming-soon-maintenance #unsplash-media{position:relative}.cmp-coming-soon-maintenance .color-preview,.cmp-coming-soon-maintenance .gradient-preview,.cmp-coming-soon-maintenance .pattern-wrapper{position:relative;background-repeat:repeat;height:200px;border:1px solid #ededed;margin-top:1em}.chameleon.color-preview{-webkit-animation:chameleon 19s infinite;animation:chameleon 19s infinite}@-webkit-keyframes chameleon{0%{background:#2ecc71}25%{background:#f1c40f}50%{background:#e74c3c}75%{background:#3498db}100%{background:#2ecc71}}@keyframes chameleon{0%{background:#2ecc71}25%{background:#f1c40f}50%{background:#e74c3c}75%{background:#3498db}100%{background:#2ecc71}}.cmp-coming-soon-maintenance .theme-overlay .screenshot,.cmp-coming-soon-maintenance .thumbnail-holder{position:relative;background-size:cover;background-repeat:no-repeat;background-position:center}.cmp-coming-soon-maintenance .video-local-wrapper,.cmp-coming-soon-maintenance .video-yt-wrapper{position:relative;width:100%;margin-top:1em}.cmp-coming-soon-maintenance #add-pattern{margin-bottom:1em}.cmp-coming-soon-maintenance .info{font-size:12px}.cmp-coming-soon-maintenance .nav-tab i{padding-right:3px}.cmp-coming-soon-maintenance .nav-tab-wrapper{border:none!important}.cmp-coming-soon-maintenance .nav-tab{font-weight:400;background:#fff;padding:10px 20px;border:1px solid #e2e2e2}.cmp-coming-soon-maintenance .nav-tab:first-of-type{margin-left:0}.cmp-coming-soon-maintenance .nav-tab-active,.cmp-coming-soon-maintenance .nav-tab-active:focus,.cmp-coming-soon-maintenance .nav-tab-active:focus:active,.cmp-coming-soon-maintenance .nav-tab-active:hover{background:#1d3557;border:1px solid #1d3557;outline:0;box-shadow:none;color:#fff;font-weight:600}.cmp-coming-soon-maintenance .logo-wrapper:empty{display:none}.cmp-coming-soon-maintenance .banner-wrapper,.cmp-coming-soon-maintenance .favicon-wrapper,.cmp-coming-soon-maintenance .logo-wrapper,.cmp-coming-soon-maintenance .seo_img-wrapper{margin:1em 0}.cmp-coming-soon-maintenance .favicon-wrapper img,.cmp-coming-soon-maintenance .logo-wrapper img{background-color:#efefef;padding:1em}.cmp-coming-soon-maintenance .favicon-wrapper img{max-width:32px}.cmp-coming-soon-maintenance .background-media img,.cmp-coming-soon-maintenance .logo-wrapper img,.cmp-coming-soon-maintenance .seo_img-wrapper img{max-width:100%;width:100%;vertical-align:top}.cmp-coming-soon-maintenance .background-thumb-wrapper,.cmp-coming-soon-maintenance .video-thumb-wrapper{position:relative;margin:1em 0;overflow:hidden}.cmp-coming-soon-maintenance .thumbnail-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.cmp-coming-soon-maintenance .custom-gallery:not(.gallery-1):not(.gallery-2){display:-ms-grid;display:grid;height:auto;-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;-ms-grid-rows:1fr auto;grid-template-rows:1fr auto;grid-template-areas:"Big Big Big" "small-3 small-2 small-1";grid-gap:10px}.cmp-coming-soon-maintenance .custom-gallery.gallery-3{-ms-grid-columns:1fr 1fr!important;grid-template-columns:1fr 1fr!important;grid-template-areas:"Big Big" "small-2 small-1"!important}.cmp-coming-soon-maintenance .gallery-2 .big-thumb{margin-bottom:1em}.cmp-coming-soon-maintenance .big-thumb{grid-area:Big/Big;overflow:hidden;position:relative}.cmp-coming-soon-maintenance .logo-wrapper img{max-height:150px;width:auto}.cmp-coming-soon-maintenance #font-example-wrapper{padding:1em;border:1px solid #dedede;overflow:hidden;min-height:20em;overflow:auto}.cmp-coming-soon-maintenance #heading-example{border-bottom:none;line-height:1.5;padding:0}.cmp-coming-soon-maintenance .font-selector td:first-of-type{padding-bottom:2em;display:flex;flex-wrap:wrap}.cmp-coming-soon-maintenance .font-selector fieldset{box-sizing:border-box;padding:.5em .2em;flex:1;min-width:100%}.cmp-coming-soon-maintenance .font-selector .cmp-width-33{min-width:30%}.cmp-coming-soon-maintenance .font-selector .cmp-width-50{min-width:50%}.cmp-coming-soon-maintenance .theme-wrapper{display:inline-block;margin:10px 10px 0 0;width:calc(33.33% - 12px);text-align:center;border:1px solid #efefef;border-radius:6px;position:relative}.cmp-coming-soon-maintenance .theme-wrapper:nth-of-type(3n){margin-right:0}.cmp-coming-soon-maintenance .theme-wrapper.active{background-color:#ddd}.cmp-coming-soon-maintenance .thumbnail-holder{width:100%;border-top-left-radius:5px;border-top-right-radius:5px}.cmp-coming-soon-maintenance .thumbnail-holder::before{content:'';display:block;padding-top:56.25%;-o-transition:background-color .1s;transition:background-color .1s;border-top-left-radius:5px;border-top-right-radius:5px}.cmp-coming-soon-maintenance .theme-wrapper:hover .thumbnail-holder::before{background-color:rgba(0,0,0,.95)}.cmp-coming-soon-maintenance .toggle,.cmp-coming-soon-maintenance .toggle-wrapper{display:inline-block}.cmp-coming-soon-maintenance .theme-title{text-transform:uppercase}.cmp-coming-soon-maintenance .theme-version{float:right}.cmp-coming-soon-maintenance .theme-wrapper .hide:not(.selected){opacity:0;-o-transition:opacity .1s,background-color .1s;transition:opacity .1s,background-color .1s}.cmp-coming-soon-maintenance .theme-wrapper:hover .hide{opacity:1;-o-transition:opacity .1s,background-color .1s;transition:opacity .1s,background-color .1s}.cmp-coming-soon-maintenance .theme-inputs{padding:5px;height:2em;line-height:2em;color:#656565}.cmp-coming-soon-maintenance .active .theme-inputs{background:#2d936c;color:#fff}.cmp-coming-soon-maintenance .theme-inputs .italic{font-style:italic}.cmp-coming-soon-maintenance .theme-wrapper .buttons-wrapper{position:absolute;top:calc(50% - 1em);left:0;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.cmp-coming-soon-maintenance .cmp-button,.cmp-coming-soon-maintenance .cmp-preview,.cmp-coming-soon-maintenance .theme-wrapper .button{height:28px;line-height:28px;padding:0 10px;min-width:80px;border-radius:3px;color:#fff!important;-moz-appearance:none;-webkit-appearance:none;-o-transition:background-color .5s;transition:background-color .5s;border:none!important;box-shadow:none;-webkit-box-shadow:none;text-shadow:none;text-transform:uppercase;cursor:pointer}.cmp-coming-soon-maintenance .cmp-button.submit,.cmp-coming-soon-maintenance .theme-actions .activate{background-color:#e63946;color:#fff;border:none;-o-transition:background-color .5s;transition:background-color .5s}.cmp-coming-soon-maintenance .import-export-button{background-color:#0085ba}.cmp-coming-soon-maintenance .theme-wrapper a.button:focus,.cmp-coming-soon-maintenance .theme-wrapper a.button:visited{background:0 0;box-shadow:none}.cmp-coming-soon-maintenance .theme-wrapper a.button.theme-purchase{background-color:#ff3284}.cmp-coming-soon-maintenance .cmp-status-pages .label,.cmp-coming-soon-maintenance .cmp-status-pages label{height:33px;width:140px;display:flex;align-items:center;justify-content:center;flex-direction:inherit;text-align:center;border-bottom:2px solid transparent;border-radius:0;float:left;margin-top:2em;margin-left:3em;margin-bottom:2em}.cmp-coming-soon-maintenance .cmp-status-pages .label.active,.cmp-coming-soon-maintenance .cmp-status-pages label.active{border-color:rgba(29,53,87,.6)}.cmp-coming-soon-maintenance .cmp-status-pages label:first-of-type{margin-left:0}.cmp-coming-soon-maintenance .cmp-status-pages a{color:inherit}.cmp-coming-soon-maintenance .cmp-status-pages input{margin:0;margin-right:.5em}.redirect-inputs{font-size:.8em;font-weight:400}.cmp-coming-soon-maintenance .cmp-button.submit:focus,.cmp-coming-soon-maintenance .cmp-button.submit:hover,.cmp-coming-soon-maintenance .theme-actions .activate:focus,.cmp-coming-soon-maintenance .theme-actions .activate:hover{background-color:#e63946;color:#fff;border:none}.cmp-coming-soon-maintenance .theme-wrapper .button{border:2px solid #fff!important;background:0 0;min-width:190px;line-height:2.5em;height:3em}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]{position:relative;background:0 0;border:none;outline:0;box-shadow:none}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]::before{content:none}.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select input[type=radio]::after{content:'';font-family:fontAwesome;content:"\f096";position:absolute;top:3px;left:0;opacity:1;color:#fff}.cmp-coming-soon-maintenance .theme-wrapper .selected.button.theme-select input[type=radio]::after{content:"\f046";color:#23282d}.cmp-coming-soon-maintenance .theme-wrapper.active .button.theme-select input[type=radio]::after{content:"\f046"}.cmp-coming-soon-maintenance .theme-wrapper .button:hover,.cmp-coming-soon-maintenance .theme-wrapper a.button:hover{background:#fff;color:#23282d!important}.cmp-coming-soon-maintenance .selected.button,.cmp-coming-soon-maintenance .theme-wrapper .button.theme-select:hover input[type=radio]::after{color:#23282d!important}.cmp-coming-soon-maintenance .theme-wrapper .theme-preview,.cmp-coming-soon-maintenance .theme-wrapper .theme-purchase,.cmp-coming-soon-maintenance .theme-wrapper .theme-select{margin-bottom:5px}.cmp-coming-soon-maintenance .theme-wrapper .theme-select.selected{background-color:#fff}.cmp-coming-soon-maintenance .theme-wrapper .theme-details.button{line-height:0}.cmp-coming-soon-maintenance .cmp-preview{background-color:#2485bf!important}.cmp-coming-soon-maintenance .cmp-preview:active,.cmp-coming-soon-maintenance .cmp-preview:hover{background-color:#32b2ff!important}.cmp-coming-soon-maintenance .theme-info .theme-purchase{width:auto;min-width:40%;height:55px;font-size:2em;background-color:#2c3e50;border:none}.cmp-coming-soon-maintenance .theme-info .theme-purchase:focus,.cmp-coming-soon-maintenance .theme-info .theme-purchase:hover{background-color:#34495e}.cmp-coming-soon-maintenance .button i{margin-right:5px}.cmp-coming-soon-maintenance .theme-purchase a,.cmp-coming-soon-maintenance .theme-purchase a:hover,.cmp-coming-soon-maintenance .theme-purchase a:visited{color:#fff;text-decoration:none}.cmp-coming-soon-maintenance p.cmp-submit{margin:0;padding-top:0;font-weight:400;text-align:left}.cmp-coming-soon-maintenance .theme-overlay .screenshot{-o-transition:background-image .2s ease-in-out;transition:background-image .2s ease-in-out}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav{position:absolute;right:0;top:0;color:#fff;cursor:pointer}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav div{width:40px;height:40px;background-color:#000;line-height:40px;opacity:.7;-o-transition:opacity .5s;transition:opacity .5s}.cmp-coming-soon-maintenance .fifty-layout input:checked+img,.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav div:hover{opacity:1}.cmp-coming-soon-maintenance .toggle,.cmp-coming-soon-maintenance .toggle:after,.cmp-coming-soon-maintenance .toggle:before{-webkit-transition:all .2s ease-in-out}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav .left{float:left}.cmp-coming-soon-maintenance .theme-overlay .screenshots-nav .right{float:right}.cmp-coming-soon-maintenance .theme-description ul{list-style:none;padding-left:2em}.cmp-coming-soon-maintenance .theme-description h4,.cmp-coming-soon-maintenance .theme-description li{font-size:13px}.cmp-coming-soon-maintenance .theme-description .supported i{color:green}.cmp-coming-soon-maintenance .theme-description .not-supported i{color:red}.cmp-coming-soon-maintenance .wp-list-table .column-id{width:5%}.cmp-coming-soon-maintenance .cmp-status{margin-bottom:1em}.cmp-coming-soon-maintenance .toggle{position:relative;width:340px;height:50px;font-weight:600;background:0 0;border:2px solid rgba(29,53,87,.6);-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;border-radius:15px}.cmp-coming-soon-maintenance .toggle:after,.cmp-coming-soon-maintenance .toggle:before{position:absolute;line-height:50px;font-size:1em;z-index:2;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.cmp-coming-soon-maintenance input[type=checkbox].toggle-checkbox{display:none}.cmp-coming-soon-maintenance .toggle_handler{display:inline-block;position:relative;z-index:1;background:#e63946;width:170px;height:44px;top:3px;left:5px;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);border-radius:10px}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle .toggle_handler{-webkit-transform:translateX(160px);-ms-transform:translateX(160px);transform:translateX(160px);background:#2d936c}.cmp-coming-soon-maintenance .toggle:before{content:"Disabled";left:63px;color:#fff}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle:before,.cmp-coming-soon-maintenance .toggle:after{color:#444}.cmp-coming-soon-maintenance .toggle:after{content:"Enabled";right:68px}.cmp-coming-soon-maintenance .toggle-checkbox:checked+.toggle:after{color:#fff}.cmp-coming-soon-maintenance .fifty-layout label{display:block;position:relative;padding-bottom:1em;margin-top:1em}.cmp-coming-soon-maintenance .fifty-layout input{visibility:hidden;position:absolute;margin:0}.cmp-coming-soon-maintenance .fifty-layout img{display:block;opacity:.3;outline:solid 1px;padding:2px;margin-left:5px;margin-top:5px}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{display:inline-block;width:calc(100% - 6em - 1088px);max-width:350px;min-width:300px;margin-left:1em;padding-top:0;vertical-align:top;text-align:center}.cmp-advanced .cmp-sidebar-wrapper,.content-settings .cmp-sidebar-wrapper{margin-top:61px}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:2em;border:1px solid #dedede;background:#fff}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget.selected-theme{padding:0}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget.selected-theme img{vertical-align:top}.cmp-coming-soon-maintenance .widget.donate img{padding:0}.cmp-coming-soon-maintenance .widget.donate img.niteo-logo{max-width:120px}.cmp-coming-soon-maintenance .cmp-rate-us .button,.cmp-coming-soon-maintenance .cmp-rate-us a{display:block;text-align:center}.cmp-coming-soon-maintenance .cmp-rate-us a{padding:1em 0}.cmp-coming-soon-maintenance .cmp-rate-us .button{max-width:150px;margin:0 auto 1em}.cmp-coming-soon-maintenance .cmp-rate-us form{text-align:center}.cmp-coming-soon-maintenance .subscribers .column-id{width:5%}.cmp-coming-soon-maintenance #niteoCS_subscribe_label{height:150px}.cmp-coming-soon-maintenance #subscribe-3rdparty fieldset,.cmp-coming-soon-maintenance .constellation{margin-top:1em}.cmp-coming-soon-maintenance .cmp-hint{font-size:.9em}.cmp-coming-soon-maintenance .source-repeater-fields input,.cmp-coming-soon-maintenance .target-repeater-fields input{width:95%;margin-bottom:1em}.cmp-coming-soon-maintenance .source-repeater-fields i,.cmp-coming-soon-maintenance .target-repeater-fields i{line-height:2.5;float:right}.logo-height-wrap{display:flex;line-height:2}.logo-height-wrap input[type=range]{margin-right:1em}.cmp-coming-soon-maintenance .table-wrapper.cmp-bundle-banner{margin:0;border:none;margin-bottom:.7em;display:block;background:0 0}.cmp-coming-soon-maintenance .table-wrapper.cmp-bundle-banner img{max-width:100%;height:auto}.cmp-coming-soon-maintenance .source-repeater-fields a{display:none}.cmp-coming-soon-maintenance .cmp-export-import textarea{display:none}.cmp-coming-soon-maintenance .import-json-label{position:relative}.cmp-coming-soon-maintenance .import-json-label.import-fail{background:red}.cmp-coming-soon-maintenance .import-json-label:before{display:block;content:attr(data-default)}.cmp-coming-soon-maintenance #cmp-import-json{display:none}.cmp-coming-soon-maintenance .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:35px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #dedede;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #dedede;border-radius:4px}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#2980b9;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-o-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#2980b9;color:#fff;border:none;padding:3px 5px}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#fff}.cmp-coming-soon-maintenance .select2-container--default .select2-search--inline .select2-search__field{line-height:2.5em;margin-top:0}.cmp-coming-soon-maintenance .select2-container--default .select2-selection--multiple .select2-selection__rendered li{margin-bottom:0}.cmp-coming-soon-maintenance .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.cmp-coming-soon-maintenance .select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#5b9dd9;box-shadow:0 0 2px rgba(30,140,190,.8)}.cmp-coming-soon-maintenance .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#2980b9}#niteoCS_body_ifr{min-height:280px}@media screen and (max-width:1600px){.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{max-width:960px;min-width:initial}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{max-width:270px;min-width:initial;width:100%}}@media screen and (max-width:1270px){.cmp-coming-soon-maintenance #csoptions,.cmp-coming-soon-maintenance .cmp-inputs-wrapper{min-width:100%;max-width:100%}}@media screen and (max-width:1024px){.cmp-coming-soon-maintenance .table-wrapper table{width:100%}.cmp-coming-soon-maintenance .table-wrapper th{width:140px}.cmp-coming-soon-maintenance .theme-wrapper,.cmp-coming-soon-maintenance .theme-wrapper.premium{width:calc(50% - 1em - 5px)}.cmp-coming-soon-maintenance .theme-wrapper:nth-of-type(3n){margin-right:1em}}@media screen and (max-width:782px){.cmp-coming-soon-maintenance .theme-wrapper,.cmp-coming-soon-maintenance .theme-wrapper.premium{margin-right:0;width:calc(100% - 5px)}.cmp-coming-soon-maintenance .table-wrapper th{display:block}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:1em}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]:checked:before{margin:-1px 0 0 -4px}.cmp-coming-soon-maintenance .cmp-inputs-wrapper,.cmp-coming-soon-maintenance .cmp-sidebar-wrapper{display:block;max-width:100%;width:100%;margin:0}.cmp-coming-soon-maintenance .cmp-sidebar-wrapper .widget{padding:2em;margin-bottom:1em!important}.cmp-coming-soon-maintenance .theme-overlay .theme-info,.cmp-coming-soon-maintenance .theme-overlay .theme-screenshots{width:100%;float:none}.cmp-coming-soon-maintenance input[type=text],.cmp-coming-soon-maintenance textarea{font-size:13px}.cmp-coming-soon-maintenance #font-example-wrapper{min-height:24em}}@media screen and (max-width:560px){.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(2){left:50px}.cmp-coming-soon-maintenance .social-inputs .label:nth-of-type(3){left:105px}.cmp-coming-soon-maintenance .social-inputs p i{top:22px}.cmp-coming-soon-maintenance .social-inputs input[type=checkbox]{top:28px;left:53px}.cmp-coming-soon-maintenance .social-inputs label{padding-left:55px}.cmp-coming-soon-maintenance .social-inputs input[type=text]{margin-left:55px;width:calc(100% - 55px)}}
|
inc/class-cmp-render_html.php
CHANGED
@@ -322,6 +322,28 @@ class CMP_Coming_Soon_and_Maintenance_Render_HTML extends CMP_Coming_Soon_and_Ma
|
|
322 |
return;
|
323 |
}
|
324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
/**
|
326 |
* Helper function to return subscribe type
|
327 |
*
|
322 |
return;
|
323 |
}
|
324 |
|
325 |
+
public function cmp_custom_footer_scripts() {
|
326 |
+
$footer_scripts = json_decode( get_option('niteoCS_footer_scripts', '[]'), true );
|
327 |
+
|
328 |
+
if ( !empty( $footer_scripts ) ) {
|
329 |
+
foreach ( $footer_scripts as $f_script ) {
|
330 |
+
if ( $f_script != '' ) {
|
331 |
+
$file = pathinfo( $f_script );
|
332 |
+
switch ( $file['extension'] ) {
|
333 |
+
case 'js':
|
334 |
+
echo '<script src="' . esc_url( $f_script ). '"></script>' . PHP_EOL;
|
335 |
+
break;
|
336 |
+
case 'css':
|
337 |
+
echo '<link href="' . esc_url( $f_script ). '" rel="stylesheet">' . PHP_EOL;
|
338 |
+
break;
|
339 |
+
default:
|
340 |
+
break;
|
341 |
+
}
|
342 |
+
}
|
343 |
+
}
|
344 |
+
}
|
345 |
+
}
|
346 |
+
|
347 |
/**
|
348 |
* Helper function to return subscribe type
|
349 |
*
|
inc/render/javascripts.php
CHANGED
@@ -274,7 +274,6 @@ if ( (in_array( $themeslug, $this->cmp_cf7_themes() ) && get_option('niteoCS_con
|
|
274 |
if ( in_array( $themeslug, $this->cmp_premium_themes_installed() ) ) {
|
275 |
|
276 |
$effect = get_option('niteoCS_special_effect', 'disabled');
|
277 |
-
|
278 |
// change effect for preview
|
279 |
if ( isset($_GET['effect']) && is_numeric($_GET['effect'])) {
|
280 |
$effect = $_GET['effect'];
|
@@ -381,25 +380,7 @@ if ( strpos( $content, 'iframe' ) !== false ) { ?>
|
|
381 |
<?php
|
382 |
}
|
383 |
|
384 |
-
$
|
385 |
-
|
386 |
-
if ( !empty( $footer_scripts ) ) {
|
387 |
-
foreach ( $footer_scripts as $f_script ) {
|
388 |
-
if ( $f_script != '' ) {
|
389 |
-
$file = pathinfo( $f_script );
|
390 |
-
switch ( $file['extension'] ) {
|
391 |
-
case 'js':
|
392 |
-
echo '<script src="' . esc_url( $f_script ). '"></script>' . PHP_EOL;
|
393 |
-
break;
|
394 |
-
case 'css':
|
395 |
-
echo '<link href="' . esc_url( $f_script ). '" rel="stylesheet">' . PHP_EOL;
|
396 |
-
break;
|
397 |
-
default:
|
398 |
-
break;
|
399 |
-
}
|
400 |
-
}
|
401 |
-
}
|
402 |
-
}
|
403 |
|
404 |
do_action('cmp-after-footer-scripts');
|
405 |
|
274 |
if ( in_array( $themeslug, $this->cmp_premium_themes_installed() ) ) {
|
275 |
|
276 |
$effect = get_option('niteoCS_special_effect', 'disabled');
|
|
|
277 |
// change effect for preview
|
278 |
if ( isset($_GET['effect']) && is_numeric($_GET['effect'])) {
|
279 |
$effect = $_GET['effect'];
|
380 |
<?php
|
381 |
}
|
382 |
|
383 |
+
$this->cmp_custom_footer_scripts();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
|
385 |
do_action('cmp-after-footer-scripts');
|
386 |
|
inc/settings/settings-content.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
+
|
4 |
+
?>
|
5 |
+
|
6 |
+
<div class="table-wrapper content">
|
7 |
+
<h3><?php _e('Main Content', 'cmp-coming-soon-maintenance');?></h3>
|
8 |
+
<table class="content">
|
9 |
+
<tbody>
|
10 |
+
<tr class="body-title">
|
11 |
+
<th><?php _e('Heading', 'cmp-coming-soon-maintenance');?></th>
|
12 |
+
<td>
|
13 |
+
<fieldset>
|
14 |
+
<input type="text" name="niteoCS_body_title" id="niteoCS_body_title" value="<?php echo esc_attr( $niteoCS_body_title ); ?>" class="regular-text code" placeholder="<?php _e('Leave empty to disable', 'cmp-coming-soon-maintenance');?>">
|
15 |
+
</fieldset>
|
16 |
+
</td>
|
17 |
+
</tr>
|
18 |
+
|
19 |
+
<tr>
|
20 |
+
<th><?php _e('Message', 'cmp-coming-soon-maintenance');?></th>
|
21 |
+
<td>
|
22 |
+
<?php wp_editor( $this->niteo_sanitize_html( $niteoCS_body ), 'niteoCS_body', $settings = array('textarea_name'=>'niteoCS_body', 'editor_height'=>'300') ); ?>
|
23 |
+
<span class="cmp-hint">* <?php _e('WordPress embeds are fully supported. You can also add any custom HTML. No 3rd party shortcodes are currently supported.', 'cmp-coming-soon-maintenance');?></span>
|
24 |
+
</td>
|
25 |
+
</tr>
|
26 |
+
|
27 |
+
<?php echo $this->render_settings->submit(); ?>
|
28 |
+
|
29 |
+
</tbody>
|
30 |
+
</table>
|
31 |
+
|
32 |
+
</div>
|
inc/settings/settings-counter.php
CHANGED
@@ -65,7 +65,7 @@ $niteoCS_counter_heading = get_option('niteoCS_counter_heading', 'STAY TUNED, W
|
|
65 |
</th>
|
66 |
|
67 |
<td id="counter-disabled" class="counter-switch x0">
|
68 |
-
<p><?php _e('Countdown
|
69 |
</td>
|
70 |
|
71 |
<td id="counter-enabled" class="counter-switch x1">
|
@@ -79,7 +79,7 @@ $niteoCS_counter_heading = get_option('niteoCS_counter_heading', 'STAY TUNED, W
|
|
79 |
</fieldset>
|
80 |
<?php endif;?>
|
81 |
|
82 |
-
<p><?php _e('Click on date input
|
83 |
<fieldset>
|
84 |
|
85 |
<legend class="screen-reader-text">
|
@@ -92,9 +92,9 @@ $niteoCS_counter_heading = get_option('niteoCS_counter_heading', 'STAY TUNED, W
|
|
92 |
|
93 |
<select name="niteoCS_countdown_action" id="niteoCS_countdown_action" class="counter-action">
|
94 |
|
95 |
-
<option value="no-action" <?php
|
96 |
-
<option value="disable-cmp" <?php
|
97 |
-
<option value="redirect" <?php
|
98 |
|
99 |
</select>
|
100 |
|
65 |
</th>
|
66 |
|
67 |
<td id="counter-disabled" class="counter-switch x0">
|
68 |
+
<p><?php _e('Countdown timer is disabled.', 'cmp-coming-soon-maintenance');?></p>
|
69 |
</td>
|
70 |
|
71 |
<td id="counter-enabled" class="counter-switch x1">
|
79 |
</fieldset>
|
80 |
<?php endif;?>
|
81 |
|
82 |
+
<p><?php _e('Click on a date input to set timer.', 'cmp-coming-soon-maintenance');?></p>
|
83 |
<fieldset>
|
84 |
|
85 |
<legend class="screen-reader-text">
|
92 |
|
93 |
<select name="niteoCS_countdown_action" id="niteoCS_countdown_action" class="counter-action">
|
94 |
|
95 |
+
<option value="no-action" <?php selected($niteoCS_countdown_action, 'no-action'); ?>><?php _e('No Action', 'cmp-coming-soon-maintenance');?></option>
|
96 |
+
<option value="disable-cmp" <?php selected($niteoCS_countdown_action, 'disable-cmp'); ?>><?php _e('Disable Coming Soon / Maintenance page.', 'cmp-coming-soon-maintenance');?></option>
|
97 |
+
<option value="redirect" <?php selected($niteoCS_countdown_action, 'redirect'); ?>><?php _e('URL Redirect', 'cmp-coming-soon-maintenance');?></option>
|
98 |
|
99 |
</select>
|
100 |
|
inc/settings/settings-css.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
+
|
4 |
+
?>
|
5 |
+
|
6 |
+
<div class="table-wrapper-css custom_css">
|
7 |
+
<h3><?php _e('Enter Custom CSS', 'cmp-coming-soon-maintenance');?></h3>
|
8 |
+
|
9 |
+
<textarea name="niteoCS_custom_css" rows="20" id="niteoCS_custom_css" class="code"><?php echo esc_attr( $niteoCS_custom_css ); ?></textarea>
|
10 |
+
|
11 |
+
<?php echo $this->render_settings->submit(); ?>
|
12 |
+
|
13 |
+
</div>
|
inc/settings/settings-general.php
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
+
?>
|
4 |
+
|
5 |
+
<div class="table-wrapper general skip-preview-validation">
|
6 |
+
<h3><?php _e('General Settings', 'cmp-coming-soon-maintenance');?></h3>
|
7 |
+
<table class="general">
|
8 |
+
<tbody>
|
9 |
+
<tr>
|
10 |
+
<th><?php _e('CMP Status', 'cmp-coming-soon-maintenance');?></th>
|
11 |
+
<td>
|
12 |
+
<fieldset>
|
13 |
+
<div class="toggle-wrapper">
|
14 |
+
<input type="checkbox" name="cmp_status" id="cmp-status" class="toggle-checkbox" <?php checked( '1', $this->cmp_active() ); ?>>
|
15 |
+
<label for="cmp-status" class="toggle"><span class="toggle_handler"></span></label>
|
16 |
+
</div>
|
17 |
+
</fieldset>
|
18 |
+
|
19 |
+
<fieldset class="cmp-status-pages" style="display: <?php echo ( $this->cmp_active() == '1' ) ? 'block' : 'none';?>">
|
20 |
+
<label for="cmp-status-pages-0"<?php echo ($page_filter == '0') ? ' class="active"' : '';?>>
|
21 |
+
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-0" value="0" <?php checked( '0', $page_filter ); ?>>
|
22 |
+
<?php _e('Whole Website', 'cmp-coming-soon-maintenance');?>
|
23 |
+
</label>
|
24 |
+
|
25 |
+
<label for="cmp-status-pages-1"<?php echo ($page_filter == '1') ? ' class="active"' : '';?>>
|
26 |
+
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-1" value="1" <?php checked( '1', $page_filter ); ?>>
|
27 |
+
<?php _e('Homepage only', 'cmp-coming-soon-maintenance');?>
|
28 |
+
</label>
|
29 |
+
|
30 |
+
<a href="<?php echo admin_url(); ?>admin.php?page=cmp-advanced"><div class="label<?php echo ($page_filter == '2') ? ' active' : '';?>">
|
31 |
+
<input type="radio" name="cmp-status-pages" id="cmp-status-pages-2" value="2" <?php checked( '2', $page_filter ); ?>>
|
32 |
+
<?php _e('Whitelist/Blacklist', 'cmp-coming-soon-maintenance');?>
|
33 |
+
</div></a>
|
34 |
+
</fieldset>
|
35 |
+
</td>
|
36 |
+
</tr>
|
37 |
+
|
38 |
+
<tr>
|
39 |
+
<th><?php _e('CMP Mode', 'cmp-coming-soon-maintenance');?></th>
|
40 |
+
<td>
|
41 |
+
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 2 ? ' active' : '';?>">
|
42 |
+
<input type="radio" name="cmp-activate" value="2" <?php checked( '2', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Coming Soon & Landing Page', 'cmp-coming-soon-maintenance');?><br>
|
43 |
+
<span class="info"><?php _e('Returns standard 200 HTTP OK response code to indexing robots. Set this option if you want to use our plugin as "Coming Soon" page.','cmp-coming-soon-maintenance')?></span>
|
44 |
+
</fieldset>
|
45 |
+
|
46 |
+
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 1 ? ' active' : '';?>">
|
47 |
+
<input type="radio" name="cmp-activate" value="1" <?php checked( '1', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Maintenance Mode', 'cmp-coming-soon-maintenance');?><br>
|
48 |
+
<span class="info"><?php _e('Returns 503 HTTP Service unavailable code to indexing robots. Set this option if your site is down due to maintanance and you want to display Maintanance page.','cmp-coming-soon-maintenance')?></span>
|
49 |
+
</fieldset>
|
50 |
+
|
51 |
+
<fieldset class="cmp-status switch<?php echo $this->cmp_mode() == 3 ? ' active' : '';?>">
|
52 |
+
<input type="radio" name="cmp-activate" value="3" <?php checked( '3', $this->cmp_mode() ); ?> <?php disabled( '0', $this->cmp_active() ); ?>> <?php _e('Redirect Mode', 'cmp-coming-soon-maintenance');?><br>
|
53 |
+
<span class="info redirect"><?php _e('Choose Redirect Mode if you want to redirect your website to another URL.','cmp-coming-soon-maintenance')?></span>
|
54 |
+
<div class="redirect-inputs" <?php echo $this->cmp_mode() == 3 ? 'style="display: block"' : 'style="display: none"';?>>
|
55 |
+
<input type="text" id="niteoCS_URL_redirect" name="niteoCS_URL_redirect" value="<?php echo esc_url( $niteoCS_URL_redirect ); ?>" class="regular-text code"><br>
|
56 |
+
<label for="niteoCS_redirect_time"><?php _e('Delay Time in Seconds', 'cmp-coming-soon-maintenance');?></label>
|
57 |
+
<input type="text" id="niteoCS_redirect_time" name="niteoCS_redirect_time" value="<?php echo esc_attr( $niteoCS_redirect_time ); ?>" class="regular-text code"><br>
|
58 |
+
</div>
|
59 |
+
</fieldset>
|
60 |
+
</td>
|
61 |
+
</tr>
|
62 |
+
|
63 |
+
<?php echo $this->render_settings->submit(); ?>
|
64 |
+
|
65 |
+
</tbody>
|
66 |
+
</table>
|
67 |
+
|
68 |
+
</div>
|
inc/settings/settings-logo.php
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
<?php
|
2 |
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
-
|
4 |
?>
|
5 |
<div class="table-wrapper content">
|
6 |
<h3><?php _e('Logo Setup', 'cmp-coming-soon-maintenance');?></h3>
|
@@ -46,12 +45,10 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
|
46 |
<input type="hidden" class="widefat" id="niteoCS-logo-id" name="niteoCS_logo_id" value="<?php echo esc_attr( $niteoCS_logo_id ); ?>" />
|
47 |
<input id="add-logo" type="button" class="button" value="Select Logo" />
|
48 |
|
49 |
-
<div class="logo-wrapper"
|
50 |
-
<?php
|
51 |
if ( isset($logo_url) && $logo_url !== '' ) {
|
52 |
echo '<img src="'.esc_url($logo_url).'" alt="CMP Logo">';
|
53 |
-
}
|
54 |
-
</div>
|
55 |
<input id="delete-logo" type="button" class="button" value="Remove Logo" /><br><br>
|
56 |
|
57 |
<label for="niteoCS_logo_custom_size"><input type="checkbox" name="niteoCS_logo_custom_size" id="niteoCS_logo_custom_size" class="cmp-logo-size" value='1' <?php checked($niteoCS_logo_custom_size, '1');?>><?php _e('Set custom logo height', 'cmp-coming-soon-maintenance');?></label>
|
1 |
<?php
|
2 |
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
|
|
3 |
?>
|
4 |
<div class="table-wrapper content">
|
5 |
<h3><?php _e('Logo Setup', 'cmp-coming-soon-maintenance');?></h3>
|
45 |
<input type="hidden" class="widefat" id="niteoCS-logo-id" name="niteoCS_logo_id" value="<?php echo esc_attr( $niteoCS_logo_id ); ?>" />
|
46 |
<input id="add-logo" type="button" class="button" value="Select Logo" />
|
47 |
|
48 |
+
<div class="logo-wrapper"><?php
|
|
|
49 |
if ( isset($logo_url) && $logo_url !== '' ) {
|
50 |
echo '<img src="'.esc_url($logo_url).'" alt="CMP Logo">';
|
51 |
+
} ?></div>
|
|
|
52 |
<input id="delete-logo" type="button" class="button" value="Remove Logo" /><br><br>
|
53 |
|
54 |
<label for="niteoCS_logo_custom_size"><input type="checkbox" name="niteoCS_logo_custom_size" id="niteoCS_logo_custom_size" class="cmp-logo-size" value='1' <?php checked($niteoCS_logo_custom_size, '1');?>><?php _e('Set custom logo height', 'cmp-coming-soon-maintenance');?></label>
|
inc/settings/settings-seo.php
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
+
?>
|
4 |
+
|
5 |
+
<div class="table-wrapper seo">
|
6 |
+
<h3><?php _e('SEO Settings', 'cmp-coming-soon-maintenance');?></h3>
|
7 |
+
<table class="seo">
|
8 |
+
<tbody>
|
9 |
+
|
10 |
+
<tr>
|
11 |
+
<th><?php _e('Favicon', 'cmp-coming-soon-maintenance');?></th>
|
12 |
+
<td>
|
13 |
+
<fieldset>
|
14 |
+
<input type="hidden" class="widefat" id="niteoCS-favicon-id" name="niteoCS_favicon_id" value="<?php echo esc_attr( $niteoCS_favicon_id ); ?>" />
|
15 |
+
<input id="add-favicon" type="button" class="button" value="Select Favicon" />
|
16 |
+
|
17 |
+
<div class="favicon-wrapper">
|
18 |
+
<?php
|
19 |
+
if ( isset($niteoCS_favicon_url) && $niteoCS_favicon_url !== '' ) {
|
20 |
+
echo '<img src="'.esc_url($niteoCS_favicon_url).'" alt="">';
|
21 |
+
} ?>
|
22 |
+
</div>
|
23 |
+
<span class="cmp-hint">* <?php _e('By default your standard Favicon will be used but you can override it for CMP page by selecting different Favicon.', 'cmp-coming-soon-maintenance');?></span>
|
24 |
+
<br><br>
|
25 |
+
<input id="delete-favicon" type="button" class="button" value="Remove Favicon" />
|
26 |
+
</fieldset>
|
27 |
+
</td>
|
28 |
+
</tr>
|
29 |
+
|
30 |
+
<tr class="seo-title">
|
31 |
+
<th><?php _e('SEO Title', 'cmp-coming-soon-maintenance');?></th>
|
32 |
+
<td>
|
33 |
+
<fieldset>
|
34 |
+
<input type="text" name="niteoCS_title" id="niteoCS_title" value="<?php echo esc_attr( $niteoCS_title); ?>" class="regular-text code">
|
35 |
+
<span class="cmp-hint">* <?php _e('It is recommended to keep title under 60 characters.', 'cmp-coming-soon-maintenance');?></span>
|
36 |
+
</fieldset>
|
37 |
+
</td>
|
38 |
+
</tr>
|
39 |
+
|
40 |
+
<tr>
|
41 |
+
<th><?php _e('SEO Description', 'cmp-coming-soon-maintenance');?></th>
|
42 |
+
<td>
|
43 |
+
<fieldset>
|
44 |
+
<textarea name="niteoCS_descr" id="niteoCS_descr" class="code"><?php echo esc_attr( $niteoCS_descr); ?></textarea>
|
45 |
+
<span class="cmp-hint">* <?php _e('It is recommended to keep description between 50–300 characters.', 'cmp-coming-soon-maintenance');?></span>
|
46 |
+
</fieldset>
|
47 |
+
</td>
|
48 |
+
</tr>
|
49 |
+
|
50 |
+
<tr>
|
51 |
+
<th><?php _e('SEO Image', 'cmp-coming-soon-maintenance');?></th>
|
52 |
+
<td>
|
53 |
+
<fieldset>
|
54 |
+
<input type="hidden" class="widefat" id="niteoCS-seo_img-id" name="niteoCS_seo_img_id" value="<?php echo esc_attr( $niteoCS_seo_img_id ); ?>" />
|
55 |
+
<input id="add-seo_img" type="button" class="button" value="Select Image" />
|
56 |
+
|
57 |
+
<div class="seo_img-wrapper">
|
58 |
+
<?php
|
59 |
+
if ( isset( $niteoCS_seo_img_url ) && $niteoCS_seo_img_url !== '' ) {
|
60 |
+
echo '<img src="'.esc_url( $niteoCS_seo_img_url ).'" alt="">';
|
61 |
+
} ?>
|
62 |
+
</div>
|
63 |
+
<span class="cmp-hint">* <?php _e('By default seleceted Background image is displayed on Social Networks if your Website is shared. You can overwrite the image by selecting your custom image here.', 'cmp-coming-soon-maintenance');?></span>
|
64 |
+
<br><br>
|
65 |
+
<input id="delete-seo_img" type="button" class="button" value="Remove Image" />
|
66 |
+
</fieldset>
|
67 |
+
</td>
|
68 |
+
</tr>
|
69 |
+
|
70 |
+
<tr>
|
71 |
+
<th><?php _e('Search Engine Visibility', 'cmp-coming-soon-maintenance');?></th>
|
72 |
+
<td>
|
73 |
+
<fieldset>
|
74 |
+
<label><input id="seo-visibility" name="niteoCS_seo_visibility" type="checkbox" class="regular-text code" <?php checked( '0', $seo_visibility );?> /><?php _e('Discourage search engines from indexing this site - applies only for CMP page.', 'cmp-coming-soon-maintenance');?></label><br>
|
75 |
+
<span class="cmp-hint">* <?php _e('It is up to search engines to honor this request.', 'cmp-coming-soon-maintenance');?></span>
|
76 |
+
|
77 |
+
</fieldset>
|
78 |
+
</td>
|
79 |
+
</tr>
|
80 |
+
|
81 |
+
<tr>
|
82 |
+
<th><?php _e('No-cache Headers', 'cmp-coming-soon-maintenance');?></th>
|
83 |
+
<td>
|
84 |
+
<fieldset>
|
85 |
+
<label><input id="seo-nocache" name="niteoCS_seo_nocache" type="checkbox" class="regular-text code" <?php checked( '1', $seo_nocache );?> /><?php _e('Send no-cache headers. If you don\'t want the CMP page\'s preview to be cached by Facebook or other social media then enable this option.', 'cmp-coming-soon-maintenance');?></label>
|
86 |
+
</fieldset>
|
87 |
+
</td>
|
88 |
+
</tr>
|
89 |
+
|
90 |
+
<?php echo $this->render_settings->submit(); ?>
|
91 |
+
|
92 |
+
</tbody>
|
93 |
+
</table>
|
94 |
+
</div>
|
95 |
+
|
96 |
+
<div class="table-wrapper seo">
|
97 |
+
<h3><?php _e('Website Analytics', 'cmp-coming-soon-maintenance');?></h3>
|
98 |
+
<table class="seo">
|
99 |
+
<tbody>
|
100 |
+
|
101 |
+
<tr>
|
102 |
+
<th>
|
103 |
+
<fieldset>
|
104 |
+
<legend class="screen-reader-text">
|
105 |
+
<span><?php _e('Analytics', 'cmp-coming-soon-maintenance');?></span>
|
106 |
+
</legend>
|
107 |
+
|
108 |
+
<p>
|
109 |
+
<label title="<?php _e('Disabled', 'cmp-coming-soon-maintenance');?>">
|
110 |
+
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="disabled"<?php checked( 'disabled', $niteoCS_analytics_status );?>> <?php _e('Disabled', 'cmp-coming-soon-maintenance');?>
|
111 |
+
</label>
|
112 |
+
</p>
|
113 |
+
|
114 |
+
<p>
|
115 |
+
<label title="<?php _e('Google Analytics', 'cmp-coming-soon-maintenance');?>">
|
116 |
+
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="google"<?php checked( 'google', $niteoCS_analytics_status );?>> <?php _e('Google Analytics', 'cmp-coming-soon-maintenance');?>
|
117 |
+
</label>
|
118 |
+
</p>
|
119 |
+
|
120 |
+
<p>
|
121 |
+
<label title="<?php _e('Other', 'cmp-coming-soon-maintenance');?>">
|
122 |
+
<input type="radio" class="analytics" name="niteoCS_analytics_status" value="other"<?php checked( 'other', $niteoCS_analytics_status );?>> <?php _e('Other', 'cmp-coming-soon-maintenance');?>
|
123 |
+
</label>
|
124 |
+
</p>
|
125 |
+
|
126 |
+
</fieldset>
|
127 |
+
</th>
|
128 |
+
|
129 |
+
<td>
|
130 |
+
<fieldset>
|
131 |
+
<p class="analytics-switch disabled"><?php _e('Analytics is disabled', 'cmp-coming-soon-maintenance');?></p>
|
132 |
+
|
133 |
+
<p class="analytics-switch google">
|
134 |
+
<label for="niteoCS_analytics"><?php _e('Insert Google Analytics Tracking ID', 'cmp-coming-soon-maintenance');?></label><br>
|
135 |
+
<input type="text" name="niteoCS_analytics" value="<?php echo esc_attr( $niteoCS_analytics ); ?>" class="regular-text code" placeholder="UA-xxxxxx-xx"/>
|
136 |
+
</p>
|
137 |
+
|
138 |
+
<p class="analytics-switch other">
|
139 |
+
<label for="niteoCS_analytics_other"><?php _e('Insert your the code provided by your Analytics Plugin or Website.', 'cmp-coming-soon-maintenance');?></label><br>
|
140 |
+
<textarea name="niteoCS_analytics_other" rows="5" class="code"><?php echo stripslashes( $niteoCS_analytics_other ); ?></textarea>
|
141 |
+
</p>
|
142 |
+
</fieldset>
|
143 |
+
</td>
|
144 |
+
</tr>
|
145 |
+
|
146 |
+
<?php echo $this->render_settings->submit(); ?>
|
147 |
+
|
148 |
+
</tbody>
|
149 |
+
</table>
|
150 |
+
</div>
|
languages/cmp-coming-soon-maintenance-default.mo
CHANGED
Binary file
|
languages/cmp-coming-soon-maintenance-default.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: cmp-coming-soon-maintenance\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Niteothemes <info@niteothemes.com>\n"
|
8 |
"Language: en\n"
|
@@ -16,76 +16,96 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: cmp-advanced.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "CMP Page Whitelist and Blacklist Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: cmp-advanced.php:
|
24 |
msgid "Whitelist Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: cmp-advanced.php:
|
28 |
msgid "Page Whitelist"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: cmp-advanced.php:
|
32 |
msgid "Page Blacklist"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: cmp-advanced.php:
|
36 |
-
#:
|
37 |
-
#: inc/settings/settings-background.php:366
|
38 |
#: inc/settings/settings-contact_form-disabled.php:24
|
39 |
#: inc/settings/settings-contact_form.php:46
|
40 |
#: inc/settings/settings-counter-disabled.php:19
|
41 |
#: inc/settings/settings-counter.php:60
|
42 |
#: inc/settings/settings-footer-disabled.php:6
|
43 |
#: inc/settings/settings-logo-disabled.php:28
|
44 |
-
#: inc/settings/settings-logo-disabled.php:29 inc/settings/settings-logo.php:
|
45 |
-
#: inc/settings/settings-logo.php:
|
|
|
46 |
#: inc/settings/settings-slider-disabled.php:22
|
47 |
#: inc/settings/settings-slider.php:51
|
48 |
#: inc/settings/settings-special_effects-disabled.php:30
|
49 |
-
#: inc/settings/settings-special_effects.php:
|
50 |
#: inc/settings/settings-subscribe-disabled.php:30
|
51 |
-
#: inc/settings/settings-subscribe.php:
|
52 |
msgid "Disabled"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: cmp-advanced.php:
|
56 |
-
msgid "CMP Whitelist -
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: cmp-advanced.php:
|
60 |
msgid "Homepage"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: cmp-advanced.php:
|
64 |
msgid ""
|
65 |
"By default CMP is enabled on all pages. Leave this field empty to use "
|
66 |
"default settings."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: cmp-advanced.php:
|
70 |
-
msgid "You can also add the
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: cmp-advanced.php:
|
74 |
msgid "CMP Blacklist - select the pages to NOT display CMP landing page."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: cmp-advanced.php:
|
78 |
msgid "If you want to exclude some pages from CMP you can select them here."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: cmp-advanced.php:
|
82 |
msgid ""
|
83 |
"Insert separate URL at each line. Please make sure your Permalinks work "
|
84 |
"correctly!<br> You can also use asterisk (*) as a wildcard to match any "
|
85 |
"string."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: cmp-advanced.php:
|
89 |
msgid ""
|
90 |
"CMP landing page is displayed on all pages by default. You can enable Page "
|
91 |
"Whitelist to display CMP only on specific page(s) or Page Blacklist to "
|
@@ -93,31 +113,41 @@ msgid ""
|
|
93 |
"Page Blacklist here."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: cmp-advanced.php:
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: cmp-advanced.php:
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: cmp-advanced.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
msgid "Bypass User Roles"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: cmp-advanced.php:
|
109 |
msgid "Select User Roles to bypass CMP landing page."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: cmp-advanced.php:
|
113 |
msgid "Administrator role always bypass CMP by default."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: cmp-advanced.php:
|
117 |
msgid "CMP Bypass URL"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: cmp-advanced.php:
|
121 |
#: inc/settings/settings-counter-disabled.php:13
|
122 |
#: inc/settings/settings-counter.php:54
|
123 |
#: inc/settings/settings-slider-disabled.php:16
|
@@ -125,11 +155,11 @@ msgstr ""
|
|
125 |
msgid "Enabled"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: cmp-advanced.php:
|
129 |
msgid "Bypass URL"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: cmp-advanced.php:
|
133 |
msgid ""
|
134 |
"You can use this URL to bypass CMP maintenance page. Once you access your "
|
135 |
"website with this URL, CMP Cookie will be set with default expiration of 2 "
|
@@ -137,312 +167,201 @@ msgid ""
|
|
137 |
"URL."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: cmp-advanced.php:
|
141 |
msgid "Set Bypass Passphrase"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: cmp-advanced.php:
|
145 |
msgid ""
|
146 |
"You can use passphrase which contains letters, numbers, underscores or "
|
147 |
"dashes only."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: cmp-advanced.php:
|
151 |
msgid "Set bypass cookie Expiration Time in seconds"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: cmp-advanced.php:
|
155 |
msgid ""
|
156 |
"You can set custom Bypass CMP Cookie expiration time in seconds (1hour = "
|
157 |
"3600). Default expiration time is 2 days (172800)."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: cmp-advanced.php:
|
161 |
msgid ""
|
162 |
"Please note this solution is using browser cookies which might not work "
|
163 |
"correctly if you are using caching plugins."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: cmp-advanced.php:
|
167 |
msgid ""
|
168 |
"You can Enable CMP Bypass where you can set custom URL parameter to bypass "
|
169 |
"CMP page. You can send this URL to anyone who would like to sneak peak into "
|
170 |
"your Website while it is under development or maintanence."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: cmp-advanced.php:424 cmp-advanced.php:432
|
174 |
-
msgid "CMP Top Bar Icon"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: cmp-advanced.php:451
|
178 |
-
msgid "You can specify which roles have access to CMP Top Bar icon."
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: cmp-advanced.php:468
|
182 |
-
msgid "Administrator role can always access Top Bar Icon"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: cmp-advanced.php:472
|
186 |
-
msgid "CMP Top Bar Icon is disabled."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: cmp-advanced.php:474
|
190 |
-
msgid ""
|
191 |
-
" If you enable it again, you can quickly enable or disable Coming Soon Mode "
|
192 |
-
"or check out CMP Preview without visiting CMP Settings Plugin page."
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: cmp-advanced.php:488
|
196 |
-
msgid "Custom External Scripts"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: cmp-advanced.php:495
|
200 |
-
msgid "Add External Head Scripts"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
#: cmp-advanced.php:499
|
204 |
-
msgid "
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: cmp-advanced.php:506 cmp-advanced.php:548
|
208 |
-
msgid "Insert Javascript or CSS external file URL"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: cmp-advanced.php:527 cmp-advanced.php:569
|
212 |
-
msgid "Add More"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: cmp-advanced.php:537
|
216 |
-
msgid "Add External Footer Scripts"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: cmp-advanced.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: cmp-
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: cmp-
|
228 |
-
msgid ""
|
229 |
-
"If you have any questions or issue feel free to ask on Wordpress Support "
|
230 |
-
"Forum! We are happy to help :)"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: cmp-
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: cmp-
|
238 |
msgid ""
|
239 |
-
"
|
240 |
-
"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: cmp-settings.php:579
|
244 |
-
msgid "Settings"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: cmp-settings.php:581 inc/settings/settings-footer.php:63
|
248 |
-
msgid "Content"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: cmp-settings.php:583
|
252 |
-
msgid "Customize"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: cmp-settings.php:585
|
256 |
-
msgid "SEO & Analytics"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: cmp-settings.php:587
|
260 |
-
msgid "Custom CSS"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: cmp-settings.php:589
|
264 |
-
msgid "Preview"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: cmp-
|
268 |
-
msgid "
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: cmp-settings.php:602
|
272 |
-
msgid "CMP Status"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: cmp-settings.php:614
|
276 |
-
msgid "Whole Website"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: cmp-settings.php:619
|
280 |
-
msgid "Homepage only"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: cmp-settings.php:624
|
284 |
-
msgid "Whitelist/Blacklist"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: cmp-
|
288 |
-
msgid "CMP
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: cmp-
|
292 |
-
msgid "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: cmp-
|
296 |
-
msgid ""
|
297 |
-
"Returns standard 200 HTTP OK response code to indexing robots. Set this "
|
298 |
-
"option if you want to use our plugin as \"Coming Soon\" page."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: cmp-
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: cmp-
|
306 |
-
msgid ""
|
307 |
-
"Returns 503 HTTP Service unavailable code to indexing robots. Set this "
|
308 |
-
"option if your site is down due to maintanance and you want to display "
|
309 |
-
"Maintanance page."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: cmp-
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: cmp-
|
317 |
msgid ""
|
318 |
-
"
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: cmp-
|
322 |
-
msgid "
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: cmp-
|
326 |
-
msgid "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: cmp-
|
330 |
-
msgid "
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: cmp-
|
334 |
-
|
335 |
-
#: inc/settings/settings-background.php:440
|
336 |
-
#: inc/settings/settings-contact_form.php:62
|
337 |
-
#: inc/settings/settings-subscribe.php:124
|
338 |
-
msgid "Leave empty to disable"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: cmp-
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: cmp-
|
346 |
-
msgid ""
|
347 |
-
"WordPress embeds are fully supported. You can also add any custom HTML. No "
|
348 |
-
"3rd party shortcodes are currently supported."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: cmp-
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: cmp-
|
356 |
-
msgid "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: cmp-
|
360 |
msgid ""
|
361 |
-
"
|
362 |
-
"CMP
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: cmp-settings.php:844
|
366 |
-
msgid "SEO Title"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: cmp-settings.php:848
|
370 |
-
msgid "It is recommended to keep title under 60 characters."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: cmp-
|
374 |
-
msgid "
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: cmp-settings.php:858
|
378 |
-
msgid "It is recommended to keep description between 50–300 characters."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: cmp-
|
382 |
-
msgid "
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: cmp-settings.php:876
|
386 |
-
msgid ""
|
387 |
-
"By default seleceted Background image is displayed on Social Networks if "
|
388 |
-
"your Website is shared. You can overwrite the image by selecting your custom "
|
389 |
-
"image here."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: cmp-
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: cmp-
|
397 |
msgid ""
|
398 |
-
"
|
399 |
-
"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: cmp-
|
403 |
-
msgid "
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: cmp-
|
407 |
-
msgid "
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: cmp-
|
411 |
msgid ""
|
412 |
-
"
|
413 |
-
"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: cmp-
|
417 |
-
msgid "
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: cmp-settings.php:
|
421 |
-
msgid "
|
|
|
|
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: cmp-settings.php:
|
425 |
-
msgid "
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: cmp-settings.php:
|
429 |
-
msgid "
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: cmp-settings.php:
|
433 |
-
msgid "
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: cmp-settings.php:
|
437 |
-
msgid "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: cmp-settings.php:
|
441 |
-
msgid "
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: cmp-settings.php:
|
445 |
-
msgid "
|
446 |
msgstr ""
|
447 |
|
448 |
#: cmp-sidebar.php:4
|
@@ -501,7 +420,7 @@ msgid ""
|
|
501 |
"in MailChimp!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: cmp-subscribers.php:
|
505 |
msgid "Export All Subscribers"
|
506 |
msgstr ""
|
507 |
|
@@ -561,7 +480,7 @@ msgstr ""
|
|
561 |
msgid "Oops! This email address is already on our list"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: cmp-translate.php:71 niteo-cmp.php:
|
565 |
msgid "CMP Translation"
|
566 |
msgstr ""
|
567 |
|
@@ -571,7 +490,7 @@ msgid ""
|
|
571 |
"subscription messages, etc."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: cmp-translate.php:77 inc/class-cmp-render_settings.php:
|
575 |
msgid "Save All Changes"
|
576 |
msgstr ""
|
577 |
|
@@ -645,10 +564,6 @@ msgstr ""
|
|
645 |
msgid "CMP - Coming Soon & Maintenance"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/class-cmp-render_html.php:617
|
649 |
-
msgid "Phone"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
#: inc/class-cmp-subscribers.php:15
|
653 |
msgid "subscriber"
|
654 |
msgstr ""
|
@@ -669,11 +584,12 @@ msgstr ""
|
|
669 |
msgid "Delete"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/class-cmp-subscribers.php:190
|
673 |
msgid "ID"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: inc/class-cmp-subscribers.php:193
|
|
|
677 |
msgid "Email"
|
678 |
msgstr ""
|
679 |
|
@@ -713,6 +629,10 @@ msgstr ""
|
|
713 |
msgid "Thank you for installing CMP - Coming soon & Maintenance Plugin!"
|
714 |
msgstr ""
|
715 |
|
|
|
|
|
|
|
|
|
716 |
#: inc/settings/settings-background.php:5
|
717 |
msgid "Blury Beach"
|
718 |
msgstr ""
|
@@ -834,7 +754,7 @@ msgid "Graphic Pattern"
|
|
834 |
msgstr ""
|
835 |
|
836 |
#: inc/settings/settings-background.php:72
|
837 |
-
#: inc/settings/settings-background.php:
|
838 |
msgid "Solid Color"
|
839 |
msgstr ""
|
840 |
|
@@ -842,70 +762,70 @@ msgstr ""
|
|
842 |
msgid "Gradient Color"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: inc/settings/settings-background.php:
|
846 |
msgid "Every CMP Theme is using unique default background."
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: inc/settings/settings-background.php:
|
850 |
msgid ""
|
851 |
"Pro Tip! You can select multiple Media from your library by holding CTRL"
|
852 |
"+click (Command+click if you use MacOS) while selecting photos."
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: inc/settings/settings-background.php:
|
856 |
msgid "Delete Images"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/settings/settings-background.php:
|
860 |
msgid "Choose Unsplash Feed"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: inc/settings/settings-background.php:
|
864 |
msgid "Random Photo"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: inc/settings/settings-background.php:
|
868 |
msgid "Specific Photo"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: inc/settings/settings-background.php:
|
872 |
msgid "Random from Collection"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: inc/settings/settings-background.php:
|
876 |
msgid "Random from User"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: inc/settings/settings-background.php:
|
880 |
msgid "Enter Unsplash Photo URL or Unsplash Photo ID"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/settings/settings-background.php:
|
884 |
msgid "Display Unsplash Photo"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: inc/settings/settings-background.php:
|
888 |
#, php-format
|
889 |
msgid "Enter <a href=\"%s\">Unsplash Collection</a> URL or Collection ID."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: inc/settings/settings-background.php:
|
893 |
msgid "Limit photos to specific keyword (fashion, nature, technology..)"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: inc/settings/settings-background.php:
|
897 |
-
msgid "
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: inc/settings/settings-background.php:
|
901 |
msgid "Enter Unsplash User ID"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: inc/settings/settings-background.php:
|
905 |
msgid "Unsplash"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: inc/settings/settings-background.php:
|
909 |
msgid ""
|
910 |
"is a world leading source for free to use high quality stock images. All of "
|
911 |
"the images that are submitted and published on Unsplash fall under under the "
|
@@ -913,129 +833,141 @@ msgid ""
|
|
913 |
"you can use the image for any personal or commercial use."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: inc/settings/settings-background.php:
|
917 |
msgid "Select Video Source"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: inc/settings/settings-background.php:
|
921 |
msgid "YouTube"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: inc/settings/settings-background.php:
|
925 |
msgid "Custom Video File"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: inc/settings/settings-background.php:
|
929 |
msgid "Vimeo (coming soon...)"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: inc/settings/settings-background.php:
|
933 |
msgid "Enter Youtube URL"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/settings/settings-background.php:
|
937 |
msgid "Enter Vimeo URL"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/settings/settings-background.php:
|
941 |
msgid "Select or Upload custom Video file"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/settings/settings-background.php:
|
|
|
|
|
|
|
|
|
945 |
msgid ""
|
946 |
-
"
|
947 |
-
"
|
948 |
-
"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: inc/settings/settings-background.php:
|
952 |
msgid "Media Library"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: inc/settings/settings-background.php:
|
956 |
msgid "Select Pattern"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: inc/settings/settings-background.php:
|
960 |
msgid "Custom Pattern..."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/settings/settings-background.php:
|
964 |
msgid "Select Color"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: inc/settings/settings-background.php:
|
968 |
msgid "Select Gradient Background"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: inc/settings/settings-background.php:
|
972 |
-
#: inc/settings/settings-background.php:
|
973 |
msgid "Custom Gradient"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/settings/settings-background.php:
|
977 |
-
#: inc/settings/settings-background.php:
|
978 |
msgid "Select first gradient color:"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/settings/settings-background.php:
|
982 |
-
#: inc/settings/settings-background.php:
|
983 |
msgid "Select second gradient color:"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: inc/settings/settings-background.php:
|
987 |
msgid "Background Overlay"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: inc/settings/settings-background.php:
|
991 |
msgid "Set Background Overlay"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: inc/settings/settings-background.php:
|
995 |
msgid "Gradient"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: inc/settings/settings-background.php:
|
999 |
msgid "Background Overlay Color"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: inc/settings/settings-background.php:
|
1003 |
msgid "Select Gradient Overlay"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/settings/settings-background.php:
|
1007 |
msgid "Background Overlay Opacity"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/settings/settings-background.php:
|
1011 |
msgid "Background Blur Amount"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/settings/settings-background.php:
|
1015 |
msgid "Text Overlay"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/settings/settings-background.php:
|
1019 |
msgid "Display Text Overlay"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/settings/settings-background.php:
|
1023 |
msgid "Overlay Heading"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/settings/settings-background.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
msgid "Overlay Text"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/settings/settings-background.php:
|
1031 |
msgid "Overlay Call To Action Button Text"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: inc/settings/settings-background.php:
|
1035 |
msgid "Overlay Call To Action Button URL"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: inc/settings/settings-background.php:
|
1039 |
msgid "Insert Valid URL"
|
1040 |
msgstr ""
|
1041 |
|
@@ -1059,7 +991,7 @@ msgid "Contact Form is not supported by selected Theme."
|
|
1059 |
msgstr ""
|
1060 |
|
1061 |
#: inc/settings/settings-contact_form.php:55
|
1062 |
-
#: inc/settings/settings-subscribe.php:
|
1063 |
msgid "Subscribe Form is disabled."
|
1064 |
msgstr ""
|
1065 |
|
@@ -1087,6 +1019,24 @@ msgid ""
|
|
1087 |
"Contact > New"
|
1088 |
msgstr ""
|
1089 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1090 |
#: inc/settings/settings-counter-disabled.php:2
|
1091 |
#: inc/settings/settings-counter.php:43
|
1092 |
msgid "Countdown Timer Setup"
|
@@ -1102,7 +1052,7 @@ msgid "Countdown Timer is not supported by selected Theme."
|
|
1102 |
msgstr ""
|
1103 |
|
1104 |
#: inc/settings/settings-counter.php:68
|
1105 |
-
msgid "Countdown
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#: inc/settings/settings-counter.php:76
|
@@ -1110,7 +1060,7 @@ msgid "Counter Heading"
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
#: inc/settings/settings-counter.php:82
|
1113 |
-
msgid "Click on date input
|
1114 |
msgstr ""
|
1115 |
|
1116 |
#: inc/settings/settings-counter.php:89
|
@@ -1122,217 +1072,245 @@ msgid "Countdown action:"
|
|
1122 |
msgstr ""
|
1123 |
|
1124 |
#: inc/settings/settings-counter.php:95
|
1125 |
-
msgid "No
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: inc/settings/settings-counter.php:96
|
1129 |
-
msgid "Disable
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: inc/settings/settings-counter.php:97
|
1133 |
-
msgid "URL
|
1134 |
msgstr ""
|
1135 |
|
1136 |
#: inc/settings/settings-counter.php:101
|
1137 |
#, php-format
|
1138 |
msgid ""
|
1139 |
-
"Notification Email will be sent to
|
1140 |
-
"expires."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
#: inc/settings/settings-counter.php:103
|
1144 |
msgid "Enter redirect URL"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: inc/settings/settings-
|
1148 |
-
|
1149 |
-
msgid "Customize Fonts"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: inc/settings/settings-
|
1153 |
-
#: inc/settings/settings-
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: inc/settings/settings-
|
1158 |
-
|
1159 |
-
#: inc/settings/settings-typography.php:14
|
1160 |
-
#: inc/settings/settings-typography.php:49
|
1161 |
-
msgid "Select Font Family from "
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: inc/settings/settings-
|
1165 |
-
|
1166 |
-
msgid "Google Fonts"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: inc/settings/settings-
|
1170 |
-
|
1171 |
-
#: inc/settings/settings-typography.php:21
|
1172 |
-
#: inc/settings/settings-typography.php:56
|
1173 |
-
msgid "Variant"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/settings/settings-
|
1177 |
-
|
1178 |
-
#: inc/settings/settings-typography.php:31
|
1179 |
-
#: inc/settings/settings-typography.php:63
|
1180 |
-
msgid "Font Size"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: inc/settings/settings-
|
1184 |
-
|
1185 |
-
#: inc/settings/settings-typography.php:37
|
1186 |
-
#: inc/settings/settings-typography.php:68
|
1187 |
-
msgid "Letter Spacing"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: inc/settings/settings-
|
1191 |
-
|
1192 |
-
msgid "Content Font"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: inc/settings/settings-
|
1196 |
-
|
1197 |
-
msgid "Line Height"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: inc/settings/settings-
|
1201 |
-
|
1202 |
-
msgid "Fonts preview"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: inc/settings/settings-
|
1206 |
-
|
1207 |
-
msgid "Heading Animation"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: inc/settings/settings-
|
1211 |
-
|
1212 |
-
#: inc/settings/settings-typography.php:90
|
1213 |
-
#: inc/settings/settings-typography.php:101
|
1214 |
-
msgid "No animation"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: inc/settings/settings-
|
1218 |
-
|
1219 |
-
#: inc/settings/settings-typography.php:91
|
1220 |
-
#: inc/settings/settings-typography.php:102
|
1221 |
-
msgid "Fade In Down"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: inc/settings/settings-
|
1225 |
-
|
1226 |
-
#: inc/settings/settings-typography.php:92
|
1227 |
-
#: inc/settings/settings-typography.php:103
|
1228 |
-
msgid "Fade In Up"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: inc/settings/settings-
|
1232 |
-
|
1233 |
-
#: inc/settings/settings-typography.php:93
|
1234 |
-
#: inc/settings/settings-typography.php:104
|
1235 |
-
msgid "Fade In Left"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: inc/settings/settings-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
msgid "Fade In Right"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: inc/settings/settings-
|
1246 |
-
|
1247 |
-
msgid "Content Animation"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: inc/settings/settings-
|
1251 |
-
|
1252 |
-
|
|
|
|
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: inc/settings/settings-
|
1256 |
-
|
|
|
|
|
|
|
1257 |
msgid ""
|
1258 |
-
"
|
1259 |
-
"modern browsers and eot for IE compatibility."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: inc/settings/settings-
|
1263 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1264 |
msgid ""
|
1265 |
-
"
|
1266 |
-
"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: inc/settings/settings-
|
1270 |
-
|
1271 |
-
msgid "Footer Content"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: inc/settings/settings-
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: inc/settings/settings-
|
1279 |
-
msgid "
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: inc/settings/settings-
|
1283 |
-
msgid "
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: inc/settings/settings-
|
1287 |
-
msgid "
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: inc/settings/settings-
|
1291 |
-
msgid "
|
|
|
|
|
|
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: inc/settings/settings-
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/settings/settings-
|
1299 |
-
msgid "
|
|
|
|
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/settings/settings-
|
1303 |
-
msgid "
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: inc/settings/settings-
|
1307 |
-
msgid "
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: inc/settings/settings-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: inc/settings/settings-
|
1317 |
-
|
1318 |
-
#: inc/settings/settings-logo.php:24
|
1319 |
-
msgid "Graphic Logo"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: inc/settings/settings-
|
1323 |
-
msgid "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: inc/settings/settings-
|
1327 |
-
msgid "
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: inc/settings/settings-
|
1331 |
-
msgid "
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: inc/settings/settings-
|
1335 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: inc/settings/settings-slider-disabled.php:5
|
@@ -1377,14 +1355,18 @@ msgid "Slice"
|
|
1377 |
msgstr ""
|
1378 |
|
1379 |
#: inc/settings/settings-slider.php:94
|
1380 |
-
msgid "
|
1381 |
msgstr ""
|
1382 |
|
1383 |
#: inc/settings/settings-slider.php:102
|
|
|
|
|
|
|
|
|
1384 |
msgid "Slider Autostart"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: inc/settings/settings-slider.php:
|
1388 |
msgid "Number of Unplash media Slides (applies only for Unsplash photos)"
|
1389 |
msgstr ""
|
1390 |
|
@@ -1392,45 +1374,45 @@ msgstr ""
|
|
1392 |
msgid "Social Media"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: inc/settings/settings-social-media.php:
|
1396 |
msgid "Social Section Title"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: inc/settings/settings-social-media.php:
|
1400 |
msgid "Social Media Icons"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: inc/settings/settings-social-media.php:
|
1404 |
msgid "Click on Social Icons below to enable Social Media settings."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: inc/settings/settings-social-media.php:
|
1408 |
-
#: inc/settings/settings-social-media.php:
|
1409 |
msgid "Email Address"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: inc/settings/settings-social-media.php:
|
1413 |
-
#: inc/settings/settings-social-media.php:
|
1414 |
-
#: inc/settings/settings-social-media.php:
|
1415 |
msgid "Phone Number"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: inc/settings/settings-social-media.php:
|
1419 |
msgid "Position"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: inc/settings/settings-social-media.php:
|
1423 |
#: inc/settings/settings-theme-selector.php:55
|
1424 |
#: inc/settings/settings-theme-selector.php:67
|
1425 |
msgid "Active"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: inc/settings/settings-social-media.php:
|
1429 |
msgid "Website URL"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: inc/settings/settings-social-media.php:
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: inc/settings/settings-special_effects-disabled.php:6
|
@@ -1456,31 +1438,35 @@ msgid ""
|
|
1456 |
"Theme with Special Effects Support."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: inc/settings/settings-special_effects.php:
|
|
|
|
|
|
|
|
|
1460 |
msgid "Background effects are disabled"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: inc/settings/settings-special_effects.php:
|
1464 |
msgid "Effect Color"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: inc/settings/settings-subscribe-disabled.php:6
|
1468 |
-
#: inc/settings/settings-subscribe.php:
|
1469 |
msgid "Subscribe Form"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
#: inc/settings/settings-subscribe-disabled.php:13
|
1473 |
-
#: inc/settings/settings-subscribe.php:
|
1474 |
msgid "Subscribe Form Options"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: inc/settings/settings-subscribe-disabled.php:18
|
1478 |
-
#: inc/settings/settings-subscribe.php:
|
1479 |
msgid "CMP Subscribe Form"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: inc/settings/settings-subscribe-disabled.php:24
|
1483 |
-
#: inc/settings/settings-subscribe.php:
|
1484 |
msgid "3rd Party Plugin"
|
1485 |
msgstr ""
|
1486 |
|
@@ -1488,94 +1474,164 @@ msgstr ""
|
|
1488 |
msgid "Subscribe Form is not supported by selected Theme."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: inc/settings/settings-subscribe.php:
|
|
|
|
|
|
|
|
|
1492 |
msgid "Subcribe Form Title"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: inc/settings/settings-subscribe.php:
|
1496 |
msgid "3rd Party Plugin Shortcode"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: inc/settings/settings-subscribe.php:
|
1500 |
msgid ""
|
1501 |
"You can find Shortode in your Contact Form Plugin settings. Should be "
|
1502 |
"something similar to code below: "
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/settings/settings-subscribe.php:
|
1506 |
msgid ""
|
1507 |
"If you use 3rd party shortcode for subscribe or contact form, you might need "
|
1508 |
"to apply custom CSS to style the form correctly."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: inc/settings/settings-subscribe.php:
|
1512 |
msgid ""
|
1513 |
"CMP custom subscribe form will be used. It is guaranteed to always match "
|
1514 |
"selected Theme's style."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/settings/settings-subscribe.php:
|
1518 |
msgid ""
|
1519 |
"Subscribe Form message (can be GDPR or any custom message). Supports anchor "
|
1520 |
"HTML tags."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: inc/settings/settings-subscribe.php:
|
1524 |
-
msgid "Select how to
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: inc/settings/settings-subscribe.php:
|
1528 |
msgid "CMP Custom Subscribe List"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: inc/settings/settings-subscribe.php:
|
1532 |
msgid "MailChimp Integration"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: inc/settings/settings-subscribe.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1536 |
msgid ""
|
1537 |
"Emails will be stored in custom CMP list with CSV export support. If you "
|
1538 |
"ever delete CMP plugin then subscriber list will be purged as well."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/settings/settings-subscribe.php:
|
1542 |
msgid "Total Subscribers: "
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/settings/settings-subscribe.php:
|
1546 |
msgid "MailChimp API key"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: inc/settings/settings-subscribe.php:
|
1550 |
msgid "MailChimp API Key"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/settings/settings-subscribe.php:
|
1554 |
msgid "Retrieve Lists"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/settings/settings-subscribe.php:
|
1558 |
#, php-format
|
1559 |
msgid "You can find or create new API key in your %s."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: inc/settings/settings-subscribe.php:
|
1563 |
-
msgid "Select MailChimp
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: inc/settings/settings-subscribe.php:
|
1567 |
msgid "Please insert MailChimp API key to retrieve Lists."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: inc/settings/settings-subscribe.php:
|
1571 |
msgid "Enable MailChimp Double Opt In"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: inc/settings/settings-subscribe.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1575 |
#, php-format
|
1576 |
msgid ""
|
1577 |
-
"* Did you know you can translate Subscribe Labels
|
1578 |
-
"language in %s Settings?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1579 |
msgstr ""
|
1580 |
|
1581 |
#: inc/settings/settings-theme-selector.php:7
|
@@ -1591,12 +1647,12 @@ msgid "Select"
|
|
1591 |
msgstr ""
|
1592 |
|
1593 |
#: inc/settings/settings-theme-selector.php:58
|
1594 |
-
#: inc/settings/settings-theme-selector.php:
|
1595 |
msgid "PREVIEW"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
#: inc/settings/settings-theme-selector.php:60
|
1599 |
-
#: inc/settings/settings-theme-selector.php:
|
1600 |
msgid "DETAILS"
|
1601 |
msgstr ""
|
1602 |
|
@@ -1608,123 +1664,268 @@ msgstr ""
|
|
1608 |
msgid "Premium Themes"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: inc/settings/settings-theme-selector.php:
|
1612 |
#, php-format
|
1613 |
msgid "Get %s"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: inc/settings/settings-theme-selector.php:
|
1617 |
msgid "freebie"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1621 |
msgid "CMP Settings"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: niteo-cmp.php:
|
1625 |
msgid "CMP Basic Setup"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: niteo-cmp.php:
|
|
|
|
|
|
|
|
|
1629 |
msgid "CMP Subscribers"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: niteo-cmp.php:
|
1633 |
msgid "Upload CMP Theme"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: niteo-cmp.php:
|
1637 |
msgid "CMP Help"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: niteo-cmp.php:
|
1641 |
msgid ""
|
1642 |
"Counter expired but it is set to make no action - you should login to your "
|
1643 |
"Wordpress Admin and adjust the expired timer or disable Coming Soon / "
|
1644 |
"Maintenance Mode."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: niteo-cmp.php:
|
1648 |
msgid "Counter expired and Coming soon / Maintanance mode was disabled."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: niteo-cmp.php:
|
1652 |
msgid ""
|
1653 |
"Counter expired and your Website is redirected to external URL per settings."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: niteo-cmp.php:
|
1657 |
msgid "Maintenance Mode:"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: niteo-cmp.php:
|
1661 |
msgid "Coming Soon Mode:"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: niteo-cmp.php:
|
1665 |
msgid "Redirect Mode:"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: niteo-cmp.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1669 |
msgid "CMP Preview"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: niteo-cmp.php:
|
1673 |
#, php-format
|
1674 |
msgid "There is a <b>recommended</b> update of <b>CMP Theme: %s</b> available:"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: niteo-cmp.php:
|
1678 |
#, php-format
|
1679 |
msgid " click to update to %s version from NiteoThemes server now"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: niteo-cmp.php:
|
1683 |
msgid " theme was successfully installed!"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: niteo-cmp.php:
|
1687 |
msgid "There was an error unzipping the file!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: niteo-cmp.php:
|
1691 |
msgid "Error creating Theme subdirectory!"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: niteo-cmp.php:
|
1695 |
msgid "Unable to upload new Theme file ."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: niteo-cmp.php:
|
1699 |
msgid ""
|
1700 |
" file extension is not supported. Please upload ZIP file containing CMP "
|
1701 |
"Theme."
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: niteo-cmp.php:
|
1705 |
msgid "Theme has been updated to latest version!"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: niteo-cmp.php:
|
1709 |
msgid "There was an error unzipping the file due to error: "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: niteo-cmp.php:
|
1713 |
msgid "Error during updating Theme files:"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: niteo-cmp.php:
|
1717 |
msgid "General Error during updating Theme files."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: niteo-cmp.php:
|
|
|
|
|
|
|
|
|
1721 |
msgid "Date"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: niteo-cmp.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1725 |
msgid "CMP Settings Saved"
|
1726 |
msgstr ""
|
1727 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1728 |
#: themes/construct/construct-settings.php:6
|
1729 |
#: themes/countdown/countdown-settings.php:13
|
1730 |
#: themes/hardwork/hardwork-settings.php:11
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: cmp-coming-soon-maintenance\n"
|
4 |
+
"POT-Creation-Date: 2019-12-29 16:36+0100\n"
|
5 |
+
"PO-Revision-Date: 2019-12-29 16:36+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Niteothemes <info@niteothemes.com>\n"
|
8 |
"Language: en\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: cmp-advanced.php:253 inc/settings/settings-general.php:32
|
20 |
+
msgid "Whitelist/Blacklist"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: cmp-advanced.php:255
|
24 |
+
msgid "Bypass"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: cmp-advanced.php:257
|
28 |
+
msgid "Notifications"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: cmp-advanced.php:259
|
32 |
+
msgid "Misc"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: cmp-advanced.php:261
|
36 |
+
msgid "Import/Export"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: cmp-advanced.php:271
|
40 |
msgid "CMP Page Whitelist and Blacklist Settings"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: cmp-advanced.php:279 cmp-advanced.php:443
|
44 |
msgid "Whitelist Settings"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: cmp-advanced.php:284
|
48 |
msgid "Page Whitelist"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: cmp-advanced.php:290
|
52 |
msgid "Page Blacklist"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: cmp-advanced.php:296 cmp-advanced.php:454 cmp-advanced.php:572
|
56 |
+
#: inc/settings/settings-background.php:377
|
|
|
57 |
#: inc/settings/settings-contact_form-disabled.php:24
|
58 |
#: inc/settings/settings-contact_form.php:46
|
59 |
#: inc/settings/settings-counter-disabled.php:19
|
60 |
#: inc/settings/settings-counter.php:60
|
61 |
#: inc/settings/settings-footer-disabled.php:6
|
62 |
#: inc/settings/settings-logo-disabled.php:28
|
63 |
+
#: inc/settings/settings-logo-disabled.php:29 inc/settings/settings-logo.php:28
|
64 |
+
#: inc/settings/settings-logo.php:29 inc/settings/settings-seo.php:109
|
65 |
+
#: inc/settings/settings-seo.php:110
|
66 |
#: inc/settings/settings-slider-disabled.php:22
|
67 |
#: inc/settings/settings-slider.php:51
|
68 |
#: inc/settings/settings-special_effects-disabled.php:30
|
69 |
+
#: inc/settings/settings-special_effects.php:48
|
70 |
#: inc/settings/settings-subscribe-disabled.php:30
|
71 |
+
#: inc/settings/settings-subscribe.php:106
|
72 |
msgid "Disabled"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: cmp-advanced.php:305
|
76 |
+
msgid "CMP Whitelist - set CMP landing page to specific page(s) only."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: cmp-advanced.php:307 cmp-advanced.php:329
|
80 |
msgid "Homepage"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: cmp-advanced.php:315
|
84 |
msgid ""
|
85 |
"By default CMP is enabled on all pages. Leave this field empty to use "
|
86 |
"default settings."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: cmp-advanced.php:317 cmp-advanced.php:339
|
90 |
+
msgid "You can also add the page URLs manually."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: cmp-advanced.php:327
|
94 |
msgid "CMP Blacklist - select the pages to NOT display CMP landing page."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: cmp-advanced.php:337
|
98 |
msgid "If you want to exclude some pages from CMP you can select them here."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: cmp-advanced.php:348
|
102 |
msgid ""
|
103 |
"Insert separate URL at each line. Please make sure your Permalinks work "
|
104 |
"correctly!<br> You can also use asterisk (*) as a wildcard to match any "
|
105 |
"string."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: cmp-advanced.php:350
|
109 |
msgid ""
|
110 |
"CMP landing page is displayed on all pages by default. You can enable Page "
|
111 |
"Whitelist to display CMP only on specific page(s) or Page Blacklist to "
|
113 |
"Page Blacklist here."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: cmp-advanced.php:364
|
117 |
+
msgid "Custom Login URL"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: cmp-advanced.php:369 cmp-advanced.php:373
|
121 |
+
msgid "Login URL"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: cmp-advanced.php:376
|
125 |
+
msgid ""
|
126 |
+
"Insert custom login URL if you are using plugins to change default WordPress "
|
127 |
+
"login URL."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: cmp-advanced.php:395
|
131 |
+
msgid "CMP Bypass by User Roles"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: cmp-advanced.php:399
|
135 |
msgid "Bypass User Roles"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: cmp-advanced.php:403
|
139 |
msgid "Select User Roles to bypass CMP landing page."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: cmp-advanced.php:420
|
143 |
msgid "Administrator role always bypass CMP by default."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: cmp-advanced.php:435
|
147 |
msgid "CMP Bypass URL"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: cmp-advanced.php:448 cmp-advanced.php:566
|
151 |
#: inc/settings/settings-counter-disabled.php:13
|
152 |
#: inc/settings/settings-counter.php:54
|
153 |
#: inc/settings/settings-slider-disabled.php:16
|
155 |
msgid "Enabled"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: cmp-advanced.php:465
|
159 |
msgid "Bypass URL"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: cmp-advanced.php:468
|
163 |
msgid ""
|
164 |
"You can use this URL to bypass CMP maintenance page. Once you access your "
|
165 |
"website with this URL, CMP Cookie will be set with default expiration of 2 "
|
167 |
"URL."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: cmp-advanced.php:470
|
171 |
msgid "Set Bypass Passphrase"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: cmp-advanced.php:473
|
175 |
msgid ""
|
176 |
"You can use passphrase which contains letters, numbers, underscores or "
|
177 |
"dashes only."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: cmp-advanced.php:475
|
181 |
msgid "Set bypass cookie Expiration Time in seconds"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: cmp-advanced.php:478
|
185 |
msgid ""
|
186 |
"You can set custom Bypass CMP Cookie expiration time in seconds (1hour = "
|
187 |
"3600). Default expiration time is 2 days (172800)."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: cmp-advanced.php:480
|
191 |
msgid ""
|
192 |
"Please note this solution is using browser cookies which might not work "
|
193 |
"correctly if you are using caching plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: cmp-advanced.php:484
|
197 |
msgid ""
|
198 |
"You can Enable CMP Bypass where you can set custom URL parameter to bypass "
|
199 |
"CMP page. You can send this URL to anyone who would like to sneak peak into "
|
200 |
"your Website while it is under development or maintanence."
|
201 |
msgstr ""
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
#: cmp-advanced.php:499
|
204 |
+
msgid "Email Notifications"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: cmp-advanced.php:503
|
208 |
+
msgid "Countdown expiration"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: cmp-advanced.php:509
|
212 |
+
msgid "Enable Email notification when Countdown timer expires to 0."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: cmp-advanced.php:514 cmp-advanced.php:534
|
216 |
+
msgid "Specify Email Address"
|
|
|
|
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: cmp-advanced.php:523
|
220 |
+
msgid "CMP Status Change"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: cmp-advanced.php:529
|
224 |
msgid ""
|
225 |
+
"Enable Email notification if Coming Soon Mode is enabled or disabled by the "
|
226 |
+
"user."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: cmp-advanced.php:553 cmp-advanced.php:561
|
230 |
+
msgid "CMP Top Bar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: cmp-advanced.php:580
|
234 |
+
msgid "You can specify which roles have access to CMP Top Bar."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: cmp-advanced.php:593
|
238 |
+
msgid "Administrator role can always access Top Bar."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: cmp-advanced.php:595
|
242 |
+
msgid "CMP Top Bar layout."
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: cmp-advanced.php:597
|
246 |
+
msgid "Complete - CMP Icon with description"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: cmp-advanced.php:598
|
250 |
+
msgid "Compact - CMP Icon only "
|
|
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: cmp-advanced.php:604
|
254 |
+
msgid "CMP Top Bar is disabled."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: cmp-advanced.php:606
|
258 |
msgid ""
|
259 |
+
" Once enabled, you can quickly enable or disable Coming Soon Mode or check "
|
260 |
+
"out CMP Preview without visiting CMP Settings Plugin page."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: cmp-advanced.php:620
|
264 |
+
msgid "Custom External Scripts"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: cmp-advanced.php:624
|
268 |
+
msgid "Head Scripts"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: cmp-advanced.php:628 cmp-advanced.php:660
|
272 |
+
msgid "Insert Javascript or CSS external file URL"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: cmp-advanced.php:649 cmp-advanced.php:681
|
276 |
+
msgid "Add More"
|
|
|
|
|
|
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: cmp-advanced.php:656
|
280 |
+
msgid "Footer Scripts"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: cmp-advanced.php:697
|
284 |
+
msgid "Export or Import CMP Settings"
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: cmp-advanced.php:702
|
288 |
+
msgid "Export CMP Settings"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: cmp-advanced.php:706
|
292 |
+
msgid "Export to JSON file"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: cmp-advanced.php:707
|
296 |
msgid ""
|
297 |
+
"You can export complete CMP Settings to external JSON file. Which can be "
|
298 |
+
"used to backup or transfer CMP Settings to another website."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: cmp-advanced.php:713
|
302 |
+
msgid "Import CMP Settings"
|
|
|
|
|
|
|
|
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: cmp-advanced.php:720
|
306 |
+
msgid "Select JSON file"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: cmp-advanced.php:725
|
310 |
+
msgid "Import with media images"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: cmp-advanced.php:728
|
314 |
msgid ""
|
315 |
+
"Insert valid JSON file with CMP Settings to import complete CMP Settings. "
|
316 |
+
"All current settings will be overwritten."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: cmp-advanced.php:736
|
320 |
+
msgid "Import Settings"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: cmp-help.php:12
|
324 |
+
msgid "Thank you for using our CMP – Coming Soon & Maintenance plugin"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: cmp-help.php:13
|
328 |
msgid ""
|
329 |
+
"If you have any questions or issue feel free to ask on Wordpress Support "
|
330 |
+
"Forum! We are happy to help :)"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: cmp-help.php:15
|
334 |
+
msgid "WordPress Support Forum"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: cmp-settings.php:564
|
338 |
+
msgid ""
|
339 |
+
"JavaScript appears to be disabled in your browser. For this plugin to work "
|
340 |
+
"correctly, please enable JavaScript or switch to a more modern browser."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: cmp-settings.php:586
|
344 |
+
msgid "Settings"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: cmp-settings.php:589 inc/settings/settings-footer.php:63
|
348 |
+
msgid "Content"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: cmp-settings.php:591
|
352 |
+
msgid "Customize"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: cmp-settings.php:593
|
356 |
+
msgid "SEO & Analytics"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: cmp-settings.php:595
|
360 |
+
msgid "Custom CSS"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: cmp-settings.php:597
|
364 |
+
msgid "Preview"
|
365 |
msgstr ""
|
366 |
|
367 |
#: cmp-sidebar.php:4
|
420 |
"in MailChimp!"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: cmp-subscribers.php:30
|
424 |
msgid "Export All Subscribers"
|
425 |
msgstr ""
|
426 |
|
480 |
msgid "Oops! This email address is already on our list"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: cmp-translate.php:71 niteo-cmp.php:392
|
484 |
msgid "CMP Translation"
|
485 |
msgstr ""
|
486 |
|
490 |
"subscription messages, etc."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: cmp-translate.php:77 inc/class-cmp-render_settings.php:31
|
494 |
msgid "Save All Changes"
|
495 |
msgstr ""
|
496 |
|
564 |
msgid "CMP - Coming Soon & Maintenance"
|
565 |
msgstr ""
|
566 |
|
|
|
|
|
|
|
|
|
567 |
#: inc/class-cmp-subscribers.php:15
|
568 |
msgid "subscriber"
|
569 |
msgstr ""
|
584 |
msgid "Delete"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/class-cmp-subscribers.php:190 niteo-cmp.php:1542
|
588 |
msgid "ID"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: inc/class-cmp-subscribers.php:193 inc/render/social-icons.php:32
|
592 |
+
#: niteo-cmp.php:1544
|
593 |
msgid "Email"
|
594 |
msgstr ""
|
595 |
|
629 |
msgid "Thank you for installing CMP - Coming soon & Maintenance Plugin!"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/render/social-icons.php:36
|
633 |
+
msgid "Phone"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
#: inc/settings/settings-background.php:5
|
637 |
msgid "Blury Beach"
|
638 |
msgstr ""
|
754 |
msgstr ""
|
755 |
|
756 |
#: inc/settings/settings-background.php:72
|
757 |
+
#: inc/settings/settings-background.php:373
|
758 |
msgid "Solid Color"
|
759 |
msgstr ""
|
760 |
|
762 |
msgid "Gradient Color"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/settings/settings-background.php:110
|
766 |
msgid "Every CMP Theme is using unique default background."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: inc/settings/settings-background.php:120
|
770 |
msgid ""
|
771 |
"Pro Tip! You can select multiple Media from your library by holding CTRL"
|
772 |
"+click (Command+click if you use MacOS) while selecting photos."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/settings/settings-background.php:168
|
776 |
msgid "Delete Images"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/settings/settings-background.php:175
|
780 |
msgid "Choose Unsplash Feed"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: inc/settings/settings-background.php:178
|
784 |
msgid "Random Photo"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/settings/settings-background.php:180
|
788 |
msgid "Specific Photo"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: inc/settings/settings-background.php:182
|
792 |
msgid "Random from Collection"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: inc/settings/settings-background.php:184
|
796 |
msgid "Random from User"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: inc/settings/settings-background.php:189
|
800 |
msgid "Enter Unsplash Photo URL or Unsplash Photo ID"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: inc/settings/settings-background.php:193
|
804 |
msgid "Display Unsplash Photo"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: inc/settings/settings-background.php:206
|
808 |
#, php-format
|
809 |
msgid "Enter <a href=\"%s\">Unsplash Collection</a> URL or Collection ID."
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: inc/settings/settings-background.php:212
|
813 |
msgid "Limit photos to specific keyword (fashion, nature, technology..)"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: inc/settings/settings-background.php:216
|
817 |
+
msgid "Select Unsplash Featured Photos only"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: inc/settings/settings-background.php:220
|
821 |
msgid "Enter Unsplash User ID"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: inc/settings/settings-background.php:225
|
825 |
msgid "Unsplash"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: inc/settings/settings-background.php:225
|
829 |
msgid ""
|
830 |
"is a world leading source for free to use high quality stock images. All of "
|
831 |
"the images that are submitted and published on Unsplash fall under under the "
|
833 |
"you can use the image for any personal or commercial use."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/settings/settings-background.php:232
|
837 |
msgid "Select Video Source"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/settings/settings-background.php:235
|
841 |
msgid "YouTube"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/settings/settings-background.php:236
|
845 |
msgid "Custom Video File"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/settings/settings-background.php:237
|
849 |
msgid "Vimeo (coming soon...)"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/settings/settings-background.php:242
|
853 |
msgid "Enter Youtube URL"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/settings/settings-background.php:248
|
857 |
msgid "Enter Vimeo URL"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: inc/settings/settings-background.php:253
|
861 |
msgid "Select or Upload custom Video file"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/settings/settings-background.php:282
|
865 |
+
msgid "Loop video automatically"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: inc/settings/settings-background.php:284
|
869 |
msgid ""
|
870 |
+
"YouTube background doesn`t work on mobile devices therefore only thumbnail "
|
871 |
+
"will be displayed on mobile devices. You can upload custom thumbnail image "
|
872 |
+
"by pressing button below. "
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: inc/settings/settings-background.php:286
|
876 |
msgid "Media Library"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: inc/settings/settings-background.php:307
|
880 |
msgid "Select Pattern"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: inc/settings/settings-background.php:314
|
884 |
msgid "Custom Pattern..."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: inc/settings/settings-background.php:328
|
888 |
msgid "Select Color"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: inc/settings/settings-background.php:336
|
892 |
msgid "Select Gradient Background"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: inc/settings/settings-background.php:346
|
896 |
+
#: inc/settings/settings-background.php:403
|
897 |
msgid "Custom Gradient"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/settings/settings-background.php:351
|
901 |
+
#: inc/settings/settings-background.php:409
|
902 |
msgid "Select first gradient color:"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/settings/settings-background.php:354
|
906 |
+
#: inc/settings/settings-background.php:412
|
907 |
msgid "Select second gradient color:"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: inc/settings/settings-background.php:366
|
911 |
msgid "Background Overlay"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: inc/settings/settings-background.php:369
|
915 |
msgid "Set Background Overlay"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/settings/settings-background.php:375
|
919 |
msgid "Gradient"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/settings/settings-background.php:386
|
923 |
msgid "Background Overlay Color"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/settings/settings-background.php:393
|
927 |
msgid "Select Gradient Overlay"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/settings/settings-background.php:420
|
931 |
msgid "Background Overlay Opacity"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/settings/settings-background.php:426
|
935 |
msgid "Background Blur Amount"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/settings/settings-background.php:438
|
939 |
msgid "Text Overlay"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/settings/settings-background.php:441
|
943 |
msgid "Display Text Overlay"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/settings/settings-background.php:444
|
947 |
msgid "Overlay Heading"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/settings/settings-background.php:445
|
951 |
+
#: inc/settings/settings-background.php:448
|
952 |
+
#: inc/settings/settings-background.php:451
|
953 |
+
#: inc/settings/settings-contact_form.php:62
|
954 |
+
#: inc/settings/settings-content.php:14 inc/settings/settings-subscribe.php:150
|
955 |
+
msgid "Leave empty to disable"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: inc/settings/settings-background.php:447
|
959 |
msgid "Overlay Text"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/settings/settings-background.php:450
|
963 |
msgid "Overlay Call To Action Button Text"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/settings/settings-background.php:453
|
967 |
msgid "Overlay Call To Action Button URL"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: inc/settings/settings-background.php:454
|
971 |
msgid "Insert Valid URL"
|
972 |
msgstr ""
|
973 |
|
991 |
msgstr ""
|
992 |
|
993 |
#: inc/settings/settings-contact_form.php:55
|
994 |
+
#: inc/settings/settings-subscribe.php:114
|
995 |
msgid "Subscribe Form is disabled."
|
996 |
msgstr ""
|
997 |
|
1019 |
"Contact > New"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: inc/settings/settings-content.php:7
|
1023 |
+
msgid "Main Content"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: inc/settings/settings-content.php:11
|
1027 |
+
msgid "Heading"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: inc/settings/settings-content.php:20
|
1031 |
+
msgid "Message"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: inc/settings/settings-content.php:23
|
1035 |
+
msgid ""
|
1036 |
+
"WordPress embeds are fully supported. You can also add any custom HTML. No "
|
1037 |
+
"3rd party shortcodes are currently supported."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
#: inc/settings/settings-counter-disabled.php:2
|
1041 |
#: inc/settings/settings-counter.php:43
|
1042 |
msgid "Countdown Timer Setup"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: inc/settings/settings-counter.php:68
|
1055 |
+
msgid "Countdown timer is disabled."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: inc/settings/settings-counter.php:76
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: inc/settings/settings-counter.php:82
|
1063 |
+
msgid "Click on a date input to set timer."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
#: inc/settings/settings-counter.php:89
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: inc/settings/settings-counter.php:95
|
1075 |
+
msgid "No Action"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: inc/settings/settings-counter.php:96
|
1079 |
+
msgid "Disable Coming Soon / Maintenance page."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#: inc/settings/settings-counter.php:97
|
1083 |
+
msgid "URL Redirect"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: inc/settings/settings-counter.php:101
|
1087 |
#, php-format
|
1088 |
msgid ""
|
1089 |
+
"Notification Email will be sent to %s email address once counter expires."
|
|
|
1090 |
msgstr ""
|
1091 |
|
1092 |
#: inc/settings/settings-counter.php:103
|
1093 |
msgid "Enter redirect URL"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: inc/settings/settings-css.php:7
|
1097 |
+
msgid "Enter Custom CSS"
|
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: inc/settings/settings-footer-disabled.php:2
|
1101 |
+
#: inc/settings/settings-footer.php:11
|
1102 |
+
msgid "Footer Content"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: inc/settings/settings-footer-disabled.php:8
|
1106 |
+
msgid "Footer is not supported by selected Theme."
|
|
|
|
|
|
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: inc/settings/settings-footer.php:15
|
1110 |
+
msgid "Copyright"
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: inc/settings/settings-footer.php:25 inc/settings/settings-footer.php:100
|
1114 |
+
msgid "Contact Email"
|
|
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: inc/settings/settings-footer.php:59
|
1118 |
+
msgid "Extended Footer Content"
|
|
|
|
|
|
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: inc/settings/settings-footer.php:72
|
1122 |
+
msgid "Contacts Title"
|
|
|
|
|
|
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: inc/settings/settings-footer.php:90
|
1126 |
+
msgid "Contact Address"
|
|
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: inc/settings/settings-footer.php:109
|
1130 |
+
msgid "Contact Phone"
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: inc/settings/settings-general.php:6
|
1134 |
+
msgid "General Settings"
|
|
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: inc/settings/settings-general.php:10
|
1138 |
+
msgid "CMP Status"
|
|
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: inc/settings/settings-general.php:22
|
1142 |
+
msgid "Whole Website"
|
|
|
|
|
|
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: inc/settings/settings-general.php:27
|
1146 |
+
msgid "Homepage only"
|
|
|
|
|
|
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: inc/settings/settings-general.php:39
|
1150 |
+
msgid "CMP Mode"
|
|
|
|
|
|
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: inc/settings/settings-general.php:42
|
1154 |
+
msgid "Coming Soon & Landing Page"
|
|
|
|
|
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: inc/settings/settings-general.php:43
|
1158 |
+
msgid ""
|
1159 |
+
"Returns standard 200 HTTP OK response code to indexing robots. Set this "
|
1160 |
+
"option if you want to use our plugin as \"Coming Soon\" page."
|
|
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: inc/settings/settings-general.php:47
|
1164 |
+
msgid "Maintenance Mode"
|
|
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: inc/settings/settings-general.php:48
|
1168 |
+
msgid ""
|
1169 |
+
"Returns 503 HTTP Service unavailable code to indexing robots. Set this "
|
1170 |
+
"option if your site is down due to maintanance and you want to display "
|
1171 |
+
"Maintanance page."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: inc/settings/settings-general.php:52
|
1175 |
+
msgid "Redirect Mode"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: inc/settings/settings-general.php:53
|
1179 |
msgid ""
|
1180 |
+
"Choose Redirect Mode if you want to redirect your website to another URL."
|
|
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: inc/settings/settings-general.php:56
|
1184 |
+
msgid "Delay Time in Seconds"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: inc/settings/settings-logo-disabled.php:5 inc/settings/settings-logo.php:5
|
1188 |
+
msgid "Logo Setup"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: inc/settings/settings-logo-disabled.php:12 inc/settings/settings-logo.php:12
|
1192 |
+
msgid "Logo setup"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: inc/settings/settings-logo-disabled.php:16
|
1196 |
+
#: inc/settings/settings-logo-disabled.php:17 inc/settings/settings-logo.php:16
|
1197 |
+
#: inc/settings/settings-logo.php:17
|
1198 |
+
msgid "Text Logo"
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: inc/settings/settings-logo-disabled.php:22
|
1202 |
+
#: inc/settings/settings-logo-disabled.php:23 inc/settings/settings-logo.php:22
|
1203 |
+
#: inc/settings/settings-logo.php:23
|
1204 |
+
msgid "Graphic Logo"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: inc/settings/settings-logo-disabled.php:36
|
1208 |
+
msgid "Logo settings is not supported by selected Theme."
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: inc/settings/settings-logo.php:39
|
1212 |
+
msgid "Click to set.."
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: inc/settings/settings-logo.php:54
|
1216 |
+
msgid "Set custom logo height"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: inc/settings/settings-logo.php:68
|
1220 |
+
msgid "Logo is disabled"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: inc/settings/settings-seo.php:6
|
1224 |
+
msgid "SEO Settings"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: inc/settings/settings-seo.php:11
|
1228 |
+
msgid "Favicon"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: inc/settings/settings-seo.php:23
|
1232 |
msgid ""
|
1233 |
+
"By default your standard Favicon will be used but you can override it for "
|
1234 |
+
"CMP page by selecting different Favicon."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/settings/settings-seo.php:31
|
1238 |
+
msgid "SEO Title"
|
|
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/settings/settings-seo.php:35
|
1242 |
+
msgid "It is recommended to keep title under 60 characters."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/settings/settings-seo.php:41
|
1246 |
+
msgid "SEO Description"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/settings/settings-seo.php:45
|
1250 |
+
msgid "It is recommended to keep description between 50–300 characters."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: inc/settings/settings-seo.php:51
|
1254 |
+
msgid "SEO Image"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: inc/settings/settings-seo.php:63
|
1258 |
+
msgid ""
|
1259 |
+
"By default seleceted Background image is displayed on Social Networks if "
|
1260 |
+
"your Website is shared. You can overwrite the image by selecting your custom "
|
1261 |
+
"image here."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: inc/settings/settings-seo.php:71
|
1265 |
+
msgid "Search Engine Visibility"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: inc/settings/settings-seo.php:74
|
1269 |
+
msgid ""
|
1270 |
+
"Discourage search engines from indexing this site - applies only for CMP "
|
1271 |
+
"page."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: inc/settings/settings-seo.php:75
|
1275 |
+
msgid "It is up to search engines to honor this request."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: inc/settings/settings-seo.php:82
|
1279 |
+
msgid "No-cache Headers"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: inc/settings/settings-seo.php:85
|
1283 |
+
msgid ""
|
1284 |
+
"Send no-cache headers. If you don't want the CMP page's preview to be cached "
|
1285 |
+
"by Facebook or other social media then enable this option."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: inc/settings/settings-seo.php:97
|
1289 |
+
msgid "Website Analytics"
|
|
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: inc/settings/settings-seo.php:105
|
1293 |
+
msgid "Analytics"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: inc/settings/settings-seo.php:115 inc/settings/settings-seo.php:116
|
1297 |
+
msgid "Google Analytics"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: inc/settings/settings-seo.php:121 inc/settings/settings-seo.php:122
|
1301 |
+
msgid "Other"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: inc/settings/settings-seo.php:131
|
1305 |
+
msgid "Analytics is disabled"
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: inc/settings/settings-seo.php:134
|
1309 |
+
msgid "Insert Google Analytics Tracking ID"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: inc/settings/settings-seo.php:139
|
1313 |
+
msgid "Insert your the code provided by your Analytics Plugin or Website."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: inc/settings/settings-slider-disabled.php:5
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: inc/settings/settings-slider.php:94
|
1358 |
+
msgid "Train"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
#: inc/settings/settings-slider.php:102
|
1362 |
+
msgid "Mask Transition Effect"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: inc/settings/settings-slider.php:110
|
1366 |
msgid "Slider Autostart"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: inc/settings/settings-slider.php:113
|
1370 |
msgid "Number of Unplash media Slides (applies only for Unsplash photos)"
|
1371 |
msgstr ""
|
1372 |
|
1374 |
msgid "Social Media"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: inc/settings/settings-social-media.php:14
|
1378 |
msgid "Social Section Title"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: inc/settings/settings-social-media.php:25
|
1382 |
msgid "Social Media Icons"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: inc/settings/settings-social-media.php:27
|
1386 |
msgid "Click on Social Icons below to enable Social Media settings."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: inc/settings/settings-social-media.php:45
|
1390 |
+
#: inc/settings/settings-social-media.php:78
|
1391 |
msgid "Email Address"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: inc/settings/settings-social-media.php:48
|
1395 |
+
#: inc/settings/settings-social-media.php:51
|
1396 |
+
#: inc/settings/settings-social-media.php:90
|
1397 |
msgid "Phone Number"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: inc/settings/settings-social-media.php:66
|
1401 |
msgid "Position"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: inc/settings/settings-social-media.php:66
|
1405 |
#: inc/settings/settings-theme-selector.php:55
|
1406 |
#: inc/settings/settings-theme-selector.php:67
|
1407 |
msgid "Active"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: inc/settings/settings-social-media.php:66
|
1411 |
msgid "Website URL"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: inc/settings/settings-social-media.php:94
|
1415 |
+
msgid "WhatsApp Phone Number"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
#: inc/settings/settings-special_effects-disabled.php:6
|
1438 |
"Theme with Special Effects Support."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: inc/settings/settings-special_effects.php:42
|
1442 |
+
msgid "Let It Snow"
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: inc/settings/settings-special_effects.php:57
|
1446 |
msgid "Background effects are disabled"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: inc/settings/settings-special_effects.php:62
|
1450 |
msgid "Effect Color"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
#: inc/settings/settings-subscribe-disabled.php:6
|
1454 |
+
#: inc/settings/settings-subscribe.php:76
|
1455 |
msgid "Subscribe Form"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: inc/settings/settings-subscribe-disabled.php:13
|
1459 |
+
#: inc/settings/settings-subscribe.php:83
|
1460 |
msgid "Subscribe Form Options"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
#: inc/settings/settings-subscribe-disabled.php:18
|
1464 |
+
#: inc/settings/settings-subscribe.php:88
|
1465 |
msgid "CMP Subscribe Form"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
#: inc/settings/settings-subscribe-disabled.php:24
|
1469 |
+
#: inc/settings/settings-subscribe.php:100
|
1470 |
msgid "3rd Party Plugin"
|
1471 |
msgstr ""
|
1472 |
|
1474 |
msgid "Subscribe Form is not supported by selected Theme."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: inc/settings/settings-subscribe.php:94
|
1478 |
+
msgid "MailOptin Integration"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: inc/settings/settings-subscribe.php:127
|
1482 |
msgid "Subcribe Form Title"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: inc/settings/settings-subscribe.php:135
|
1486 |
msgid "3rd Party Plugin Shortcode"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: inc/settings/settings-subscribe.php:139
|
1490 |
msgid ""
|
1491 |
"You can find Shortode in your Contact Form Plugin settings. Should be "
|
1492 |
"something similar to code below: "
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: inc/settings/settings-subscribe.php:141
|
1496 |
msgid ""
|
1497 |
"If you use 3rd party shortcode for subscribe or contact form, you might need "
|
1498 |
"to apply custom CSS to style the form correctly."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: inc/settings/settings-subscribe.php:147
|
1502 |
msgid ""
|
1503 |
"CMP custom subscribe form will be used. It is guaranteed to always match "
|
1504 |
"selected Theme's style."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: inc/settings/settings-subscribe.php:149
|
1508 |
msgid ""
|
1509 |
"Subscribe Form message (can be GDPR or any custom message). Supports anchor "
|
1510 |
"HTML tags."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: inc/settings/settings-subscribe.php:153
|
1514 |
+
msgid "Select how to save your Subscribers"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: inc/settings/settings-subscribe.php:155
|
1518 |
msgid "CMP Custom Subscribe List"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: inc/settings/settings-subscribe.php:156
|
1522 |
msgid "MailChimp Integration"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: inc/settings/settings-subscribe.php:157
|
1526 |
+
msgid "MailPoet Integration"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: inc/settings/settings-subscribe.php:158
|
1530 |
+
msgid "Mailster Integration"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: inc/settings/settings-subscribe.php:163
|
1534 |
msgid ""
|
1535 |
"Emails will be stored in custom CMP list with CSV export support. If you "
|
1536 |
"ever delete CMP plugin then subscriber list will be purged as well."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: inc/settings/settings-subscribe.php:164
|
1540 |
msgid "Total Subscribers: "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: inc/settings/settings-subscribe.php:169
|
1544 |
msgid "MailChimp API key"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: inc/settings/settings-subscribe.php:170
|
1548 |
msgid "MailChimp API Key"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: inc/settings/settings-subscribe.php:172
|
1552 |
msgid "Retrieve Lists"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: inc/settings/settings-subscribe.php:173
|
1556 |
#, php-format
|
1557 |
msgid "You can find or create new API key in your %s."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: inc/settings/settings-subscribe.php:174
|
1561 |
+
msgid "Select MailChimp subscriber`s list."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: inc/settings/settings-subscribe.php:190
|
1565 |
msgid "Please insert MailChimp API key to retrieve Lists."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: inc/settings/settings-subscribe.php:196
|
1569 |
msgid "Enable MailChimp Double Opt In"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: inc/settings/settings-subscribe.php:212
|
1573 |
+
msgid "Select MailPoet subscriber`s list."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: inc/settings/settings-subscribe.php:222
|
1577 |
+
msgid ""
|
1578 |
+
"Could not retrieve MailPoet subcribers lists. Please make sure MailPoet is "
|
1579 |
+
"correctly installed and configured."
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: inc/settings/settings-subscribe.php:241
|
1583 |
+
msgid "Select Mailster subscriber`s list."
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: inc/settings/settings-subscribe.php:250
|
1587 |
+
msgid ""
|
1588 |
+
"Could not retrieve Mailster subribers lists. Please make sure Mailster is "
|
1589 |
+
"correctly installed and configured."
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: inc/settings/settings-subscribe.php:256
|
1593 |
+
msgid "Enable Mailster Double Opt In"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: inc/settings/settings-subscribe.php:260
|
1597 |
#, php-format
|
1598 |
msgid ""
|
1599 |
+
"* Did you know you can translate Subscribe form Labels and Placeholders to "
|
1600 |
+
"your language in %s Settings?"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: inc/settings/settings-subscribe.php:267
|
1604 |
+
msgid ""
|
1605 |
+
"MailOptin is a proven list building plugin that allows you to create popups "
|
1606 |
+
"and embedded forms so you can convert visitors to your coming soon site into "
|
1607 |
+
"subscribers. Supports all major email providers including. MailChimp, "
|
1608 |
+
"AWeber, Campaign Monitor, Constant Contact, Mailerlite."
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: inc/settings/settings-subscribe.php:276
|
1612 |
+
msgid "Select MailOptin Campaigns."
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: inc/settings/settings-subscribe.php:285
|
1616 |
+
msgid ""
|
1617 |
+
"No MailOptin Campaign was found. Please make there is at least one Optin "
|
1618 |
+
"Campaign created."
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: inc/settings/settings-subscribe.php:295
|
1622 |
+
msgid "Please activate MailOptin plugin first by clicking button below."
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: inc/settings/settings-subscribe.php:296
|
1626 |
+
msgid "Activate MailOptin plugin"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: inc/settings/settings-subscribe.php:306
|
1630 |
+
msgid "Please Install MailOptin plugin first by clicking button below."
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: inc/settings/settings-subscribe.php:307
|
1634 |
+
msgid "Install MailOptin plugin"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: inc/settings/settings-theme-selector.php:7
|
1647 |
msgstr ""
|
1648 |
|
1649 |
#: inc/settings/settings-theme-selector.php:58
|
1650 |
+
#: inc/settings/settings-theme-selector.php:116
|
1651 |
msgid "PREVIEW"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: inc/settings/settings-theme-selector.php:60
|
1655 |
+
#: inc/settings/settings-theme-selector.php:118
|
1656 |
msgid "DETAILS"
|
1657 |
msgstr ""
|
1658 |
|
1664 |
msgid "Premium Themes"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: inc/settings/settings-theme-selector.php:114
|
1668 |
#, php-format
|
1669 |
msgid "Get %s"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: inc/settings/settings-theme-selector.php:124
|
1673 |
msgid "freebie"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: inc/settings/settings-typography.php:7
|
1677 |
+
msgid "Customize Fonts"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: inc/settings/settings-typography.php:11
|
1681 |
+
msgid "Headings Font"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: inc/settings/settings-typography.php:14
|
1685 |
+
#: inc/settings/settings-typography.php:49
|
1686 |
+
msgid "Select Font Family from "
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: inc/settings/settings-typography.php:14
|
1690 |
+
msgid "Google Fonts"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: inc/settings/settings-typography.php:21
|
1694 |
+
#: inc/settings/settings-typography.php:56
|
1695 |
+
msgid "Variant"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: inc/settings/settings-typography.php:31
|
1699 |
+
#: inc/settings/settings-typography.php:63
|
1700 |
+
msgid "Font Size"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: inc/settings/settings-typography.php:37
|
1704 |
+
#: inc/settings/settings-typography.php:68
|
1705 |
+
msgid "Letter Spacing"
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: inc/settings/settings-typography.php:45
|
1709 |
+
msgid "Content Font"
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: inc/settings/settings-typography.php:73
|
1713 |
+
msgid "Line Height"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: inc/settings/settings-typography.php:77
|
1717 |
+
msgid "Fonts preview"
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
+
#: inc/settings/settings-typography.php:88
|
1721 |
+
msgid "Heading Animation"
|
1722 |
+
msgstr ""
|
1723 |
+
|
1724 |
+
#: inc/settings/settings-typography.php:90
|
1725 |
+
#: inc/settings/settings-typography.php:101
|
1726 |
+
msgid "No animation"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: inc/settings/settings-typography.php:91
|
1730 |
+
#: inc/settings/settings-typography.php:102
|
1731 |
+
msgid "Fade In Down"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: inc/settings/settings-typography.php:92
|
1735 |
+
#: inc/settings/settings-typography.php:103
|
1736 |
+
msgid "Fade In Up"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: inc/settings/settings-typography.php:93
|
1740 |
+
#: inc/settings/settings-typography.php:104
|
1741 |
+
msgid "Fade In Left"
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: inc/settings/settings-typography.php:94
|
1745 |
+
#: inc/settings/settings-typography.php:105
|
1746 |
+
msgid "Fade In Right"
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: inc/settings/settings-typography.php:99
|
1750 |
+
msgid "Content Animation"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: inc/settings/settings-typography.php:115
|
1754 |
+
msgid "Upload Custom Font"
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: inc/settings/settings-typography.php:118
|
1758 |
+
msgid ""
|
1759 |
+
"All font formats are supported - we recommend to upload woff/woff2 for "
|
1760 |
+
"modern browsers and eot for IE compatibility."
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: inc/settings/settings-typography.php:119
|
1764 |
+
msgid ""
|
1765 |
+
"Uploaded custom fonts will be available in dropdown lists for Heading and "
|
1766 |
+
"Content. Font Preview works only with woff/woff2 formats."
|
1767 |
+
msgstr ""
|
1768 |
+
|
1769 |
+
#: niteo-cmp.php:340 niteo-cmp.php:384 niteo-cmp.php:736
|
1770 |
msgid "CMP Settings"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: niteo-cmp.php:386
|
1774 |
msgid "CMP Basic Setup"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: niteo-cmp.php:388
|
1778 |
+
msgid "CMP Advanced Setup"
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: niteo-cmp.php:390
|
1782 |
msgid "CMP Subscribers"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: niteo-cmp.php:394
|
1786 |
msgid "Upload CMP Theme"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: niteo-cmp.php:396
|
1790 |
msgid "CMP Help"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: niteo-cmp.php:610
|
1794 |
msgid ""
|
1795 |
"Counter expired but it is set to make no action - you should login to your "
|
1796 |
"Wordpress Admin and adjust the expired timer or disable Coming Soon / "
|
1797 |
"Maintenance Mode."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: niteo-cmp.php:614
|
1801 |
msgid "Counter expired and Coming soon / Maintanance mode was disabled."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: niteo-cmp.php:618
|
1805 |
msgid ""
|
1806 |
"Counter expired and your Website is redirected to external URL per settings."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: niteo-cmp.php:792
|
1810 |
msgid "Maintenance Mode:"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: niteo-cmp.php:796
|
1814 |
msgid "Coming Soon Mode:"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: niteo-cmp.php:800
|
1818 |
msgid "Redirect Mode:"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: niteo-cmp.php:826
|
1822 |
+
msgid "CMP Basic Settings"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: niteo-cmp.php:833
|
1826 |
+
msgid "CMP Advanced Settings"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: niteo-cmp.php:841
|
1830 |
msgid "CMP Preview"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: niteo-cmp.php:974
|
1834 |
#, php-format
|
1835 |
msgid "There is a <b>recommended</b> update of <b>CMP Theme: %s</b> available:"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: niteo-cmp.php:974
|
1839 |
#, php-format
|
1840 |
msgid " click to update to %s version from NiteoThemes server now"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: niteo-cmp.php:1052
|
1844 |
msgid " theme was successfully installed!"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: niteo-cmp.php:1056
|
1848 |
msgid "There was an error unzipping the file!"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: niteo-cmp.php:1061 niteo-cmp.php:1144
|
1852 |
msgid "Error creating Theme subdirectory!"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: niteo-cmp.php:1074
|
1856 |
msgid "Unable to upload new Theme file ."
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: niteo-cmp.php:1074
|
1860 |
msgid ""
|
1861 |
" file extension is not supported. Please upload ZIP file containing CMP "
|
1862 |
"Theme."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: niteo-cmp.php:1130
|
1866 |
msgid "Theme has been updated to latest version!"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: niteo-cmp.php:1135
|
1870 |
msgid "There was an error unzipping the file due to error: "
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: niteo-cmp.php:1152
|
1874 |
msgid "Error during updating Theme files:"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: niteo-cmp.php:1160
|
1878 |
msgid "General Error during updating Theme files."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: niteo-cmp.php:1434 niteo-cmp.php:1477
|
1882 |
+
msgid "Something went wrong please try again later."
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: niteo-cmp.php:1543
|
1886 |
msgid "Date"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: niteo-cmp.php:1545
|
1890 |
+
msgid "Firstname"
|
1891 |
+
msgstr ""
|
1892 |
+
|
1893 |
+
#: niteo-cmp.php:1546
|
1894 |
+
msgid "Lastname"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: niteo-cmp.php:1547
|
1898 |
+
msgid "Fullname"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: niteo-cmp.php:1609
|
1902 |
msgid "CMP Settings Saved"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: niteo-cmp.php:2550
|
1906 |
+
msgid "All done!"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: niteo-cmp.php:2590
|
1910 |
+
msgid "JSON file is valid but it does not contain CMP Settings."
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: niteo-cmp.php:2596
|
1914 |
+
msgid "Please insert valid JSON file and try again."
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: niteo-cmp.php:2670
|
1918 |
+
msgid "Maintenance"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: niteo-cmp.php:2673
|
1922 |
+
msgid "Coming Soon"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: niteo-cmp.php:2676
|
1926 |
+
msgid "Redirect"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
#: themes/construct/construct-settings.php:6
|
1930 |
#: themes/countdown/countdown-settings.php:13
|
1931 |
#: themes/hardwork/hardwork-settings.php:11
|
niteo-cmp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: CMP - Coming Soon & Maintenance Plugin
|
4 |
Plugin URI: https://wordpress.org/plugins/cmp-coming-soon-maintenance/
|
5 |
Description: Display customizable landing page for Coming Soon, Maintenance & Under Construction page.
|
6 |
-
Version: 3.6.
|
7 |
Author: NiteoThemes
|
8 |
Author URI: https://www.niteothemes.com
|
9 |
Text Domain: cmp-coming-soon-maintenance
|
@@ -64,7 +64,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
64 |
|
65 |
private function constants() {
|
66 |
// define constants
|
67 |
-
$this->define( 'CMP_VERSION', '3.6.
|
68 |
$this->define( 'CMP_DEBUG', FALSE );
|
69 |
$this->define( 'CMP_AUTHOR', 'NiteoThemes' );
|
70 |
$this->define( 'CMP_AUTHOR_HOMEPAGE', 'https://niteothemes.com' );
|
@@ -78,16 +78,15 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
78 |
* Inits and hooks
|
79 |
*/
|
80 |
public function init() {
|
81 |
-
add_action( '
|
82 |
-
add_action( 'template_redirect', array( $this, 'cmp_displayPage' ), 0 );
|
83 |
add_action( 'login_init', array( $this, 'cmp_admin_override' ) );
|
84 |
-
add_action( 'wp_before_admin_bar_render', array( $this, 'cmp_admin_bar' ) );
|
85 |
-
add_action( 'admin_menu', array( $this, 'cmp_adminMenu' ), 10 );
|
86 |
-
add_action( 'admin_init', array( $this, 'cmp_adminInit' ) ) ;
|
87 |
add_action( 'admin_init', array( $this, 'cmp_admin_override' ) );
|
|
|
88 |
add_action( 'admin_init', array( $this, 'cmp_update_process' ), 0 );
|
|
|
|
|
|
|
89 |
add_action( 'admin_enqueue_scripts', array( $this,'cmp_add_topbar_scripts' ) );
|
90 |
-
add_action( 'wp_enqueue_scripts', array( $this,'cmp_add_topbar_scripts' ) );
|
91 |
add_action( 'admin_enqueue_scripts', array( $this,'cmp_add_admin_style' ) );
|
92 |
add_action( 'wp_ajax_cmp_get_post_detail', array( $this, 'cmp_get_post_detail' ) );
|
93 |
add_action( 'wp_ajax_nopriv_cmp_get_post_detail', array( $this, 'cmp_get_post_detail' ) );
|
@@ -104,7 +103,8 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
104 |
add_action( 'wp_ajax_cmp_ajax_upload_font', array( $this, 'cmp_ajax_upload_font' ) );
|
105 |
add_action( 'wp_ajax_cmp_ajax_export_settings', array( $this, 'cmp_ajax_export_settings' ) );
|
106 |
add_action( 'wp_ajax_cmp_ajax_import_settings', array( $this, 'cmp_ajax_import_settings' ) );
|
107 |
-
|
|
|
108 |
add_filter('upload_mimes', array( $this, 'cmp_allow_font_mimes' ));
|
109 |
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array( $this,'add_action_links' ) );
|
110 |
|
@@ -337,15 +337,17 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
337 |
|
338 |
wp_enqueue_style( 'cmp-menu-logo' );
|
339 |
|
|
|
|
|
340 |
$cmp_pages = array(
|
341 |
'toplevel_page_cmp-settings',
|
342 |
-
'
|
343 |
-
'
|
344 |
-
'
|
345 |
-
'
|
346 |
-
'
|
347 |
-
'
|
348 |
-
'
|
349 |
);
|
350 |
|
351 |
if ( in_array( $hook, $cmp_pages ) ) {
|
@@ -379,19 +381,19 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
379 |
*/
|
380 |
public function cmp_adminMenu() {
|
381 |
/* Register our plugin page */
|
382 |
-
$page = add_menu_page('CMP Settings', __('CMP Settings', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-settings', array($this, 'cmp_settings_page'), plugins_url('/img/cmp.png', __FILE__));
|
383 |
|
384 |
-
add_submenu_page('cmp-settings', 'Basic Setup', __('CMP Basic Setup', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-settings' );
|
385 |
|
386 |
-
add_submenu_page('cmp-settings', 'Advanced Setup', 'CMP Advanced Setup', 'manage_options', 'cmp-advanced', array($this, 'cmp_advanced_page') );
|
387 |
|
388 |
-
add_submenu_page('cmp-settings', 'Subscribers', __('CMP Subscribers', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-subscribers', array($this, 'cmp_subs_page') );
|
389 |
|
390 |
-
add_submenu_page('cmp-settings', 'Translation', __('CMP Translation', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-translate', array($this, 'cmp_translate_page') );
|
391 |
|
392 |
-
add_submenu_page('cmp-settings', 'Upload
|
393 |
|
394 |
-
add_submenu_page('cmp-settings', 'Help', __('CMP Help', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-help', array($this, 'cmp_help_page') );
|
395 |
|
396 |
/* Using registered $page handle to hook script load */
|
397 |
add_action('admin_print_scripts-'.$page, array($this, 'cmp_admin_scripts'));
|
@@ -424,8 +426,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
424 |
* Render CMP Settings Page
|
425 |
*/
|
426 |
public function cmp_settings_page() {
|
427 |
-
|
428 |
-
// check for selected theme update, not sure where else this to put
|
429 |
$this->cmp_check_update( $this->cmp_selectedTheme() );
|
430 |
require_once ('cmp-settings.php');
|
431 |
}
|
@@ -513,66 +514,50 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
513 |
*
|
514 |
* @access public
|
515 |
*/
|
516 |
-
public function cmp_admin_override(){
|
517 |
-
|
518 |
-
|
519 |
-
if ( current_user_can('administrator') || $this->cmp_active() === '0' ) {
|
520 |
return;
|
521 |
}
|
522 |
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
if ( !$this->cmp_roles_filter() ) {
|
527 |
-
wp_logout();
|
528 |
-
wp_redirect( get_bloginfo('url') );
|
529 |
-
exit();
|
530 |
-
}
|
531 |
-
}
|
532 |
}
|
533 |
|
534 |
// function to display CMP landing page
|
535 |
public function cmp_displayPage() {
|
|
|
|
|
536 |
|
537 |
-
// check for mailpoptin ajax
|
538 |
-
if ( isset($_GET['mailoptin-ajax']) ) {
|
539 |
-
|
540 |
-
$campaign_id = get_option('niteoCS_mailoptin_selected');
|
541 |
-
$campaign = MailOptin\Core\Repositories\OptinCampaignsRepository::get_optin_campaign_by_id($campaign_id);
|
542 |
-
|
543 |
-
if ( isset($_POST['optin_data']) && $_POST['optin_data']['optin_uuid'] == $campaign['uuid'] ) {
|
544 |
-
return true;
|
545 |
-
}
|
546 |
-
|
547 |
-
}
|
548 |
// register html class for rendering of HTML elements in Themes
|
549 |
$html = new CMP_Coming_Soon_and_Maintenance_Render_HTML();
|
550 |
|
551 |
// check if preview is set
|
552 |
if ( isset($_GET['cmp_preview']) && $_GET['cmp_preview'] == 'true' ) {
|
553 |
|
554 |
-
|
555 |
-
if ( isset($_GET['selector']) && $_GET['selector'] == 'true' ) {
|
556 |
-
if ( file_exists( CMP_PREMIUM_THEMES_DIR .'preview-selector.php' ) ) {
|
557 |
-
require_once ( CMP_PREMIUM_THEMES_DIR . 'preview-selector.php' );
|
558 |
-
die();
|
559 |
-
}
|
560 |
-
}
|
561 |
-
|
562 |
-
// preview specific CMP theme
|
563 |
-
if ( (isset( $_GET['theme'] ) && !empty( $_GET['theme'] )) || (isset( $_GET['cmp_theme'] ) && !empty( $_GET['cmp_theme'] )) ) {
|
564 |
-
$theme_preview = ( isset( $_GET['theme'] ) ) ? esc_attr($_GET['theme']) : esc_attr($_GET['cmp_theme']);
|
565 |
-
|
566 |
-
if ( file_exists( $this->cmp_theme_dir( $theme_preview ).$theme_preview.'/'.$theme_preview.'-theme.php') ) {
|
567 |
-
require_once ( $this->cmp_theme_dir( $theme_preview) .$theme_preview.'/'.$theme_preview.'-theme.php' );
|
568 |
-
die();
|
569 |
-
}
|
570 |
-
|
571 |
-
}
|
572 |
|
573 |
// finally render theme preview cmp_preview=true
|
574 |
-
if ( file_exists( $this->cmp_theme_dir( $
|
575 |
-
require_once ( $this->cmp_theme_dir( $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
die();
|
577 |
}
|
578 |
}
|
@@ -592,105 +577,99 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
592 |
return;
|
593 |
}
|
594 |
|
595 |
-
//
|
596 |
-
if (
|
597 |
|
598 |
-
$
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
}
|
|
|
604 |
}
|
605 |
|
606 |
-
//
|
607 |
-
if ( $this->
|
|
|
|
|
|
|
608 |
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
// if themes with countdown timer
|
613 |
-
if ( $this->cmp_theme_supports($this->cmp_selectedTheme(), 'counter') ) {
|
614 |
-
|
615 |
-
// if counter is enabled - default yes
|
616 |
-
if ( get_option('niteoCS_counter', '1') == '1' ) {
|
617 |
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
default:
|
642 |
-
break;
|
643 |
-
}
|
644 |
-
|
645 |
-
$to = get_option('niteoCS_countdown_email_address', get_option( 'admin_email' ));
|
646 |
-
$subject = 'Countdown timer just expired on your Coming Soon Page - ' . get_site_url();
|
647 |
-
$body = $message . ' This is auto generated message from CMP - Coming Soon & Maintenance Plugin. ';
|
648 |
-
$headers = array('Content-Type: text/plain; charset=UTF-8');
|
649 |
-
// send email
|
650 |
-
wp_mail( $to, $subject, $body, $headers );
|
651 |
-
// set email transient
|
652 |
-
set_transient( 'cmp_counter_email', TRUE, 0 );
|
653 |
|
654 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
-
|
657 |
-
if ( $action == 'disable-cmp' ) {
|
658 |
-
update_option('niteoCS_status', '0');
|
659 |
-
}
|
660 |
-
|
661 |
-
// if action set to redirect
|
662 |
-
if ( $action == 'redirect' ) {
|
663 |
-
$redirect_url = esc_url(get_option('niteoCS_countdown_redirect'));
|
664 |
-
header('Location: '.$redirect_url);
|
665 |
-
die();
|
666 |
-
}
|
667 |
|
668 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
}
|
|
|
670 |
}
|
671 |
}
|
|
|
|
|
672 |
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
}
|
691 |
-
}
|
692 |
}
|
693 |
|
|
|
694 |
}
|
695 |
|
696 |
// function to toggle CMP activation for admin menu icon
|
@@ -726,7 +705,6 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
726 |
|
727 |
// return selected theme, defaults to hardwork
|
728 |
public function cmp_selectedTheme() {
|
729 |
-
// var_dump(get_option('niteoCS_theme', 'hardwork'));
|
730 |
return get_option('niteoCS_theme', 'hardwork');
|
731 |
}
|
732 |
|
@@ -752,22 +730,13 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
752 |
}
|
753 |
}
|
754 |
|
755 |
-
// older version of cmp_themeURL public function - migration after 1.9 version.
|
756 |
-
//can be deleted in future...
|
757 |
-
public function cmp_themeDirPath() {
|
758 |
-
if ( $this->niteo_in_array_r( $this->cmp_selectedTheme(), $this->cmp_premium_themes(), true ) ) {
|
759 |
-
return plugins_url( '/cmp-premium-themes/');
|
760 |
-
|
761 |
-
} else {
|
762 |
-
return plugins_url( '/themes/', __FILE__ );
|
763 |
-
}
|
764 |
-
}
|
765 |
-
|
766 |
// display admin topbar notice
|
767 |
public function cmp_admin_bar() {
|
768 |
|
|
|
|
|
769 |
if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
|
770 |
-
if ( current_user_can('publish_pages') && function_exists('get_current_screen') && is_admin() && get_current_screen()->id == '
|
771 |
// check POST if user wants to enable or disable the topbar from settings
|
772 |
if ( isset( $_POST['niteoCS_topbar_icon'] ) && is_numeric( $_POST['niteoCS_topbar_icon'] ) ) {
|
773 |
update_option('niteoCS_topbar_icon', sanitize_text_field( $_POST['niteoCS_topbar_icon'] ));
|
@@ -1927,17 +1896,24 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
1927 |
}
|
1928 |
}
|
1929 |
|
1930 |
-
// returns true if current page
|
1931 |
// since 2.2
|
1932 |
public function cmp_page_filter() {
|
1933 |
global $wp;
|
1934 |
-
|
|
|
1935 |
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1939 |
}
|
1940 |
-
|
1941 |
|
1942 |
// get current page IDs
|
1943 |
if ( is_front_page() && is_home() ) {
|
@@ -1964,7 +1940,6 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
1964 |
// whitelist
|
1965 |
case '1':
|
1966 |
$whitelist = json_decode( get_option('niteoCS_page_whitelist', '[]'), true );
|
1967 |
-
|
1968 |
if ( !empty( $whitelist ) && in_array( $page_id, $whitelist ) ) {
|
1969 |
return true;
|
1970 |
}
|
@@ -1973,6 +1948,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
1973 |
|
1974 |
if ( !empty( $page_wl_custom ) ) {
|
1975 |
foreach ($page_wl_custom as $url ) {
|
|
|
1976 |
if ( fnmatch( $url, $current_url ) ) {
|
1977 |
return true;
|
1978 |
}
|
@@ -1985,6 +1961,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
|
|
1985 |
// blacklist
|
1986 |
case '2':
|
1987 |
$blacklist = json_decode( get_option('niteoCS_page_blacklist', '[]'), true );
|
|
|
1988 |
if ( !empty( $blacklist ) && in_array( $page_id, $blacklist ) ) {
|
1989 |
return false;
|
1990 |
}
|
3 |
Plugin Name: CMP - Coming Soon & Maintenance Plugin
|
4 |
Plugin URI: https://wordpress.org/plugins/cmp-coming-soon-maintenance/
|
5 |
Description: Display customizable landing page for Coming Soon, Maintenance & Under Construction page.
|
6 |
+
Version: 3.6.9
|
7 |
Author: NiteoThemes
|
8 |
Author URI: https://www.niteothemes.com
|
9 |
Text Domain: cmp-coming-soon-maintenance
|
64 |
|
65 |
private function constants() {
|
66 |
// define constants
|
67 |
+
$this->define( 'CMP_VERSION', '3.6.9' );
|
68 |
$this->define( 'CMP_DEBUG', FALSE );
|
69 |
$this->define( 'CMP_AUTHOR', 'NiteoThemes' );
|
70 |
$this->define( 'CMP_AUTHOR_HOMEPAGE', 'https://niteothemes.com' );
|
78 |
* Inits and hooks
|
79 |
*/
|
80 |
public function init() {
|
81 |
+
add_action( 'template_redirect', array( $this, 'cmp_displayPage' ), 1 );
|
|
|
82 |
add_action( 'login_init', array( $this, 'cmp_admin_override' ) );
|
|
|
|
|
|
|
83 |
add_action( 'admin_init', array( $this, 'cmp_admin_override' ) );
|
84 |
+
add_action( 'admin_init', array( $this, 'cmp_adminInit' ) ) ;
|
85 |
add_action( 'admin_init', array( $this, 'cmp_update_process' ), 0 );
|
86 |
+
add_action( 'admin_menu', array( $this, 'cmp_adminMenu' ), 10 );
|
87 |
+
add_action( 'admin_notices', array( $this, 'cmp_admin_notice' ) );
|
88 |
+
add_action( 'wp_before_admin_bar_render', array( $this, 'cmp_admin_bar' ) );
|
89 |
add_action( 'admin_enqueue_scripts', array( $this,'cmp_add_topbar_scripts' ) );
|
|
|
90 |
add_action( 'admin_enqueue_scripts', array( $this,'cmp_add_admin_style' ) );
|
91 |
add_action( 'wp_ajax_cmp_get_post_detail', array( $this, 'cmp_get_post_detail' ) );
|
92 |
add_action( 'wp_ajax_nopriv_cmp_get_post_detail', array( $this, 'cmp_get_post_detail' ) );
|
103 |
add_action( 'wp_ajax_cmp_ajax_upload_font', array( $this, 'cmp_ajax_upload_font' ) );
|
104 |
add_action( 'wp_ajax_cmp_ajax_export_settings', array( $this, 'cmp_ajax_export_settings' ) );
|
105 |
add_action( 'wp_ajax_cmp_ajax_import_settings', array( $this, 'cmp_ajax_import_settings' ) );
|
106 |
+
add_action( 'wp_enqueue_scripts', array( $this,'cmp_add_topbar_scripts' ) );
|
107 |
+
|
108 |
add_filter('upload_mimes', array( $this, 'cmp_allow_font_mimes' ));
|
109 |
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array( $this,'add_action_links' ) );
|
110 |
|
337 |
|
338 |
wp_enqueue_style( 'cmp-menu-logo' );
|
339 |
|
340 |
+
$prefix = sanitize_title( __( 'CMP Settings', 'cmp-coming-soon-maintenance' ) );
|
341 |
+
|
342 |
$cmp_pages = array(
|
343 |
'toplevel_page_cmp-settings',
|
344 |
+
$prefix.'_page_cmp-advanced',
|
345 |
+
$prefix.'_page_cmp-subscribers',
|
346 |
+
$prefix.'_page_cmp-translate',
|
347 |
+
$prefix.'_page_cmp-upload-theme',
|
348 |
+
$prefix.'_page_cmp-help',
|
349 |
+
$prefix.'_page_cmp-themes-manager',
|
350 |
+
$prefix.'_page_cmp-divi-addon',
|
351 |
);
|
352 |
|
353 |
if ( in_array( $hook, $cmp_pages ) ) {
|
381 |
*/
|
382 |
public function cmp_adminMenu() {
|
383 |
/* Register our plugin page */
|
384 |
+
$page = add_menu_page(__('CMP Settings', 'cmp-coming-soon-maintenance'), __('CMP Settings', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-settings', array($this, 'cmp_settings_page'), plugins_url('/img/cmp.png', __FILE__));
|
385 |
|
386 |
+
add_submenu_page('cmp-settings', __('CMP Basic Setup', 'cmp-coming-soon-maintenance'), __('CMP Basic Setup', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-settings' );
|
387 |
|
388 |
+
add_submenu_page('cmp-settings', __('CMP Advanced Setup', 'cmp-coming-soon-maintenance'), __('CMP Advanced Setup', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-advanced', array($this, 'cmp_advanced_page') );
|
389 |
|
390 |
+
add_submenu_page('cmp-settings', __('CMP Subscribers', 'cmp-coming-soon-maintenance'), __('CMP Subscribers', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-subscribers', array($this, 'cmp_subs_page') );
|
391 |
|
392 |
+
add_submenu_page('cmp-settings', __('CMP Translation', 'cmp-coming-soon-maintenance'), __('CMP Translation', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-translate', array($this, 'cmp_translate_page') );
|
393 |
|
394 |
+
add_submenu_page('cmp-settings', __('Upload CMP Theme', 'cmp-coming-soon-maintenance'), __('Upload CMP Theme', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-upload-theme', array($this, 'cmp_upload_page') );
|
395 |
|
396 |
+
add_submenu_page('cmp-settings', __('CMP Help', 'cmp-coming-soon-maintenance'), __('CMP Help', 'cmp-coming-soon-maintenance'), 'manage_options', 'cmp-help', array($this, 'cmp_help_page') );
|
397 |
|
398 |
/* Using registered $page handle to hook script load */
|
399 |
add_action('admin_print_scripts-'.$page, array($this, 'cmp_admin_scripts'));
|
426 |
* Render CMP Settings Page
|
427 |
*/
|
428 |
public function cmp_settings_page() {
|
429 |
+
|
|
|
430 |
$this->cmp_check_update( $this->cmp_selectedTheme() );
|
431 |
require_once ('cmp-settings.php');
|
432 |
}
|
514 |
*
|
515 |
* @access public
|
516 |
*/
|
517 |
+
public function cmp_admin_override() {
|
518 |
+
// if admin is logged in or CMP is disabled, or not on page filter
|
519 |
+
if ( $this->cmp_active() === '0' || $this->cmp_roles_filter() || !$this->cmp_page_filter() ) {
|
|
|
520 |
return;
|
521 |
}
|
522 |
|
523 |
+
wp_logout();
|
524 |
+
wp_redirect( get_bloginfo('url') );
|
525 |
+
exit();
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
}
|
527 |
|
528 |
// function to display CMP landing page
|
529 |
public function cmp_displayPage() {
|
530 |
+
|
531 |
+
$theme = $this->cmp_selectedTheme();
|
532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
533 |
// register html class for rendering of HTML elements in Themes
|
534 |
$html = new CMP_Coming_Soon_and_Maintenance_Render_HTML();
|
535 |
|
536 |
// check if preview is set
|
537 |
if ( isset($_GET['cmp_preview']) && $_GET['cmp_preview'] == 'true' ) {
|
538 |
|
539 |
+
$theme = isset( $_GET['cmp_theme'] ) ? $_GET['cmp_theme'] : $theme;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
|
541 |
// finally render theme preview cmp_preview=true
|
542 |
+
if ( file_exists( $this->cmp_theme_dir( $theme ).$theme.'/'.$theme.'-theme.php') ) {
|
543 |
+
require_once ( $this->cmp_theme_dir( $theme ).$theme.'/'.$theme.'-theme.php' );
|
544 |
+
die();
|
545 |
+
}
|
546 |
+
}
|
547 |
+
|
548 |
+
if ( $this->cmp_active() === '0' || $this->cmp_roles_filter() || !$this->cmp_page_filter() ) {
|
549 |
+
return;
|
550 |
+
}
|
551 |
+
|
552 |
+
|
553 |
+
|
554 |
+
// if CMP in redirect mode with 0 timeout, die early with redirect
|
555 |
+
if ( $this->cmp_mode() == 3 && get_option('niteoCS_redirect_time') == 0 ) {
|
556 |
+
|
557 |
+
$redirect_url = get_option('niteoCS_URL_redirect');
|
558 |
+
// redirect to URL
|
559 |
+
if ( $redirect_url != '' ) {
|
560 |
+
header('Location: '.esc_url( $redirect_url ));
|
561 |
die();
|
562 |
}
|
563 |
}
|
577 |
return;
|
578 |
}
|
579 |
|
580 |
+
// check for mailpoptin ajax
|
581 |
+
if ( isset($_GET['mailoptin-ajax']) ) {
|
582 |
|
583 |
+
$campaign_id = get_option('niteoCS_mailoptin_selected');
|
584 |
+
$campaign = MailOptin\Core\Repositories\OptinCampaignsRepository::get_optin_campaign_by_id($campaign_id);
|
585 |
+
|
586 |
+
if ( isset($_POST['optin_data']) && $_POST['optin_data']['optin_uuid'] == $campaign['uuid'] ) {
|
587 |
+
return;
|
588 |
}
|
589 |
+
|
590 |
}
|
591 |
|
592 |
+
// if themes with countdown timer
|
593 |
+
if ( $this->cmp_theme_supports($theme, 'counter') ) {
|
594 |
+
|
595 |
+
// if counter is enabled - default yes
|
596 |
+
if ( get_option('niteoCS_counter', '1') == '1' ) {
|
597 |
|
598 |
+
// if countdown date is set - default 24 hours
|
599 |
+
if ( get_option('niteoCS_counter_date' ) && get_option('niteoCS_counter_date' ) != '' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
|
601 |
+
// if timer < timestamp do pre-set action
|
602 |
+
if ( get_option('niteoCS_counter_date' ) < time() ) {
|
603 |
+
|
604 |
+
$action = get_option('niteoCS_countdown_action', 'no-action');
|
605 |
+
|
606 |
+
// send notification email if email transient is not set
|
607 |
+
if ( get_option('niteoCS_countdown_notification', '1') == '1' && get_transient('cmp_counter_email') !== TRUE ) {
|
608 |
+
switch ( $action ) {
|
609 |
+
case 'no-action':
|
610 |
+
$message = __('Counter expired but it is set to make no action - you should login to your Wordpress Admin and adjust the expired timer or disable Coming Soon / Maintenance Mode.', 'cmp-coming-soon-maintenance');
|
611 |
+
break;
|
612 |
+
|
613 |
+
case 'disable-cmp':
|
614 |
+
$message = __('Counter expired and Coming soon / Maintanance mode was disabled.', 'cmp-coming-soon-maintenance');
|
615 |
+
break;
|
616 |
+
|
617 |
+
case 'redirect':
|
618 |
+
$message = __('Counter expired and your Website is redirected to external URL per settings.', 'cmp-coming-soon-maintenance');
|
619 |
+
break;
|
620 |
+
|
621 |
+
default:
|
622 |
+
break;
|
623 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
|
625 |
+
$to = get_option('niteoCS_countdown_email_address', get_option( 'admin_email' ));
|
626 |
+
$subject = 'Countdown timer just expired on your Coming Soon Page - ' . get_site_url();
|
627 |
+
$body = $message . ' This is auto generated message from CMP - Coming Soon & Maintenance Plugin. ';
|
628 |
+
$headers = array('Content-Type: text/plain; charset=UTF-8');
|
629 |
+
// send email
|
630 |
+
wp_mail( $to, $subject, $body, $headers );
|
631 |
+
// set email transient
|
632 |
+
set_transient( 'cmp_counter_email', TRUE, 0 );
|
633 |
|
634 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
|
636 |
+
// if action set to disable cmp
|
637 |
+
if ( $action == 'disable-cmp' ) {
|
638 |
+
update_option('niteoCS_status', '0');
|
639 |
+
}
|
640 |
+
|
641 |
+
// if action set to redirect
|
642 |
+
if ( $action == 'redirect' ) {
|
643 |
+
$redirect_url = esc_url(get_option('niteoCS_countdown_redirect'));
|
644 |
+
header('Location: '.$redirect_url);
|
645 |
+
die();
|
646 |
}
|
647 |
+
|
648 |
}
|
649 |
}
|
650 |
+
}
|
651 |
+
}
|
652 |
|
653 |
+
// if maintanance mode send correct 503 headers
|
654 |
+
if ( $this->cmp_mode() == '1' ) {
|
655 |
+
header('HTTP/1.1 503 Service Temporarily Unavailable');
|
656 |
+
header('Status: 503 Service Temporarily Unavailable');
|
657 |
+
header('Retry-After: 86400'); // retry in a day
|
658 |
+
}
|
659 |
|
660 |
+
// send no-cache headers if set in Settings
|
661 |
+
if ( get_option('niteoCS_seo_nocache', '0') == '1' ){
|
662 |
+
nocache_headers();
|
663 |
+
header('Cache-Control: no-cache; private');
|
664 |
+
}
|
665 |
|
666 |
+
// render selected CMP theme
|
667 |
+
if ( file_exists( $this->cmp_theme_dir( $theme ).$theme.'/'.$theme.'-theme.php') ) {
|
668 |
+
require_once ( $this->cmp_theme_dir( $theme ).$theme.'/'.$theme.'-theme.php' );
|
669 |
+
die();
|
|
|
|
|
670 |
}
|
671 |
|
672 |
+
|
673 |
}
|
674 |
|
675 |
// function to toggle CMP activation for admin menu icon
|
705 |
|
706 |
// return selected theme, defaults to hardwork
|
707 |
public function cmp_selectedTheme() {
|
|
|
708 |
return get_option('niteoCS_theme', 'hardwork');
|
709 |
}
|
710 |
|
730 |
}
|
731 |
}
|
732 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
// display admin topbar notice
|
734 |
public function cmp_admin_bar() {
|
735 |
|
736 |
+
$prefix = sanitize_title( __( 'CMP Settings', 'cmp-coming-soon-maintenance' ) );
|
737 |
+
|
738 |
if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
|
739 |
+
if ( current_user_can('publish_pages') && function_exists('get_current_screen') && is_admin() && get_current_screen()->id == $prefix.'_page_cmp-advanced' && wp_verify_nonce( $_POST['save_options_field'], 'save_options' ) ) {
|
740 |
// check POST if user wants to enable or disable the topbar from settings
|
741 |
if ( isset( $_POST['niteoCS_topbar_icon'] ) && is_numeric( $_POST['niteoCS_topbar_icon'] ) ) {
|
742 |
update_option('niteoCS_topbar_icon', sanitize_text_field( $_POST['niteoCS_topbar_icon'] ));
|
1896 |
}
|
1897 |
}
|
1898 |
|
1899 |
+
// returns true if current page should display CMP page
|
1900 |
// since 2.2
|
1901 |
public function cmp_page_filter() {
|
1902 |
global $wp;
|
1903 |
+
|
1904 |
+
$current_url = trailingslashit( (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]" );
|
1905 |
|
1906 |
+
$custom_login_url = get_option('niteoCS_custom_login_url', '');
|
1907 |
+
|
1908 |
+
// return early if login page
|
1909 |
+
if ( fnmatch( home_url('wp-login.php*'), $current_url ) ) {
|
1910 |
+
return false;
|
1911 |
+
}
|
1912 |
+
|
1913 |
+
// return early if custom login page
|
1914 |
+
if ( $custom_login_url !== '' && fnmatch('*'.$custom_login_url.'*', $current_url) ) {
|
1915 |
+
return false;
|
1916 |
}
|
|
|
1917 |
|
1918 |
// get current page IDs
|
1919 |
if ( is_front_page() && is_home() ) {
|
1940 |
// whitelist
|
1941 |
case '1':
|
1942 |
$whitelist = json_decode( get_option('niteoCS_page_whitelist', '[]'), true );
|
|
|
1943 |
if ( !empty( $whitelist ) && in_array( $page_id, $whitelist ) ) {
|
1944 |
return true;
|
1945 |
}
|
1948 |
|
1949 |
if ( !empty( $page_wl_custom ) ) {
|
1950 |
foreach ($page_wl_custom as $url ) {
|
1951 |
+
|
1952 |
if ( fnmatch( $url, $current_url ) ) {
|
1953 |
return true;
|
1954 |
}
|
1961 |
// blacklist
|
1962 |
case '2':
|
1963 |
$blacklist = json_decode( get_option('niteoCS_page_blacklist', '[]'), true );
|
1964 |
+
|
1965 |
if ( !empty( $blacklist ) && in_array( $page_id, $blacklist ) ) {
|
1966 |
return false;
|
1967 |
}
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: coming soon, landing page, launch page, maintenance mode, under constructi
|
|
5 |
Requires at least: 3.0
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.3
|
8 |
-
Stable tag: 3.6.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -23,24 +23,25 @@ Packed with functions like Whitelist/Blacklist to enable CMP only on specific pa
|
|
23 |
|
24 |
<h3>Features</h3>
|
25 |
<ul>
|
26 |
-
<li>You can choose from 3 bundled
|
27 |
<li>Our Plugin works with any WordPress Theme and on all desktop or mobile devices (yes it is 100% responsive).</li>
|
28 |
-
<li>
|
29 |
-
<li>Fullscreen background media
|
30 |
-
<li>You can search from more than million of free beautiful professional photos from most popular <a href="http://unsplash.com" target="_blank">Unsplash source</a>
|
31 |
<li>You can set custom Logo, choose from 100 most popular Google fonts and customize Font Weight, Letter Spacing and Line Height.</li>
|
32 |
<li>Display beautiful icons for any Social network on your website.</li>
|
33 |
-
<li>Background 3D effects on
|
34 |
<li>CMP Landing page can be enabled on specific pages only (Blacklist and Whitelist) if required.</li>
|
35 |
<li>Customizable WordPress roles to bypass CMP and display your full website.</li>
|
36 |
-
<li>
|
37 |
-
<li>
|
38 |
-
<li>
|
|
|
39 |
<li>Set response code to search engines (200 OK, 503 Maintenance).</li>
|
40 |
<li>Redirect Mode to redirect your website to another website.</li>
|
41 |
-
<li>Insert Google Analytics Code or any 3rd party tracking code
|
42 |
-
<li>
|
43 |
-
<li>
|
44 |
</ul>
|
45 |
|
46 |
<h3>Compatibles Plugins</h3>
|
@@ -147,6 +148,13 @@ https://www.youtube.com/watch?v=uxuJfHzwdtE
|
|
147 |
<p>Nothing is better than a good feedback! Please go to <a href="https://wordpress.org/support/plugin/cmp-coming-soon-maintenance/reviews/">Plugin reviews</a> and rate it! Alternatively you can click on a Donate button too!:)</p>
|
148 |
|
149 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
<h4>CMP 3.6.8 - 16-Dec-19</h4>
|
151 |
<ul>
|
152 |
<li>To Celebrate Winter Time we added a beautiful Snowing Effect!</li>
|
5 |
Requires at least: 3.0
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.3
|
8 |
+
Stable tag: 3.6.9
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
23 |
|
24 |
<h3>Features</h3>
|
25 |
<ul>
|
26 |
+
<li>You can choose from 3 bundled free themes and many more downloadable - freebies and premium with completely different design. Almost very month new CMP Theme available!</li>
|
27 |
<li>Our Plugin works with any WordPress Theme and on all desktop or mobile devices (yes it is 100% responsive).</li>
|
28 |
+
<li>Most of the CMP themes support custom Subscribe Form to store emails in local database, MailChimp, MailPoet and Mailster.</li>
|
29 |
+
<li>Fullscreen background media including Videos (YouTube, custom video file), Images or Image Slider (Unsplash library, custom images), Patterns, Color Gradients or Solid Colors.</li>
|
30 |
+
<li>You can search from more than million of free beautiful professional photos from most popular <a href="http://unsplash.com" target="_blank">Unsplash source</a> via our built-in search API (random images, search by keyword, category, etc).</li>
|
31 |
<li>You can set custom Logo, choose from 100 most popular Google fonts and customize Font Weight, Letter Spacing and Line Height.</li>
|
32 |
<li>Display beautiful icons for any Social network on your website.</li>
|
33 |
+
<li>Background 3D effects on all Premium Themes.</li>
|
34 |
<li>CMP Landing page can be enabled on specific pages only (Blacklist and Whitelist) if required.</li>
|
35 |
<li>Customizable WordPress roles to bypass CMP and display your full website.</li>
|
36 |
+
<li>Bypass URL to preview a website for your customers.</li>
|
37 |
+
<li>Compatible with custom WordPress login URL.</li>
|
38 |
+
<li>Configurable Countdown Action - disable Coming soon / Maintenance mode or redirect to another website.</li>
|
39 |
+
<li>Configurable SEO meta tags for search engines, editable favicon, Search Engine Visibility and No-cache Headers.</li>
|
40 |
<li>Set response code to search engines (200 OK, 503 Maintenance).</li>
|
41 |
<li>Redirect Mode to redirect your website to another website.</li>
|
42 |
+
<li>Insert Google Analytics Code or any 3rd party tracking code for website Analytics</li>
|
43 |
+
<li>Supports custom CSS code.</li>
|
44 |
+
<li>Fully translatable.</li>
|
45 |
</ul>
|
46 |
|
47 |
<h3>Compatibles Plugins</h3>
|
148 |
<p>Nothing is better than a good feedback! Please go to <a href="https://wordpress.org/support/plugin/cmp-coming-soon-maintenance/reviews/">Plugin reviews</a> and rate it! Alternatively you can click on a Donate button too!:)</p>
|
149 |
|
150 |
== Changelog ==
|
151 |
+
<h4>CMP 3.6.9 - 29-Dec-19</h4>
|
152 |
+
<ul>
|
153 |
+
<li>Enhanced Blacklist and Whitelist feature to support URL parameters.</li>
|
154 |
+
<li>Added support for custom login URL.</li>
|
155 |
+
<li>Fixed CSS styles to load correctly on translated admin pages.</li>
|
156 |
+
</ul>
|
157 |
+
|
158 |
<h4>CMP 3.6.8 - 16-Dec-19</h4>
|
159 |
<ul>
|
160 |
<li>To Celebrate Winter Time we added a beautiful Snowing Effect!</li>
|