initial commit
1
hamrokhaanpaan/wp-content/__plugins/under-construction-page/css/select2.min.css
vendored
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 824 B |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 23 KiB |
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// silence is golden
|
3
hamrokhaanpaan/wp-content/__plugins/under-construction-page/js/select2.min.js
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Backend GUI pointers
|
||||
* (c) WebFactory Ltd, 2015 - 2022
|
||||
*/
|
||||
|
||||
|
||||
jQuery(document).ready(function($){
|
||||
if (typeof ucp_pointers == 'undefined') {
|
||||
return;
|
||||
}
|
||||
|
||||
$.each(ucp_pointers, function(index, pointer) {
|
||||
if (index.charAt(0) == '_') {
|
||||
return true;
|
||||
}
|
||||
$(pointer.target).pointer({
|
||||
content: '<h3>' + ucp.plugin_name + '</h3><p>' + pointer.content + '</p>',
|
||||
position: {
|
||||
edge: pointer.edge,
|
||||
align: pointer.align
|
||||
},
|
||||
width: 320,
|
||||
close: function() {
|
||||
$.post(ajaxurl, {
|
||||
pointer: index,
|
||||
_ajax_nonce: ucp_pointers._nonce_dismiss_pointer,
|
||||
action: 'ucp_dismiss_pointer'
|
||||
});
|
||||
}
|
||||
}).pointer('open');
|
||||
});
|
||||
});
|
@ -0,0 +1,497 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Main backend JS
|
||||
* (c) WebFactory Ltd, 2015 - 2022
|
||||
*/
|
||||
|
||||
|
||||
jQuery(document).ready(function($) {
|
||||
var old_settings = $('#ucp_form *').not('.skip-save').serialize();
|
||||
var ad_name = '';
|
||||
|
||||
// init tabs
|
||||
$('#ucp_tabs').tabs({
|
||||
activate: function(event, ui) {
|
||||
Cookies.set('ucp_tabs', $('#ucp_tabs').tabs('option', 'active'), { expires: 365 });
|
||||
},
|
||||
active: Cookies.get('ucp_tabs')
|
||||
}).show();
|
||||
|
||||
// init 2nd level of tabs
|
||||
$('.ucp-tabs-2nd-level').each(function() {
|
||||
$(this).tabs({
|
||||
activate: function(event, ui) {
|
||||
Cookies.set($(this).attr('id'), $(this).tabs('option', 'active'), { expires: 365 });
|
||||
},
|
||||
active: Cookies.get($(this).attr('id'))
|
||||
});
|
||||
});
|
||||
|
||||
// init select2
|
||||
$('#whitelisted_users').select2({ 'placeholder': ucp.whitelisted_users_placeholder});
|
||||
|
||||
|
||||
// autosize textareas
|
||||
$.each($('textarea[data-autoresize]'), function() {
|
||||
var offset = this.offsetHeight - this.clientHeight;
|
||||
|
||||
var resizeTextarea = function(el) {
|
||||
$(el).css('height', 'auto').css('height', el.scrollHeight + offset + 2);
|
||||
};
|
||||
$(this).on('keyup input click', function() { resizeTextarea(this); }).removeAttr('data-autoresize');
|
||||
});
|
||||
|
||||
|
||||
// maybe init survey dialog
|
||||
$('#features-survey-dialog').dialog({'dialogClass': 'wp-dialog ucp-dialog ucp-survey-dialog',
|
||||
'modal': 1,
|
||||
'resizable': false,
|
||||
'zIndex': 9999,
|
||||
'width': 550,
|
||||
'height': 'auto',
|
||||
'show': 'fade',
|
||||
'hide': 'fade',
|
||||
'open': function(event, ui) { ucp_fix_dialog_close(event, ui); },
|
||||
'close': function(event, ui) { },
|
||||
'autoOpen': ucp.open_survey,
|
||||
'closeOnEscape': true
|
||||
});
|
||||
|
||||
|
||||
// turn questions into checkboxes
|
||||
$('.question-wrapper').on('click', function(e) {
|
||||
$('.question-wrapper').removeClass('selected');
|
||||
$(this).addClass('selected');
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// dismiss survey forever
|
||||
$('.dismiss-survey').on('click', function(e) {
|
||||
$('#features-survey-dialog').dialog('close');
|
||||
|
||||
$.post(ajaxurl, { survey: $(this).data('survey'),
|
||||
_ajax_nonce: ucp.nonce_dismiss_survey,
|
||||
action: 'ucp_dismiss_survey'
|
||||
});
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// submit and hide survey
|
||||
$('.submit-survey').on('click', function(e) {
|
||||
if ($('.question-wrapper.selected').length != 1) {
|
||||
alert('Please choose the way you use UCP.');
|
||||
return false;
|
||||
}
|
||||
|
||||
answers = $('.question-wrapper.selected').data('value');
|
||||
answers += '-' + $('.question-wrapper').index($('.question-wrapper.selected'));
|
||||
|
||||
$.post(ajaxurl, { survey: $(this).data('survey'),
|
||||
answers: answers,
|
||||
emailme: $('#features-survey-dialog #emailme:checked').val(),
|
||||
_ajax_nonce: ucp.nonce_submit_survey,
|
||||
action: 'ucp_submit_survey'
|
||||
});
|
||||
|
||||
alert('Thank you for your time! We appriciate your input!');
|
||||
|
||||
$('#features-survey-dialog').dialog('close');
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// send support message
|
||||
$('#ucp-send-support-message').on('click', function(e) {
|
||||
e.preventDefault();
|
||||
button = $(this);
|
||||
|
||||
if ($('#support_email').val().length < 5 || /\S+@\S+\.\S+/.test($('#support_email').val()) == false) {
|
||||
alert('We need your email address, don\'t you think?');
|
||||
$('#support_email').select().focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($('#support_message').val().length < 15) {
|
||||
alert('A message that short won\'t do anybody any good.');
|
||||
$('#support_message').select().focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
button.addClass('loading');
|
||||
$.post(ajaxurl, { support_email: $('#support_email').val(),
|
||||
support_message: $('#support_message').val(),
|
||||
support_info: $('#support_info:checked').val(),
|
||||
_ajax_nonce: ucp.nonce_submit_support_message,
|
||||
action: 'ucp_submit_support_message'},
|
||||
function(data) {
|
||||
if (data.success) {
|
||||
alert('Message sent! Our agents will get back to you ASAP.');
|
||||
} else {
|
||||
alert(data.data);
|
||||
}
|
||||
}).fail(function() {
|
||||
alert('Something is not right. Please reload the page and try again');
|
||||
}).always(function() {
|
||||
button.removeClass('loading');
|
||||
});
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// fix for enter press in support email
|
||||
$('#support_email').on('keypress', function(e) {
|
||||
if (e.which == 13) {
|
||||
e.preventDefault();
|
||||
$('#ucp-send-support-message').trigger('click');
|
||||
return false;
|
||||
}
|
||||
}); // if enter on support email
|
||||
|
||||
|
||||
// activate theme via thumb and save
|
||||
$('.ucp-thumb .activate-theme').on('click', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
theme_id = $(this).parents('.ucp-thumb').data('theme-id');
|
||||
$('#theme_id').val(theme_id);
|
||||
$('#ucp_tabs #submit').trigger('click');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// init datepicker
|
||||
$('.datepicker').AnyTime_picker({ format: "%Y-%m-%d %H:%i", firstDOW: 1, earliest: new Date(), labelTitle: "Select the date & time when construction mode will be disabled" } );
|
||||
|
||||
|
||||
// fix when opening datepicker
|
||||
$('.show-datepicker').on('click', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
$(this).prevAll('input.datepicker').focus();
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
$('#ga_tracking_id_toggle').on('change', function(e, is_triggered) {
|
||||
if ($(this).is(':checked')) {
|
||||
if (is_triggered) {
|
||||
$('#ga_tracking_id_wrapper').show();
|
||||
} else {
|
||||
$('#ga_tracking_id_wrapper').slideDown();
|
||||
}
|
||||
} else {
|
||||
if (is_triggered) {
|
||||
$('#ga_tracking_id_wrapper').hide();
|
||||
} else {
|
||||
$('#ga_tracking_id_wrapper').slideUp();
|
||||
}
|
||||
}
|
||||
}).triggerHandler('change', true);
|
||||
|
||||
$('#end_date_toggle').on('change', function(e, is_triggered) {
|
||||
if ($(this).is(':checked')) {
|
||||
if (is_triggered) {
|
||||
$('#end_date_wrapper').show();
|
||||
} else {
|
||||
$('#end_date_wrapper').slideDown();
|
||||
}
|
||||
} else {
|
||||
if (is_triggered) {
|
||||
$('#end_date_wrapper').hide();
|
||||
} else {
|
||||
$('#end_date_wrapper').slideUp();
|
||||
}
|
||||
}
|
||||
}).triggerHandler('change', true);
|
||||
|
||||
|
||||
$('.settings_page_ucp .wrap').on('click', '.reset-settings', function(e) {
|
||||
if (!confirm('Are you sure you want to reset all UCP settings to their default values? There is NO undo.')) {
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}); // reset-settings
|
||||
|
||||
|
||||
// warning if there are unsaved changes when previewing
|
||||
$('.settings_page_ucp .wrap').on('click', '#ucp_preview', function(e) {
|
||||
if ($('#ucp_form *').not('.skip-save').serialize() != old_settings) {
|
||||
if (!confirm('There are unsaved changes that will not be visible in the preview. Please save changes first.\nContinue?')) {
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
|
||||
// check if there are invalid fields
|
||||
// assume they are social icons
|
||||
$('.settings_page_ucp .wrap').on('click', '#submit', function(e) {
|
||||
if ($('#ucp_form input:invalid').not('.skip-save').length) {
|
||||
$('#ucp_tabs').tabs('option', 'active', 2);
|
||||
$('#ucp_form input:invalid').first().focus();
|
||||
alert('Please correct the errors before saving.');
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}); // form submit
|
||||
|
||||
|
||||
// show all social icons
|
||||
$('.settings_page_ucp .wrap').on('click', '#show-social-icons', function(e) {
|
||||
$(this).hide();
|
||||
$('#ucp-social-icons tr').removeClass('hidden');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// helper for linking anchors in different tabs
|
||||
$('.settings_page_ucp').on('click', '.change_tab', function(e) {
|
||||
e.preventDefault();
|
||||
$('#ucp_tabs').tabs('option', 'active', $(this).data('tab'));
|
||||
|
||||
// get the link anchor and scroll to it
|
||||
target = this.href.split('#')[1];
|
||||
if (target) {
|
||||
$.scrollTo('#' + target, 500, {offset: {top:-50, left:0}});
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// upsell dialog init
|
||||
$('#upsell-dialog').dialog({'dialogClass': 'wp-dialog ucp-dialog ucp-upsell-dialog',
|
||||
'modal': 1,
|
||||
'resizable': false,
|
||||
'title': 'UCP Upsell',
|
||||
'zIndex': 9999,
|
||||
'width': 900,
|
||||
'height': 'auto',
|
||||
'show': 'fade',
|
||||
'hide': 'fade',
|
||||
'open': function(event, ui) {
|
||||
ucp_fix_dialog_close(event, ui);
|
||||
$(this).siblings().find('span.ui-dialog-title').html(ucp.dialog_upsell_title);
|
||||
},
|
||||
'close': function(event, ui) { },
|
||||
'autoOpen': false,
|
||||
'closeOnEscape': true
|
||||
});
|
||||
$(window).resize(function(e){
|
||||
$('#upsell-dialog').dialog("option", "position", {my: "center", at: "center", of: window});
|
||||
});
|
||||
|
||||
$('#weglot-upsell-dialog').dialog({'dialogClass': 'wp-dialog ucp-dialog weglot-upsell-dialog',
|
||||
'modal': 1,
|
||||
'resizable': false,
|
||||
'title': 'Translate your under construction page to any language',
|
||||
'zIndex': 9999,
|
||||
'width': 550,
|
||||
'height': 'auto',
|
||||
'show': 'fade',
|
||||
'hide': 'fade',
|
||||
'open': function(event, ui) {
|
||||
ucp_fix_dialog_close(event, ui);
|
||||
$(this).siblings().find('span.ui-dialog-title').html(ucp.weglot_dialog_upsell_title);
|
||||
},
|
||||
'close': function(event, ui) { },
|
||||
'autoOpen': false,
|
||||
'closeOnEscape': true
|
||||
});
|
||||
$(window).resize(function(e) {
|
||||
$('#weglot-upsell-dialog').dialog("option", "position", {my: "center", at: "center", of: window});
|
||||
});
|
||||
|
||||
|
||||
jQuery('#install-weglot').on('click',function(e){
|
||||
$('#weglot-upsell-dialog').dialog('close');
|
||||
jQuery('body').append('<div style="width:550px;height:450px; position:fixed;top:10%;left:50%;margin-left:-275px; color:#444; background-color: #fbfbfb;border:1px solid #DDD; border-radius:4px;box-shadow: 0px 0px 0px 4000px rgba(0, 0, 0, 0.85);z-index: 9999999;"><iframe src="' + ucp.weglot_install_url + '" style="width:100%;height:100%;border:none;" /></div>');
|
||||
jQuery('#wpwrap').css('pointer-events', 'none');
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
// zebra on pricing table, per column
|
||||
$('#ucp-pricing-table').find('tr').each(function() {
|
||||
$(this).find('td').eq(1).addClass('hover');
|
||||
});
|
||||
|
||||
$('.settings_page_ucp').on('click change', '.open-ucp-upsell', function(e) {
|
||||
if ($(this).is('select') && $(this).val() != '-1') {
|
||||
return true;
|
||||
}
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
if (ucp.is_activated) {
|
||||
$('#ucp_tabs').tabs('option', 'active', 5);
|
||||
$.scrollTo('#license_key');
|
||||
$('#license_key').focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
ad_name = $(this).attr('id');
|
||||
if (!ad_name) {
|
||||
ad_name = $(this).data('pro-ad');
|
||||
}
|
||||
if (!ad_name) {
|
||||
ad_name = '';
|
||||
}
|
||||
|
||||
$('.promo-button').each(function(ind, el) {
|
||||
tmp = $(el).data('href-org');
|
||||
tmp = tmp.replace('pricing-table', ad_name);
|
||||
$(el).attr('href', tmp);
|
||||
});
|
||||
|
||||
if ($(this).is('select')) {
|
||||
$(this).find('option').attr('selected', '');
|
||||
$(this).find('option:first').attr('selected', 'selected');
|
||||
}
|
||||
$(this).blur();
|
||||
|
||||
$('#upsell-dialog').dialog('open');
|
||||
|
||||
if ($(this).data('tab') == 'buy') {
|
||||
$('#tabs_upsell').tabs('option', 'active', 0);
|
||||
}
|
||||
if ($(this).data('tab') == 'features') {
|
||||
$('#tabs_upsell').tabs('option', 'active', 1);
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$('.settings_page_ucp').on('click', '.open-weglot-upsell', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
$(this).blur();
|
||||
|
||||
$('#weglot-upsell-dialog').dialog('open');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$('.settings_page_ucp').on('click change', '.open-smush-install', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
$('#smush-install-link').trigger('click');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$('#tabs_upsell').on('tabsactivate', function(event, ui) {
|
||||
$('#upsell-dialog').dialog("option", "position", {my: "center", at: "center", of: window});
|
||||
});
|
||||
|
||||
$('.settings_page_ucp').on('click', '.go-to-license-key', function(e) {
|
||||
$('#upsell-dialog').dialog('close');
|
||||
$('#ucp_tabs').tabs('option', 'active', 5);
|
||||
$.scrollTo('#license_key');
|
||||
$('#license_key').focus();
|
||||
});
|
||||
|
||||
$('#license_key').on('keypress', function(e) {
|
||||
if (e.which == 13) {
|
||||
e.preventDefault();
|
||||
$('#license-submit').trigger('click');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
if (!Date.now) {
|
||||
Date.now = function() { return new Date().getTime(); }
|
||||
}
|
||||
|
||||
function ucp_update_timer() {
|
||||
out = '';
|
||||
timer = $('.ucp-countdown');
|
||||
|
||||
if (timer.length == 0) {
|
||||
clearInterval(ucp_countdown_interval);
|
||||
}
|
||||
|
||||
now = Math.round(new Date().getTime()/1000);
|
||||
timer_end = ucp.promo_countdown;
|
||||
delta = timer_end - now;
|
||||
seconds = Math.floor( (delta) % 60 );
|
||||
minutes = Math.floor( (delta/60) % 60 );
|
||||
hours = Math.floor( (delta/(60*60)) % 24 );
|
||||
|
||||
if (delta <= 0) {
|
||||
clearInterval(ucp_countdown_interval);
|
||||
}
|
||||
|
||||
if (hours) {
|
||||
out += hours + 'h ';
|
||||
}
|
||||
if (minutes || out) {
|
||||
out += minutes + 'min ';
|
||||
}
|
||||
if (seconds || out) {
|
||||
out += seconds + 'sec';
|
||||
}
|
||||
if (delta <= 0 || !out) {
|
||||
out = 'discount is no longer available';
|
||||
}
|
||||
|
||||
$(timer).html(out);
|
||||
|
||||
return true;
|
||||
} // ucp_update_timer
|
||||
|
||||
if (ucp.promo_countdown) {
|
||||
ucp_countdown_interval = setInterval(ucp_update_timer, 1000);
|
||||
}
|
||||
|
||||
function ucp_position_wpfssl_ad() {
|
||||
pos_left = Math.round($('#ucp_tabs').width()) + 40;
|
||||
pos_top = Math.round($('#ucp_tabs').offset().top) + 45;
|
||||
|
||||
$('#wpfssl-ad').css('top', pos_top + 'px').css('left', pos_left + 'px');
|
||||
$('#wpfssl-ad').show();
|
||||
} // ucp_position_wpfssl_ad
|
||||
|
||||
ucp_position_wpfssl_ad();
|
||||
$(window).on('resize', function() {
|
||||
ucp_position_wpfssl_ad();
|
||||
})
|
||||
|
||||
$('.install-wpfssl').on('click',function(e){
|
||||
if (!confirm('The free WP Force SSL plugin will be installed & activated from the official WordPress repository.')) {
|
||||
return;
|
||||
}
|
||||
|
||||
jQuery('body').append('<div style="width:550px;height:450px; position:fixed;top:10%;left:50%;margin-left:-275px; color:#444; background-color: #fbfbfb;border:1px solid #DDD; border-radius:4px;box-shadow: 0px 0px 0px 4000px rgba(0, 0, 0, 0.85);z-index: 9999999;"><iframe src="' + ucp.wpfssl_install_url + '" style="width:100%;height:100%;border:none;" /></div>');
|
||||
jQuery('#wpwrap').css('pointer-events', 'none');
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
}); // on ready
|
||||
|
||||
|
||||
function ucp_fix_dialog_close(event, ui) {
|
||||
jQuery('.ui-widget-overlay').bind('click', function(){
|
||||
jQuery('#' + event.target.id).dialog('close');
|
||||
});
|
||||
} // ucp_fix_dialog_close
|
@ -0,0 +1,280 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
@ -0,0 +1,603 @@
|
||||
=== Under Construction ===
|
||||
Contributors: WebFactory
|
||||
Tags: coming soon page, under construction mode, under construction, under construction page, coming soon, maintenance mode, maintenance page, launch page, coming soon mode, maintenance mode page, offline page, maintenance, landing page
|
||||
Requires at least: 4.0
|
||||
Requires PHP: 5.2
|
||||
Tested up to: 5.9
|
||||
Stable tag: 3.92
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
Easy to use Under Construction Page & Coming Soon Page. Enable Under Construction Mode in seconds & show you're Under Construction!
|
||||
|
||||
|
||||
== Description ==
|
||||
|
||||
Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes **less than a minute to install & configure**. Under Construction won't waste your time! It's simple, fast, efficient & user-friendly with <a href="https://underconstructionpage.com/#designs">great templates</a> users love.
|
||||
|
||||
[youtube https://www.youtube.com/watch?v=fqqWrQENSDc]
|
||||
|
||||
> **PRO** version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the <a href="https://underconstructionpage.com/">official plugin site</a>.
|
||||
|
||||
A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the <a href="https://underconstructionpage.com/">Under Construction website</a>. Give us a shout on Twitter <a href="http://twitter.com/WebFactoryLtd">@WebFactoryLtd</a> or check out the <a href="https://youtu.be/fqqWrQENSDc">video</a>.
|
||||
|
||||
Thanks to our partnership with <a href="https://wordpress.org/plugins/weglot/">Weglot</a>, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.
|
||||
|
||||
**If you're having problems with SSL or HTTPS try our free <a href="https://wordpress.org/plugins/wp-force-ssl/">WP Force SSL</a> plugin. It's a great plugin to enable SSL and fix SSL issues.**
|
||||
|
||||
**Options**
|
||||
|
||||
* Under construction mode - on / off
|
||||
* Automatic End date & time - automatically disable under construction mode on a set date
|
||||
* Google Analytics Tracking ID - enable tracking via Google Analytics
|
||||
* Theme - <a href="https://underconstructionpage.com/templates/">test all available themes (200+)</a>
|
||||
* Custom CSS - adjust any part of the page to fit your needs
|
||||
* Title - page title, for SEO
|
||||
* Description - page description, for SEO
|
||||
* Headline - main headline/title
|
||||
* Content - anything you need to display
|
||||
* Optin box, optin popup - collect leads and emails and sync with MailChimp and other autoresponders
|
||||
* Login Button - show a discrete link to the login form, or WP admin if you're logged in
|
||||
* Social icons/links - new ones are added with every update; let us know if we missed your favorite ones
|
||||
* Facebook
|
||||
* Twitter
|
||||
* LinkedIn
|
||||
* YouTube
|
||||
* Vimeo
|
||||
* Pinterest
|
||||
* Dribbble
|
||||
* Behance
|
||||
* Instagram
|
||||
* Email
|
||||
* Phone
|
||||
* Skype
|
||||
* Telegram
|
||||
* WhatsApp
|
||||
* Tumblr
|
||||
* VK
|
||||
* Whitelisted User Roles - user roles who see the site, instead of under construction page
|
||||
* Whitelisted Users - users who see the site, instead of under construction page
|
||||
|
||||
Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.
|
||||
|
||||
|
||||
**What are others saying about the Under Construction Page plugin**
|
||||
|
||||
* <a href="https://www.webhostingsecretrevealed.net/blog/blogging-tips/how-to-grow-your-blog-before-it-is-born/">WHSR</a> wrote an in-depth guide on how to "Grow Your Blog Before It Is Born" featuring Under Construction Page
|
||||
* John Fraskos from <a href="https://codestag.com/setting-wordpress-theme-easily-create-construction-page/">Codestag</a> says it's "very friendly and easy to use"
|
||||
* <a href="http://wppluginsify.com/interface-elements/professional-construction-page/">WP Pluginsify</a> wrote a review
|
||||
* Erik from <a href="http://nopassiveincome.com/under-construction-page-plugin-review/">NoPassiveIncome</a> points out: "plugin is so easy and quick to use"
|
||||
* <a href="https://planetwp.com/underconstruction-page-plugin/">Planet WP</a> gave it 5/5 stars
|
||||
* <a href="https://firstsiteguide.com/under-construction-page-review/">FirstSiteGuide</a> says: "a perfect choice"
|
||||
* WPblog wrote a <a href="https://www.wpblog.com/quick-ways-to-put-wordpress-site-under-construction/">review</a> as well
|
||||
* <a href="https://wptopdog.com/under-construction-plugin-review/">WP TopDog</a> had Daniel explain how to use the Under Construction Page
|
||||
|
||||
== Installation ==
|
||||
|
||||
Follow the usual routine;
|
||||
|
||||
1. Open WordPress admin, go to Plugins, click Add New
|
||||
2. Enter "under construction page" in search and hit Enter
|
||||
3. Plugin will show up as the first on the list, click "Install Now"
|
||||
4. Activate & open plugin's settings page located under the Settings menu
|
||||
|
||||
Or if needed, upload manually;
|
||||
|
||||
1. Download the plugin.
|
||||
2. Unzip it and upload to _/wp-content/plugins/_
|
||||
3. Open WordPress admin - Plugins and click "Activate" next to the plugin
|
||||
4. Activate & open plugin's settings page located under the Settings menu
|
||||
|
||||
|
||||
== Screenshots ==
|
||||
|
||||
1. Build an under construction page in less than a minute with over 30 themes
|
||||
2. Under Construction Text theme
|
||||
3. Mad Designer theme
|
||||
4. Plain Text theme
|
||||
5. Under Construction theme
|
||||
6. Things Went Dark theme
|
||||
7. Forklift at Work theme
|
||||
8. Cyber Chick theme
|
||||
9. Rocket Launch theme
|
||||
10. Loader at Work theme
|
||||
11. Cyber Chick Dark theme
|
||||
12. Safe theme
|
||||
13. People at Work theme
|
||||
14. Windmill theme
|
||||
15. Sad Site theme
|
||||
16. Lighthouse
|
||||
17. Hot Air Balloon
|
||||
18. People at Work #2 theme
|
||||
19. Rocket Launch #2 theme
|
||||
20. Light Bulb theme
|
||||
21. Ambulance theme
|
||||
22. Laptop theme
|
||||
23. Puzzles theme contributed by <a href="https://twitter.com/EdelHaut">Ralf Biester</a>
|
||||
24. Internet of Things
|
||||
25. Setup theme
|
||||
26. Stop theme
|
||||
27. Clock theme
|
||||
28. Bulldozer theme
|
||||
29. Christmas theme
|
||||
30. Hard Worker theme
|
||||
31. Temporarily Closed theme
|
||||
32. Dumper Truck theme
|
||||
33. 000webhost theme
|
||||
34. Work Desk theme
|
||||
35. Research theme
|
||||
36. Main settings
|
||||
37. Design settings
|
||||
38. Content settings
|
||||
39. Access settings
|
||||
40. Support
|
||||
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 3.92 =
|
||||
* 2022/01/13
|
||||
* Google Analytics fix
|
||||
* sorry for the multiple updates :(
|
||||
|
||||
= 3.91 =
|
||||
* 2022/01/12
|
||||
* fix for Weglot integration
|
||||
|
||||
= 3.90 =
|
||||
* 2022/01/05
|
||||
* security fixes
|
||||
* added ad for our WP Force SSL plugin
|
||||
|
||||
= 3.89 =
|
||||
* 2021/07/23
|
||||
* bug fix for Weglot
|
||||
|
||||
= 3.88 =
|
||||
* 2021/02/20
|
||||
* 500,000 installations hit on 2021/01/31
|
||||
* added support for Cache Enabler plugin
|
||||
|
||||
= 3.87 =
|
||||
* 2021/01/30
|
||||
* removed promo for WF plugins
|
||||
|
||||
= 3.86 =
|
||||
* 2021/01/20
|
||||
* security fixes
|
||||
* added quick links button
|
||||
|
||||
= 3.85 =
|
||||
* 2021/01/13
|
||||
* removed Google+
|
||||
* removed WP 301 Redirects promo campaign
|
||||
|
||||
= 3.83 =
|
||||
* 2020/10/27
|
||||
* removed automatic PRO license activation
|
||||
|
||||
= 3.82 =
|
||||
* 2020/10/01
|
||||
* minor fixes
|
||||
* added promo for WP 301 Redirects
|
||||
|
||||
= 3.81 =
|
||||
* 2020/08/20
|
||||
* bug fixes
|
||||
|
||||
= 3.80 =
|
||||
* 2020/06/17
|
||||
* more cache handling improvements
|
||||
* stripped HTML from page title and description
|
||||
|
||||
= 3.75 =
|
||||
* 2020/04/15
|
||||
* better cache handling
|
||||
|
||||
= 3.70 =
|
||||
* 2020/03/27
|
||||
* minor bug fixes
|
||||
* removed Security Ninja ads
|
||||
* 400,000 installations hit on 2019-12-06
|
||||
|
||||
= 3.65 =
|
||||
* 2019/11/21
|
||||
* minor bug fixes
|
||||
* removed NotificationX integration
|
||||
* added support for Hummingbird cache plugin
|
||||
|
||||
= 3.60 =
|
||||
* 2019/10/31
|
||||
* minor bug fixes
|
||||
* adjusted GUI for WP v5.3
|
||||
* 3,152,000 downloads
|
||||
|
||||
= 3.55 =
|
||||
* 2019/09/18
|
||||
* minor bug fixes
|
||||
* new theme: Research
|
||||
* 2,980,000 downloads
|
||||
|
||||
= 3.50 =
|
||||
* 2019/08/07
|
||||
* clean up
|
||||
* NotificationX plugin integration
|
||||
* 2,812,000 downloads
|
||||
|
||||
= 3.45 =
|
||||
* 2019/05/21
|
||||
* bug fixes
|
||||
* lower monthly prices
|
||||
|
||||
= 3.40 =
|
||||
* 2019/04/17
|
||||
* bug fixes
|
||||
* partnership with NordVPN
|
||||
|
||||
= 3.35 =
|
||||
* 2019/03/18
|
||||
* 300,000 installs hit on 2019/01/18 with 2,151,500 downloads
|
||||
* bug fixes
|
||||
* partnership with Weglot
|
||||
|
||||
= 3.31 =
|
||||
* 2019/01/15
|
||||
* minor security fix
|
||||
|
||||
= 3.30 =
|
||||
* 2018/12/18
|
||||
* minor security fixes in admin
|
||||
* moved SN & MailOptin to the beginning of featured plugins list
|
||||
* new cache busting for SiteGround SuperCacher
|
||||
* removed "add media" from content field
|
||||
* moved "show some love" up in admin, below content
|
||||
|
||||
= 3.25 =
|
||||
* 2018/11/27
|
||||
* new theme - Work Desk
|
||||
* started promoting SN & MailOptin in featured plugins tab
|
||||
* wp_redirect() vulnerability fix
|
||||
|
||||
= 3.20 =
|
||||
* 2018/11/12
|
||||
* few bug fixes
|
||||
* integration with MailOptin - collect leads & emails with in-content forms and popups
|
||||
* we're at 1,820,000 downloads
|
||||
|
||||
= 3.15 =
|
||||
* 2018/08/22
|
||||
* minor bug fixes
|
||||
* new theme: 000webhost
|
||||
* added custom settings for 000webhost users
|
||||
* we're at 1,634,783 downloads
|
||||
|
||||
= 3.10 =
|
||||
* 2018/06/19
|
||||
* minor bug fixes
|
||||
* removed translation help notice
|
||||
* added welcome notice
|
||||
* we're at 1,445,311 downloads
|
||||
|
||||
= 3.05 =
|
||||
* 2018/05/29
|
||||
* added support for cache clearing for Swift Performance Lite
|
||||
* new theme - Dumper Truck
|
||||
* asking for help with translations, again
|
||||
|
||||
= 3.0 =
|
||||
* 2018/04/23
|
||||
* added VK icon - a Russian social network
|
||||
* new theme - Temporarily Closed
|
||||
* added discount for old users
|
||||
|
||||
= 2.95 =
|
||||
* 2018/03/26
|
||||
* we reached 200k active installations on March 23rd & 1,115,000 downloads
|
||||
* new theme - Hard Worker
|
||||
|
||||
= 2.90 =
|
||||
* 2018/03/13
|
||||
* removed the "help us translate" notice
|
||||
* few small bug fixes
|
||||
* added theme preview feature
|
||||
* GUI buttons now follow plugin's branding guide
|
||||
|
||||
= 2.85 =
|
||||
* 2018/02/05
|
||||
* involving users into translation efforts
|
||||
* no more "rate us" notice
|
||||
* we crossed the 1M downloads mark
|
||||
|
||||
= 2.80 =
|
||||
* 2017/12/05
|
||||
* translation efforts are still in full swing
|
||||
* new theme - Christmas
|
||||
* minor changes
|
||||
* we crossed the 890k downloads mark
|
||||
|
||||
= 2.75 =
|
||||
* 2017/11/22
|
||||
* translation efforts are in full swing
|
||||
* PRO version is available
|
||||
* new logo
|
||||
|
||||
= 2.70 =
|
||||
* 2017/11/06
|
||||
* continued marking strings for translation
|
||||
* added button for resetting settings
|
||||
|
||||
= 2.66 =
|
||||
* 2017/10/19
|
||||
* fixed bug: some users weren't able to close the notification on front-end
|
||||
* added contact option on plugin deactivation
|
||||
|
||||
= 2.65 =
|
||||
* 2017/10/17
|
||||
* fixed CORS issue on FontAwesome
|
||||
* all times are now GMT+0
|
||||
* removed survey
|
||||
* review request notification adjusted
|
||||
* added notification on front-end for whitelisted users when UCP is enabled
|
||||
|
||||
= 2.60 =
|
||||
* 2017/10/02
|
||||
* continuing with UX improvements
|
||||
* minor code improvements
|
||||
* new theme - Bulldozer
|
||||
* new survey - How do you use UCP?
|
||||
* added deactivation survey
|
||||
|
||||
= 2.55 =
|
||||
* 2017/09/18
|
||||
* big UX improvements and more coming soon
|
||||
* redesigned admin bar menu
|
||||
* added favicon to all themes
|
||||
* fixed Skype icon; it got broken in v2.40
|
||||
* minor code improvements
|
||||
|
||||
= 2.50 =
|
||||
* 2017/09/04
|
||||
* CDNs are no longer used except for Google Fonts
|
||||
* new theme - Clock
|
||||
* minor code improvements
|
||||
* list of social icons in admin is now truncated by default and a "show more" button added
|
||||
|
||||
= 2.45 =
|
||||
* 2017/08/21
|
||||
* support is now available directly from the Support tab
|
||||
* added notification when UCP is enabled and End Date is in the past resulting in UCP not being shown
|
||||
* retry-after header is now properly set
|
||||
* minor improvements
|
||||
|
||||
= 2.40 =
|
||||
* 2017/08/07
|
||||
* new social icon - Telegram
|
||||
* removed autoresponders survey
|
||||
* we've crossed the 100k users mark on August 5th & 515k downloads
|
||||
|
||||
= 2.35 =
|
||||
* 2017/07/24
|
||||
* UCP can now be quickly disabled/enabled directly from the admin bar menu
|
||||
* new theme - Stop
|
||||
* added support for WP Fastest Cache
|
||||
|
||||
= 2.30 =
|
||||
* 2017/07/10
|
||||
* we've crossed the 90k users mark on July 8th
|
||||
* added autoresponders survey
|
||||
* new filter - ucp_is_construction_mode_enabled
|
||||
* CSS in all themes is now enqueued, not hardcoded
|
||||
|
||||
= 2.25 =
|
||||
* 2017/06/26
|
||||
* new theme - Setup
|
||||
* improved UCP's toolbar/admin bar menu item
|
||||
|
||||
= 2.20 =
|
||||
* 2017/06/12
|
||||
* new theme - Internet of Things
|
||||
* added support for Siteground caching plugin
|
||||
* we've crossed the 80k users mark on June 7th
|
||||
|
||||
= 2.15 =
|
||||
* 2017/05/29
|
||||
* new theme - Puzzles contributed by <a href="https://twitter.com/EdelHaut">Ralf Biester</a>
|
||||
* removed design survey
|
||||
|
||||
= 2.10 =
|
||||
* 2017/05/15
|
||||
* new theme - Laptop
|
||||
* we've crossed the 70k users mark on May 7th
|
||||
* minor changes
|
||||
|
||||
= 2.05 =
|
||||
* 2017/05/03
|
||||
* new theme - Ambulance
|
||||
* we've crossed 300k downloads
|
||||
* added filters to ease integrations and customizations
|
||||
* fixed bug with telephone number link/icon not working on Android
|
||||
|
||||
= 2.0 =
|
||||
* 2017/04/24
|
||||
* new theme - Light Bulb
|
||||
* continued work on marking strings for translation
|
||||
|
||||
= 1.96 =
|
||||
* 2017/04/12
|
||||
* new theme - Rocket Launch #2
|
||||
* started working on marking strings for translation
|
||||
* added designs survey
|
||||
|
||||
= 1.90 =
|
||||
* 2017/04/03
|
||||
* new theme - People at Work #2
|
||||
* small adjustements for new repo
|
||||
* moved FontAwesome to CDN
|
||||
* we've crossed the 60k users mark :)
|
||||
|
||||
= 1.85 =
|
||||
* 2017/03/23
|
||||
* new theme - Hot Air Baloon
|
||||
* new social icon - Vimeo
|
||||
|
||||
= 1.80 =
|
||||
* 2017/03/13
|
||||
* new theme - Lighthouse
|
||||
* admin bar notice is no longer visible to non-admins
|
||||
* minor fixes
|
||||
|
||||
= 1.75 =
|
||||
* 2017/03/02
|
||||
* new theme - Sad Site
|
||||
* removed survey
|
||||
* added new social icon: Tumblr
|
||||
* we've crossed the 50k users mark
|
||||
|
||||
= 1.70 =
|
||||
* 2017/02/22
|
||||
* new theme - Windmill
|
||||
* code improvements
|
||||
|
||||
= 1.66 =
|
||||
* 2017/02/13
|
||||
* new theme - People at Work
|
||||
* added new social icon: WhatsApp
|
||||
|
||||
= 1.60 =
|
||||
* 2017/02/06
|
||||
* new theme - Safe
|
||||
* added "Support" tab with FAQ and links
|
||||
* minor bug fixes
|
||||
* added 2 social icons: Skype and Phone
|
||||
* we've crossed the 40k users mark
|
||||
|
||||
= 1.55 =
|
||||
* 2017/01/30
|
||||
* new theme - Cyber Chick Dark
|
||||
* added "Custom CSS" option
|
||||
* minor bug fixes
|
||||
* security improvements
|
||||
|
||||
= 1.51 =
|
||||
* 2017/01/23
|
||||
* new theme - Loader
|
||||
* added "Show Login Button" option
|
||||
* added 1 social icon: Email
|
||||
|
||||
= 1.45 =
|
||||
* 2017/01/16
|
||||
* new theme - Rocket Launch
|
||||
* added "Site Description" SEO option
|
||||
* added 2 social icons: Behance & Instagram
|
||||
* features survey is shown to users to decide what features will be developed next
|
||||
|
||||
= 1.40 =
|
||||
* 2017/01/03
|
||||
* new theme - Cyber Chick
|
||||
* added "Google Analytics Tracking ID" option
|
||||
* added "Whitelisted Users" option
|
||||
* added "Show some Love" option
|
||||
* we've crossed the 30k users mark
|
||||
|
||||
= 1.35 =
|
||||
* 2016/12/23
|
||||
* new theme - Under Construction Text
|
||||
* GUI enhancements
|
||||
* added "end date" option
|
||||
|
||||
= 1.30 =
|
||||
* 2016/11/29
|
||||
* we've crossed the 20k users mark & 100k downloads ;)
|
||||
* added notice on login form when Maintenance is enabled
|
||||
* new theme - Forklift at Work
|
||||
* GUI overhaul started
|
||||
* added Dribbble social icon
|
||||
|
||||
= 1.25 =
|
||||
* 2016/10/24
|
||||
* fixed fatal cache busting bug reported by @jonofgahh
|
||||
|
||||
= 1.24 =
|
||||
* 2016/10/24
|
||||
* 3 new social icons
|
||||
* new theme
|
||||
|
||||
= 1.22 =
|
||||
* 2016/10/10
|
||||
* minor fixes
|
||||
* new theme
|
||||
|
||||
= 1.20 =
|
||||
* 2016/09/27
|
||||
* complete rewrite of the plugin
|
||||
* 2 new themes
|
||||
|
||||
= 1.15 =
|
||||
* 2016/09/05
|
||||
* WebFactory took over development @ 10k installs & 70k downloads
|
||||
* fixed major bugs
|
||||
|
||||
= 1.10 =
|
||||
* 2013/12/01
|
||||
* Add option to set Google Font
|
||||
* Add option to set font size
|
||||
* Add option to set FB and Twitter URL
|
||||
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
= Who is this plugin for? =
|
||||
|
||||
For anyone who wants to display a under construction / maintenance page while they're doing work on their site.
|
||||
|
||||
= Will this plugin slow my site down? =
|
||||
|
||||
Absolutely not.
|
||||
|
||||
= Will it work on my theme? =
|
||||
|
||||
Sure! Under construction works 100% with all themes.
|
||||
|
||||
= Will it work with my plugins? =
|
||||
|
||||
Sure! It works 100% with all plugins.
|
||||
|
||||
= What changes will it make to my site? =
|
||||
|
||||
None. Once you disable the under construction page your site will function as it did before.
|
||||
|
||||
= It's not working!!! Arrrrrrrrr =
|
||||
|
||||
We did our very best to make Under Construction compatible with all plugins and themes, but problems can still happen. No worries, head over to the <a href="http://wordpress.org/support/plugin/under-construction-page">support forum</a> open a new thread, and we'll help you ASAP.
|
||||
|
||||
= How can I work on my site while under construction mode is enabled? =
|
||||
|
||||
Make sure your user role (probably admin) is selected under _Access - Whitelisted User Roles_ option and open the site while logged in.
|
||||
|
||||
= How can I log in / access WordPress admin after under construction mode has been enabled? =
|
||||
|
||||
Enable the _Login Button_ option (found in Content tab), and a login link will be shown in the lower right corner of the under construction page.
|
||||
|
||||
= How do I add my logo to the page? =
|
||||
|
||||
Head over to the _Content_ tab and click "Add Media". Upload/select the logo, position it as you see fit and add other content.
|
||||
|
||||
= I've made changes to UCP, but they are not visible. What do I do? =
|
||||
|
||||
Click "Save Changes" one more time. Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn't help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it.
|
||||
|
||||
= How can I get more designs? Where do I download them? =
|
||||
|
||||
We update the plugin every 7-10 days and each update comes with at least one new theme/design. There is no other way to get more designs nor a place to download them.
|
||||
|
||||
= How can I edit designs? =
|
||||
|
||||
There is an option to add custom CSS. If you want more than that you will have to edit the source files located in _/under-construction-page/themes/_.
|
||||
|
||||
= I have disabled UCP but the under construction page is still visible. How do I remove it? =
|
||||
|
||||
Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn't help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it. If that fails too contact your hosting provider and ask them to empty the site cache for you.
|
||||
|
||||
= Is UCP compatible with caching plugins? =
|
||||
|
||||
UCP is compatible with all caching plugins. However, please note that we automatically empty cache when UCP status is changed only for the following plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher and WP Fastest Cache.
|
After Width: | Height: | Size: 435 KiB |
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* 000webhost theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]000webhost.jpg" alt="Site is Under Construction" title="Site is Under Construction">
|
||||
</div>
|
||||
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* 000webhost theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #ffdda0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 5px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 40px 0 40px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
border-bottom: 1px solid #414042;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 103 KiB |
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Ambulance theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]ambulance.png" alt="Our site is getting some much needed care" title="Our site is getting some much needed care">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,73 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Ambulance theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #292929;
|
||||
background: #d1dfeb;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid #bdbfc1;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #d86221;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #292929;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #d86221;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 94 KiB |
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Bulldozer theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]">
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]bulldozer.png" alt="Bulldozer at Work" title="Bulldozer at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Bulldozer theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: linear-gradient(to bottom, #9be2fe 0%, #67d1fb 100%);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffba33;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#hero-image {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Christmas theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Mountains+of+Christmas:700">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]santa.png" alt="Happy Holidays!" title="Happy Holidays!">
|
||||
<div id="snow-bottom"></div>
|
||||
</div>
|
||||
<div class="container-wrap">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 38 KiB |
@ -0,0 +1,90 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Christmas theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #3f3e40;
|
||||
background: #90d479;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 0 auto;
|
||||
padding: 40px 0 0 0;
|
||||
background-color: #41d1fd;
|
||||
background-image: url(snow.png);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 35%;
|
||||
margin: 0 0 -35px 0;
|
||||
}
|
||||
|
||||
#snow-bottom {
|
||||
height: 27px;
|
||||
background-image: url(snow-bottom.png);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.container-wrap {
|
||||
background-color: #fff;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #ff7041;
|
||||
font-family: 'Mountains of Christmas', cursive;
|
||||
font-weight: 700;
|
||||
margin: 30px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #3f3e40;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ff7041;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
#hero-image {
|
||||
padding: 20px 0 0 0;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 21 KiB |
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Clock theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-xs-12 col-md-12 col-lg-4 display-cell">
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]clock.png" alt="Tick tock, tick tock, ..." title="Tick tock, tick tock, ...">
|
||||
<img class="clock-hand" src="[theme-url]clock-hand.png" alt="Tick tock, tick tock, ..." title="Tick tock, tick tock, ...">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-12 col-lg-8 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,131 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Clock CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #fefefe;
|
||||
background: #01c9fd;
|
||||
background: -webkit-linear-gradient(to right, #90fe9d, #01c9fd);
|
||||
background: linear-gradient(to right, #90fe9d, #01c9fd);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
a, a:hover {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.clock-hand {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform: rotate(0deg);
|
||||
transform-origin: 50.1% 59.9%;
|
||||
-webkit-animation: spin 30s linear infinite;
|
||||
-moz-animation: spin 30s linear infinite;
|
||||
animation: spin 30s linear infinite;
|
||||
}
|
||||
|
||||
.display-table {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
|
||||
}
|
||||
|
||||
.display-cell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #fefefe;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: left;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #fefefe;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #2e2e2e;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.display-table {
|
||||
display: initial;
|
||||
table-layout: auto;
|
||||
}
|
||||
.display-cell {
|
||||
display: block;
|
||||
float: none;
|
||||
}
|
||||
#hero-image img {
|
||||
max-height: 250px
|
||||
}
|
||||
.top-container {
|
||||
padding: 25px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
||||
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
||||
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
After Width: | Height: | Size: 108 KiB |
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Temporarily Closed theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]closed.png" alt="Site is Temporarily Closed for Construction" title="Site is Temporarily Closed for Construction">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Temporarily Closed theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 150%;
|
||||
color: #3d2850;
|
||||
background: #f2f2f2;
|
||||
background: -webkit-linear-gradient(to left, #f2f2f2, #f6f6f6);
|
||||
background: linear-gradient(to left, #f2f2f2, #f6f6f6);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #3d2850;
|
||||
font-family: "Fredoka One", sans-serif;
|
||||
font-weight: 600;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ee9825;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
6
hamrokhaanpaan/wp-content/__plugins/under-construction-page/themes/css/bootstrap.min.css
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Common frontend CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
.content img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#linkback {
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
opacity: 0.55;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#login-button {
|
||||
position: relative;
|
||||
right: 0;
|
||||
bottom: 50px;
|
||||
text-align: right;
|
||||
float: right;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#login-button a {
|
||||
background-color: rgba(70, 70, 70, 1);
|
||||
border-radius: 5px 0 0 5px;
|
||||
opacity: 0.3;
|
||||
padding: 10px;
|
||||
color: #ffffff;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#login-button a:hover {
|
||||
box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#login-button {
|
||||
bottom: 5px;
|
||||
}
|
||||
#login-button a {
|
||||
padding: 5px;
|
||||
}
|
||||
#social a i {
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
4
hamrokhaanpaan/wp-content/__plugins/under-construction-page/themes/css/font-awesome.min.css
vendored
Normal file
After Width: | Height: | Size: 123 KiB |
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Chyber Chick theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]cyber_chick.png" alt="Cyber Chick at work" title="Cyber Chick at work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|