Version Description
- Removed: Featured Plugins, Featured Themes pages
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.8.42 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.41 to 1.8.42
- contact-form-maker.php +3 -51
- featured/admin.css +0 -737
- featured/featured.php +0 -322
- featured/featured_themes.css +0 -178
- featured/featured_themes.php +0 -104
- featured/images/Add_Ons.jpg +0 -0
- featured/images/best_magazine.jpg +0 -0
- featured/images/best_magazine.png +0 -0
- featured/images/business_elite.jpg +0 -0
- featured/images/business_elite.png +0 -0
- featured/images/business_world.jpg +0 -0
- featured/images/business_world.png +0 -0
- featured/images/calendar.png +0 -0
- featured/images/calendar1.png +0 -0
- featured/images/calendar_hover.png +0 -0
- featured/images/calendar_menu.png +0 -0
- featured/images/catalog.png +0 -0
- featured/images/contact.builder.png +0 -0
- featured/images/contact.maker.png +0 -0
- featured/images/contacts.png +0 -0
- featured/images/delete_el.png +0 -0
- featured/images/down.png +0 -0
- featured/images/downarrow.png +0 -0
- featured/images/download.jpg +0 -0
- featured/images/download_plugins.png +0 -0
- featured/images/download_themes.png +0 -0
- featured/images/ecommerce.png +0 -0
- featured/images/events-wd.png +0 -0
- featured/images/exclusive.png +0 -0
- featured/images/expert.png +0 -0
- featured/images/facebook-feed.png +0 -0
- featured/images/facebook.png +0 -0
- featured/images/faq.png +0 -0
- featured/images/faq_wd.png +0 -0
- featured/images/flash.calendar.png +0 -0
- featured/images/folder.menu.png +0 -0
- featured/images/form.jpg +0 -0
- featured/images/form.png +0 -0
- featured/images/form_import.png +0 -0
- featured/images/google-maps.png +0 -0
- featured/images/instagram_feed.png +0 -0
- featured/images/loadingAnimation.gif +0 -0
- featured/images/magazine.png +0 -0
- featured/images/mailchimp.png +0 -0
- featured/images/mottomag.png +0 -0
- featured/images/news_magazine.jpg +0 -0
- featured/images/photo-gallery.png +0 -0
- featured/images/player.png +0 -0
- featured/images/portfolio_gallery.jpg +0 -0
- featured/images/portfolio_gallery.png +0 -0
- featured/images/post-slider.png +0 -0
- featured/images/random.post.png +0 -0
- featured/images/sauron.jpg +0 -0
- featured/images/sauron.png +0 -0
- featured/images/slider.png +0 -0
- featured/images/spider.calendar.png +0 -0
- featured/images/tb-close.png +0 -0
- featured/images/twittertools.png +0 -0
- featured/images/up.png +0 -0
- featured/images/wedding.png +0 -0
- featured/images/wedding_style.png +0 -0
- featured/images/zoom.png +0 -0
- featured/style.css +0 -209
- featured/updates.php +0 -158
- readme.txt +5 -2
contact-form-maker.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
-
* Version: 1.8.
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -38,9 +38,6 @@ function form_maker_options_panel_cfm() {
|
|
| 38 |
|
| 39 |
$licensing_plugins_page = add_submenu_page('manage_fmc', 'Get Pro', 'Get Pro', 'manage_options', 'licensing_fmc', 'form_maker_cfm');
|
| 40 |
|
| 41 |
-
add_submenu_page('manage_fmc', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_fmc', 'fmc_featured');
|
| 42 |
-
add_submenu_page('manage_fmc', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_fmc', 'fmc_featured_themes');
|
| 43 |
-
|
| 44 |
$uninstall_page = add_submenu_page('manage_fmc', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_fmc', 'form_maker_cfm');
|
| 45 |
add_action('admin_print_styles-' . $uninstall_page, 'form_maker_styles_cfm');
|
| 46 |
add_action('admin_print_scripts-' . $uninstall_page, 'form_maker_scripts_cfm');
|
|
@@ -61,7 +58,7 @@ function form_maker_cfm() {
|
|
| 61 |
$page = WDW_FMC_Library::get('page');
|
| 62 |
require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
|
| 63 |
|
| 64 |
-
if (($page != '') && (($page == 'manage_fmc') || ($page == 'submissions_fmc') || ($page == 'goptions_fmc') || ($page == 'blocked_ips_fmc') || ($page == 'themes_fmc') || ($page == 'licensing_fmc') || ($page == 'uninstall_fmc') || ($page == 'formcontactwindow') || ($page == '
|
| 65 |
require_once (WD_FMC_DIR . '/admin/controllers/FMController' . ucfirst(strtolower($page)) . '.php');
|
| 66 |
$controller_class = 'FMController' . ucfirst(strtolower($page));
|
| 67 |
$controller = new $controller_class();
|
|
@@ -69,51 +66,6 @@ function form_maker_cfm() {
|
|
| 69 |
}
|
| 70 |
}
|
| 71 |
|
| 72 |
-
function fmc_featured() {
|
| 73 |
-
if (function_exists('current_user_can')) {
|
| 74 |
-
if (!current_user_can('manage_options')) {
|
| 75 |
-
die('Access Denied');
|
| 76 |
-
}
|
| 77 |
-
}
|
| 78 |
-
else {
|
| 79 |
-
die('Access Denied');
|
| 80 |
-
}
|
| 81 |
-
require_once(WD_FMC_DIR . '/featured/featured.php');
|
| 82 |
-
wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
|
| 83 |
-
wp_print_styles('fmc_featured');
|
| 84 |
-
fmc_featured_page('contact-maker');
|
| 85 |
-
}
|
| 86 |
-
|
| 87 |
-
function fmc_featured_themes() {
|
| 88 |
-
if (function_exists('current_user_can')) {
|
| 89 |
-
if (!current_user_can('manage_options')) {
|
| 90 |
-
die('Access Denied');
|
| 91 |
-
}
|
| 92 |
-
}
|
| 93 |
-
else {
|
| 94 |
-
die('Access Denied');
|
| 95 |
-
}
|
| 96 |
-
require_once(WD_FMC_DIR . '/featured/featured_themes.php');
|
| 97 |
-
wp_register_style('fmc_featured_themes', WD_FMC_URL . '/featured/featured_themes.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
|
| 98 |
-
wp_print_styles('fmc_featured_themes');
|
| 99 |
-
fmc_featured_themes_page('contact-form-maker');
|
| 100 |
-
}
|
| 101 |
-
|
| 102 |
-
function fmc_extensions() {
|
| 103 |
-
if (function_exists('current_user_can')) {
|
| 104 |
-
if (!current_user_can('manage_options')) {
|
| 105 |
-
die('Access Denied');
|
| 106 |
-
}
|
| 107 |
-
}
|
| 108 |
-
else {
|
| 109 |
-
die('Access Denied');
|
| 110 |
-
}
|
| 111 |
-
require_once(WD_FMC_DIR . '/featured/featured.php');
|
| 112 |
-
wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
|
| 113 |
-
wp_print_styles('fmc_featured');
|
| 114 |
-
fmc_extensions_page('contact-form-maker');
|
| 115 |
-
}
|
| 116 |
-
|
| 117 |
add_action('wp_ajax_get_stats_fmc', 'form_maker_cfm'); //Show statistics
|
| 118 |
add_action('wp_ajax_generete_csv_fmc', 'form_maker_ajax_cfm'); // Export csv.
|
| 119 |
add_action('wp_ajax_generete_xml_fmc', 'form_maker_ajax_cfm'); // Export xml.
|
|
@@ -262,7 +214,7 @@ function form_maker_activate_cfm() {
|
|
| 262 |
return false;
|
| 263 |
}
|
| 264 |
$version = get_option("wd_form_maker_version");
|
| 265 |
-
$new_version = '1.8.
|
| 266 |
global $wpdb;
|
| 267 |
if (!$version) {
|
| 268 |
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
+
* Version: 1.8.42
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 38 |
|
| 39 |
$licensing_plugins_page = add_submenu_page('manage_fmc', 'Get Pro', 'Get Pro', 'manage_options', 'licensing_fmc', 'form_maker_cfm');
|
| 40 |
|
|
|
|
|
|
|
|
|
|
| 41 |
$uninstall_page = add_submenu_page('manage_fmc', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_fmc', 'form_maker_cfm');
|
| 42 |
add_action('admin_print_styles-' . $uninstall_page, 'form_maker_styles_cfm');
|
| 43 |
add_action('admin_print_scripts-' . $uninstall_page, 'form_maker_scripts_cfm');
|
| 58 |
$page = WDW_FMC_Library::get('page');
|
| 59 |
require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
|
| 60 |
|
| 61 |
+
if (($page != '') && (($page == 'manage_fmc') || ($page == 'submissions_fmc') || ($page == 'goptions_fmc') || ($page == 'blocked_ips_fmc') || ($page == 'themes_fmc') || ($page == 'licensing_fmc') || ($page == 'uninstall_fmc') || ($page == 'formcontactwindow') || ($page == 'extensions_fmc'))) {
|
| 62 |
require_once (WD_FMC_DIR . '/admin/controllers/FMController' . ucfirst(strtolower($page)) . '.php');
|
| 63 |
$controller_class = 'FMController' . ucfirst(strtolower($page));
|
| 64 |
$controller = new $controller_class();
|
| 66 |
}
|
| 67 |
}
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
add_action('wp_ajax_get_stats_fmc', 'form_maker_cfm'); //Show statistics
|
| 70 |
add_action('wp_ajax_generete_csv_fmc', 'form_maker_ajax_cfm'); // Export csv.
|
| 71 |
add_action('wp_ajax_generete_xml_fmc', 'form_maker_ajax_cfm'); // Export xml.
|
| 214 |
return false;
|
| 215 |
}
|
| 216 |
$version = get_option("wd_form_maker_version");
|
| 217 |
+
$new_version = '1.8.42';
|
| 218 |
global $wpdb;
|
| 219 |
if (!$version) {
|
| 220 |
|
featured/admin.css
DELETED
|
@@ -1,737 +0,0 @@
|
|
| 1 |
-
/**
|
| 2 |
-
* Admin CSS file
|
| 3 |
-
*/
|
| 4 |
-
#fm-tabs > div{
|
| 5 |
-
display:none;
|
| 6 |
-
}
|
| 7 |
-
#fm-settings{
|
| 8 |
-
background: #ffffff;
|
| 9 |
-
padding: 15px;
|
| 10 |
-
}
|
| 11 |
-
.fm-meta-control {
|
| 12 |
-
margin-bottom: 15px;
|
| 13 |
-
}
|
| 14 |
-
|
| 15 |
-
.fm-meta-control label {
|
| 16 |
-
display: block;
|
| 17 |
-
font-weight: bold;
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
#fm-admin-promo {
|
| 21 |
-
background-color: #fcf8e3;
|
| 22 |
-
border: 1px solid #faebbe;
|
| 23 |
-
color: #8a6d3b;
|
| 24 |
-
padding: 15px;
|
| 25 |
-
}
|
| 26 |
-
|
| 27 |
-
#fm_event_meta .inside code {
|
| 28 |
-
word-break: break-all;
|
| 29 |
-
}
|
| 30 |
-
|
| 31 |
-
.border{
|
| 32 |
-
border: 1px solid red;
|
| 33 |
-
}
|
| 34 |
-
|
| 35 |
-
/*Spider events*/
|
| 36 |
-
.fm_repeat_type_list{
|
| 37 |
-
float: left;
|
| 38 |
-
width: 30%;
|
| 39 |
-
}
|
| 40 |
-
.fm_repeat_advanced{
|
| 41 |
-
float: left;
|
| 42 |
-
width: 68%;
|
| 43 |
-
}
|
| 44 |
-
#fm_choose_day_container div label{
|
| 45 |
-
width: 120px;
|
| 46 |
-
display: inline-block;
|
| 47 |
-
}
|
| 48 |
-
#fm_choose_day_container div label:after{
|
| 49 |
-
clear: both;
|
| 50 |
-
}
|
| 51 |
-
#fm_choose_day_container div label input{
|
| 52 |
-
float: right;
|
| 53 |
-
margin: 1px;
|
| 54 |
-
}
|
| 55 |
-
.fm_icon{
|
| 56 |
-
max-width: 64px;
|
| 57 |
-
max-height: 64px;
|
| 58 |
-
}
|
| 59 |
-
|
| 60 |
-
.fm-modal .fm-calendar-event,
|
| 61 |
-
.fm-events .fm-calendar-event{
|
| 62 |
-
width:47%;
|
| 63 |
-
display: inline-block;
|
| 64 |
-
margin:0 20px 10px 0;
|
| 65 |
-
}
|
| 66 |
-
|
| 67 |
-
.fm-events .fm-calendar-event{
|
| 68 |
-
width:42%;
|
| 69 |
-
}
|
| 70 |
-
.fm-modal .fm-calendar-event span:first-child,
|
| 71 |
-
.fm-events .fm-calendar-event span:first-child{
|
| 72 |
-
border: 1px solid #C8C8C8;
|
| 73 |
-
display: inline-block;
|
| 74 |
-
width: 89%;
|
| 75 |
-
box-sizing: border-box;
|
| 76 |
-
padding: 2px 2px 2px 7px;
|
| 77 |
-
color: #7C7C7C;
|
| 78 |
-
white-space: nowrap;
|
| 79 |
-
text-overflow: ellipsis;
|
| 80 |
-
overflow: hidden;
|
| 81 |
-
float: left;
|
| 82 |
-
}
|
| 83 |
-
|
| 84 |
-
.fm-events .fm-calendar-event span:first-child{
|
| 85 |
-
width: 81%;
|
| 86 |
-
}
|
| 87 |
-
.fm-modal .fm-calendar-event:nth-child(even){
|
| 88 |
-
margin-right:0;
|
| 89 |
-
}
|
| 90 |
-
|
| 91 |
-
.fm-events .fm-calendar-event:after{
|
| 92 |
-
clear: both;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
.fm-modal .fm-calendar-event .fm-calendar-event-add,
|
| 96 |
-
.fm-events .fm-calendar-event-delete{
|
| 97 |
-
display: inline-block;
|
| 98 |
-
text-align: center;
|
| 99 |
-
float: left;
|
| 100 |
-
vertical-align: middle;
|
| 101 |
-
border-radius: 2px;
|
| 102 |
-
height: 24px;
|
| 103 |
-
width: 24px;
|
| 104 |
-
color: #FFFFff;
|
| 105 |
-
background-color: #0074A2;
|
| 106 |
-
cursor: pointer;
|
| 107 |
-
font-size: 19px;
|
| 108 |
-
}
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
.fm-events .fm-calendar-event-edit{
|
| 112 |
-
|
| 113 |
-
}
|
| 114 |
-
.fm-events .fm-calendar-event-edit a{
|
| 115 |
-
font-size: 0;
|
| 116 |
-
display: inline-block;
|
| 117 |
-
float: left;
|
| 118 |
-
margin: 0 1px;
|
| 119 |
-
border-radius: 2px;
|
| 120 |
-
height: 24px;
|
| 121 |
-
width: 24px;
|
| 122 |
-
background: url("../images/edit_icon.png") no-repeat center center;
|
| 123 |
-
}
|
| 124 |
-
.fm-events .fm-calendar-event-delete{
|
| 125 |
-
line-height: 20px;
|
| 126 |
-
}
|
| 127 |
-
|
| 128 |
-
.fm-calendar-event-add {
|
| 129 |
-
cursor: pointer;
|
| 130 |
-
}
|
| 131 |
-
|
| 132 |
-
.fm-modal {
|
| 133 |
-
position: fixed;
|
| 134 |
-
font-family: Arial, Helvetica, sans-serif;
|
| 135 |
-
overflow-y: scroll;
|
| 136 |
-
top: 0;
|
| 137 |
-
right: 0;
|
| 138 |
-
bottom: 0;
|
| 139 |
-
left: 0;
|
| 140 |
-
background: rgba(0, 0, 0, 0.8);
|
| 141 |
-
z-index: 99999;
|
| 142 |
-
opacity:0;
|
| 143 |
-
-webkit-transition: opacity 400ms ease-in;
|
| 144 |
-
-moz-transition: opacity 400ms ease-in;
|
| 145 |
-
transition: opacity 400ms ease-in;
|
| 146 |
-
pointer-events: none;
|
| 147 |
-
}
|
| 148 |
-
.fm-modal:target {
|
| 149 |
-
opacity:1;
|
| 150 |
-
pointer-events: auto;
|
| 151 |
-
}
|
| 152 |
-
.fm-modal > div.fm-excluded-events {
|
| 153 |
-
width: 500px !important;
|
| 154 |
-
position: relative;
|
| 155 |
-
margin: 10% auto;
|
| 156 |
-
padding: 0px 20px 16px 20px !important;
|
| 157 |
-
border-radius: 1px;
|
| 158 |
-
background: #fff;
|
| 159 |
-
}
|
| 160 |
-
.fm-modal > div.fm-preview {
|
| 161 |
-
position: relative;
|
| 162 |
-
margin: 5%;
|
| 163 |
-
padding: 5px 20px 13px 20px;
|
| 164 |
-
border-radius: 1px;
|
| 165 |
-
background: #fff;
|
| 166 |
-
min-width:600px;
|
| 167 |
-
}
|
| 168 |
-
|
| 169 |
-
.fm-close {
|
| 170 |
-
background: url(../images/close.png);
|
| 171 |
-
display: inline-block;
|
| 172 |
-
position: absolute;
|
| 173 |
-
right: 0px;
|
| 174 |
-
height: 29px;
|
| 175 |
-
top: 0px;
|
| 176 |
-
width: 29px;
|
| 177 |
-
text-decoration: none;
|
| 178 |
-
z-index: 4;
|
| 179 |
-
}
|
| 180 |
-
|
| 181 |
-
.fm-excluded-events h2{
|
| 182 |
-
margin: 15px 0;
|
| 183 |
-
padding-bottom: 15px !important;
|
| 184 |
-
border-bottom: 1px solid #B2B2B2;
|
| 185 |
-
}
|
| 186 |
-
|
| 187 |
-
.wd_stay_active {
|
| 188 |
-
background: none repeat scroll 0% 0% green !important;
|
| 189 |
-
box-shadow: 0px 1px 3px 0px #178FE5 inset !important;
|
| 190 |
-
color: #FFF !important;
|
| 191 |
-
font-weight: 700 !important;
|
| 192 |
-
}
|
| 193 |
-
#fm_event_pickup_date, #fm_event_pickup_time {
|
| 194 |
-
height: 27px;
|
| 195 |
-
border: 1px solid #A1A1A1;
|
| 196 |
-
border-radius: 0;
|
| 197 |
-
font-size: 13px;
|
| 198 |
-
color: #444444;
|
| 199 |
-
padding: 0 5px 0 27px;
|
| 200 |
-
margin-top: 1px;
|
| 201 |
-
}
|
| 202 |
-
|
| 203 |
-
#fm_event_pickup_date {
|
| 204 |
-
background:url(../images/admin_day.jpg) no-repeat left;
|
| 205 |
-
margin: 1px 8px;
|
| 206 |
-
}
|
| 207 |
-
#fm_event_pickup_time {
|
| 208 |
-
background:url(../images/admin_time.jpg) no-repeat left;
|
| 209 |
-
}
|
| 210 |
-
|
| 211 |
-
/*TABS*/
|
| 212 |
-
#fm-tabs, #fm-tabs div{
|
| 213 |
-
background: none #ffffff;
|
| 214 |
-
border: 0;
|
| 215 |
-
}
|
| 216 |
-
.fm-tabs{
|
| 217 |
-
list-style-type: none;
|
| 218 |
-
}
|
| 219 |
-
.fm-tabs li,
|
| 220 |
-
#fm-settings-content .nav-tab-wrapper a{
|
| 221 |
-
display: inline-block;
|
| 222 |
-
border: 1px solid #A5A5A5;
|
| 223 |
-
}
|
| 224 |
-
.fm-tabs li a,
|
| 225 |
-
#fm-settings-content .nav-tab-wrapper a{
|
| 226 |
-
display: table-cell;
|
| 227 |
-
text-align: center;
|
| 228 |
-
width: 100px;
|
| 229 |
-
height: 30px;
|
| 230 |
-
vertical-align: middle;
|
| 231 |
-
text-decoration:none;
|
| 232 |
-
color:#5E5E5E;
|
| 233 |
-
font-size: 16px;
|
| 234 |
-
}
|
| 235 |
-
|
| 236 |
-
#fm-settings-content .nav-tab-wrapper a{
|
| 237 |
-
background: #ffffff;
|
| 238 |
-
height: 21px;
|
| 239 |
-
margin-right: 4px;
|
| 240 |
-
display: inline-block;
|
| 241 |
-
font-weight: normal;
|
| 242 |
-
padding-top: 2px;
|
| 243 |
-
}
|
| 244 |
-
|
| 245 |
-
.fm-tabs li a:focus{
|
| 246 |
-
box-shadow:none;
|
| 247 |
-
}
|
| 248 |
-
.fm-tabs li:hover a,.fm-tabs li.ui-state-active a,
|
| 249 |
-
#fm-settings-content .nav-tab-wrapper a:hover,#fm-settings-content .nav-tab-wrapper a.nav-tab-active{
|
| 250 |
-
color:#ffffff;
|
| 251 |
-
background: #0074A2;
|
| 252 |
-
}
|
| 253 |
-
|
| 254 |
-
#fm-settings-content .nav-tab-wrapper {
|
| 255 |
-
border-bottom:0;
|
| 256 |
-
padding-left: 0;
|
| 257 |
-
}
|
| 258 |
-
|
| 259 |
-
.fm-tabs li:hover,.fm-tabs li.ui-state-active,
|
| 260 |
-
#fm-settings-content .nav-tab-wrapper a.nav-tab-active{
|
| 261 |
-
border: 1px solid transparent;
|
| 262 |
-
}
|
| 263 |
-
|
| 264 |
-
.fm-tab-inner{
|
| 265 |
-
padding: 15px;
|
| 266 |
-
}
|
| 267 |
-
|
| 268 |
-
/*Preview */
|
| 269 |
-
.ui-selecting { background: #FECA40 !important; }
|
| 270 |
-
.ui-selected { background: #F39814 !important;}
|
| 271 |
-
|
| 272 |
-
.event_cal_add {
|
| 273 |
-
width: 350px;
|
| 274 |
-
height: 130px;
|
| 275 |
-
padding: 40px 20px 0;
|
| 276 |
-
border: 1px solid #cccccc;
|
| 277 |
-
position: absolute;
|
| 278 |
-
z-index: 9999;
|
| 279 |
-
background: #ffffff;
|
| 280 |
-
}
|
| 281 |
-
.event_cal_add .close{
|
| 282 |
-
display: block;
|
| 283 |
-
line-height: 18px;
|
| 284 |
-
width: 20px;
|
| 285 |
-
font-size: 8pt;
|
| 286 |
-
margin-top: 1px;
|
| 287 |
-
margin-right: 1px;
|
| 288 |
-
position: absolute;
|
| 289 |
-
font-family: tahoma;
|
| 290 |
-
text-align: center;
|
| 291 |
-
top: 0;
|
| 292 |
-
right: 0;
|
| 293 |
-
cursor: pointer;
|
| 294 |
-
background-size: contain;
|
| 295 |
-
height: 20px;
|
| 296 |
-
}
|
| 297 |
-
|
| 298 |
-
.event_cal_add .add_event_to_cal{
|
| 299 |
-
display: block;
|
| 300 |
-
cursor: pointer;
|
| 301 |
-
padding-bottom: 10px;
|
| 302 |
-
margin: 25px 0 0 0;
|
| 303 |
-
width: 78px;
|
| 304 |
-
text-align: center;
|
| 305 |
-
line-height: 30px;
|
| 306 |
-
height: 20px;
|
| 307 |
-
background: #e3e3e3;
|
| 308 |
-
border: 1px solid #eeeeee;
|
| 309 |
-
}
|
| 310 |
-
.event_cal_add .fm_notification{
|
| 311 |
-
display: block;
|
| 312 |
-
height: 20px;
|
| 313 |
-
margin: 25px 0 0 0;
|
| 314 |
-
}
|
| 315 |
-
span.fm_error{
|
| 316 |
-
color: #bc0b0b;
|
| 317 |
-
display: block;
|
| 318 |
-
padding-left: 36px;
|
| 319 |
-
height: 20px;
|
| 320 |
-
|
| 321 |
-
}
|
| 322 |
-
#fm_calendar_meta h3.hndle{
|
| 323 |
-
color:#0074A2;
|
| 324 |
-
text-transform:uppercase;
|
| 325 |
-
font-size: 17px;
|
| 326 |
-
}
|
| 327 |
-
#fm-settings a.button{
|
| 328 |
-
border: 1px solid #A1A1A1;
|
| 329 |
-
padding: 0px 15px;
|
| 330 |
-
box-shadow: none;
|
| 331 |
-
border-radius: 0;
|
| 332 |
-
color: #000;
|
| 333 |
-
font-weight: bold;
|
| 334 |
-
}
|
| 335 |
-
#fm-settings a.button:hover{
|
| 336 |
-
border: 1px solid transparent;
|
| 337 |
-
color: #fff;
|
| 338 |
-
background: #0074A2;
|
| 339 |
-
}
|
| 340 |
-
#fm-settings input[type="text"],
|
| 341 |
-
#fm-settings select,
|
| 342 |
-
#fm_theme_meta input[type="text"]:not(#fm_event_location),
|
| 343 |
-
#fm_calendar_meta input[type="text"]:not(.fm-search),
|
| 344 |
-
#fm_calendar_meta select,
|
| 345 |
-
#fm_event_meta input[type="text"]:not(#fm_event_date_from):not(#fm_event_date_to):not(#fm_event_location),
|
| 346 |
-
#fm_event_meta select,
|
| 347 |
-
#fm_event_meta #fm_event_year_month,
|
| 348 |
-
#fm-settings .form-field input, #fm-settings input.regular-text{
|
| 349 |
-
width:250px;
|
| 350 |
-
border: 1px solid #A1A1A1;
|
| 351 |
-
}
|
| 352 |
-
#fm_event_date_from,#fm_event_date_to{
|
| 353 |
-
border: 1px solid #A1A1A1;
|
| 354 |
-
}
|
| 355 |
-
|
| 356 |
-
#fm-settings input[type="checkbox"],
|
| 357 |
-
#fm_event_meta input[type="checkbox"],
|
| 358 |
-
#fm-settings input[type="radio"]{
|
| 359 |
-
position: absolute;
|
| 360 |
-
z-index: -1;
|
| 361 |
-
margin: 0 !important;
|
| 362 |
-
width: 5px !important;
|
| 363 |
-
height: 5px !important;
|
| 364 |
-
min-width: 5px !important;
|
| 365 |
-
}
|
| 366 |
-
|
| 367 |
-
|
| 368 |
-
#fm-settings .checkbox-div,
|
| 369 |
-
#fm_event_meta .checkbox-div{
|
| 370 |
-
width: 13px;
|
| 371 |
-
height: 12px;
|
| 372 |
-
background: #FDFDFD;
|
| 373 |
-
border: 1px solid #CBCBCB;
|
| 374 |
-
border-radius: 0px;
|
| 375 |
-
position: relative;
|
| 376 |
-
display: inline-block;
|
| 377 |
-
top: 2px;
|
| 378 |
-
margin-right: 7px;
|
| 379 |
-
margin-left: 15px;
|
| 380 |
-
box-sizing: content-box;
|
| 381 |
-
-webkit-box-sizing: content-box;
|
| 382 |
-
-moz-box-sizing: content-box;
|
| 383 |
-
}
|
| 384 |
-
#fm-settings .checkbox-div:first-child{
|
| 385 |
-
margin-left: 0px;
|
| 386 |
-
}
|
| 387 |
-
|
| 388 |
-
#fm-settings .checkbox-div input[type="checkbox"]:checked + label ,
|
| 389 |
-
#fm_event_meta .checkbox-div input[type="checkbox"]:checked + label ,
|
| 390 |
-
#fm-settings .checkbox-div input[type="radio"]:checked + label {
|
| 391 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
| 392 |
-
filter: alpha(opacity=100);
|
| 393 |
-
opacity: 1;
|
| 394 |
-
background: #CBCBCB;
|
| 395 |
-
position: absolute;
|
| 396 |
-
top: 2px;
|
| 397 |
-
}
|
| 398 |
-
|
| 399 |
-
#fm-settings input[type="submit"] {
|
| 400 |
-
background: #0074A2;
|
| 401 |
-
color: #ffffff;
|
| 402 |
-
font-weight: bold;
|
| 403 |
-
font-size: 15px;
|
| 404 |
-
border: 0;
|
| 405 |
-
border-radius: 0;
|
| 406 |
-
padding: 5px 25px;
|
| 407 |
-
height: auto;
|
| 408 |
-
}
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
#fm_event_meta .checkbox-div label,
|
| 412 |
-
#fm-settings .checkbox-div label {
|
| 413 |
-
cursor: pointer;
|
| 414 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
| 415 |
-
filter: alpha(opacity=0);
|
| 416 |
-
opacity: 0;
|
| 417 |
-
content: "";
|
| 418 |
-
position: absolute;
|
| 419 |
-
width: 9px;
|
| 420 |
-
height: 8px;
|
| 421 |
-
background: #CBCBCB;
|
| 422 |
-
border-radius: 0px;
|
| 423 |
-
top: 2px;
|
| 424 |
-
left: 2px;
|
| 425 |
-
}
|
| 426 |
-
|
| 427 |
-
#fm_calendar_meta .add_event_plus{
|
| 428 |
-
display:inline-block;
|
| 429 |
-
width:18px;
|
| 430 |
-
height:18px;
|
| 431 |
-
border-radius:100%;
|
| 432 |
-
background:#0074A2;
|
| 433 |
-
color:#ffffff;
|
| 434 |
-
text-shadow:1px -1px 2px #005C82;
|
| 435 |
-
margin-left:8px;
|
| 436 |
-
text-align:center;
|
| 437 |
-
font-weight: bold;
|
| 438 |
-
font-size: 15px;
|
| 439 |
-
line-height: 17px;
|
| 440 |
-
}
|
| 441 |
-
#fm_calendar_meta .fm-calendar-event-add a:focus{
|
| 442 |
-
box-shadow:none;
|
| 443 |
-
}
|
| 444 |
-
#fm_event_meta .repeat_format{
|
| 445 |
-
width: 90px;
|
| 446 |
-
display: inline-block;
|
| 447 |
-
}
|
| 448 |
-
#fm_event_meta .repeat_format_monthly{
|
| 449 |
-
width: 66px;
|
| 450 |
-
display: inline-block;
|
| 451 |
-
}
|
| 452 |
-
#fm_event_meta #fm_event_year_month{
|
| 453 |
-
margin: 10px 0 0 95px;
|
| 454 |
-
}
|
| 455 |
-
#fm_event_meta #fm_choose_day_container{
|
| 456 |
-
margin-top: 10px;
|
| 457 |
-
}
|
| 458 |
-
#fm_event_meta #fm_choose_day_container .checkbox-div{
|
| 459 |
-
margin-left: 0px;
|
| 460 |
-
}
|
| 461 |
-
#fm_event_meta .fm_repeat_advanced input[type="text"],
|
| 462 |
-
#fm_event_meta .fm_repeat_advanced select{
|
| 463 |
-
width: auto;
|
| 464 |
-
}
|
| 465 |
-
|
| 466 |
-
#fm_event_meta #fm_monthly,
|
| 467 |
-
#fm_event_meta .fm_event_repeat_event_div{
|
| 468 |
-
margin:10px 0;
|
| 469 |
-
}
|
| 470 |
-
|
| 471 |
-
#fm_event_meta .select_to_enable_disable{
|
| 472 |
-
width:122px !important;
|
| 473 |
-
}
|
| 474 |
-
|
| 475 |
-
#fm_theme_meta label{
|
| 476 |
-
display:inline-block;
|
| 477 |
-
width:290px;
|
| 478 |
-
font-weight: normal;
|
| 479 |
-
font-size: 15px;
|
| 480 |
-
}
|
| 481 |
-
|
| 482 |
-
#fm_theme_meta .fm-tab-inner > div{
|
| 483 |
-
margin:20px 0;
|
| 484 |
-
}
|
| 485 |
-
#fm_theme_meta .fm-tab-inner > div:first-child{
|
| 486 |
-
margin-top:0;
|
| 487 |
-
}
|
| 488 |
-
#fm_theme_meta .with_fm_color:after,
|
| 489 |
-
#fm-settings-content .fm-addons_updates:after,
|
| 490 |
-
#fm-settings-content .main-plugin:after,
|
| 491 |
-
#fm-settings-content:after{
|
| 492 |
-
content:'';
|
| 493 |
-
display:table;
|
| 494 |
-
clear:both;
|
| 495 |
-
}
|
| 496 |
-
#fm_theme_meta .with_fm_color label{
|
| 497 |
-
float: left;
|
| 498 |
-
margin-top: 5px;
|
| 499 |
-
width: 293px;
|
| 500 |
-
}
|
| 501 |
-
#fm_theme_meta .with_fm_color > div{
|
| 502 |
-
float: left;
|
| 503 |
-
}
|
| 504 |
-
.fm-import-settings form{
|
| 505 |
-
float:left;
|
| 506 |
-
width:45%;
|
| 507 |
-
}
|
| 508 |
-
.fm-import-settings input[type=file]{
|
| 509 |
-
margin: 10px 0;
|
| 510 |
-
}
|
| 511 |
-
.fm-import-settings .fm-calendar-event-import{
|
| 512 |
-
font-size: 15px;
|
| 513 |
-
}
|
| 514 |
-
|
| 515 |
-
#fm-settings-content #add_on_title{
|
| 516 |
-
margin-bottom:20px;
|
| 517 |
-
}
|
| 518 |
-
|
| 519 |
-
#fm-settings-content .fm_coming_soon {
|
| 520 |
-
position: absolute;
|
| 521 |
-
top: 44px;
|
| 522 |
-
left: 0;
|
| 523 |
-
}
|
| 524 |
-
#fm-settings-content .fm-add-on a{
|
| 525 |
-
text-decoration: none;
|
| 526 |
-
}
|
| 527 |
-
#fm-settings-content .fm-add-on h2{
|
| 528 |
-
color: #229DBF;
|
| 529 |
-
font-size: 16px;
|
| 530 |
-
margin-bottom: 9px;
|
| 531 |
-
padding: 0 0 7px;
|
| 532 |
-
line-height: 1.2;
|
| 533 |
-
}
|
| 534 |
-
#fm-settings-content .fm-addon-descr{
|
| 535 |
-
font-size: 13px;
|
| 536 |
-
line-height: 18px;
|
| 537 |
-
height: 100%;
|
| 538 |
-
width: 53%;
|
| 539 |
-
opacity: 0;
|
| 540 |
-
position: absolute;
|
| 541 |
-
top: 0;
|
| 542 |
-
left: 0;
|
| 543 |
-
padding: 8px 10px 10px;
|
| 544 |
-
background: #23282D;
|
| 545 |
-
color: #D1DDE0;
|
| 546 |
-
-webkit-backface-visibility: hidden;
|
| 547 |
-
-moz-backface-visibility: hidden;
|
| 548 |
-
backface-visibility: hidden;
|
| 549 |
-
-webkit-transform-origin: 0 0;
|
| 550 |
-
-moz-transform-origin: 0 0;
|
| 551 |
-
transform-origin: 0 0;
|
| 552 |
-
-webkit-transform: rotateY(-90deg);
|
| 553 |
-
-moz-transform: rotateY(-90deg);
|
| 554 |
-
transform: rotateY(-90deg);
|
| 555 |
-
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
|
| 556 |
-
-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
|
| 557 |
-
transition: transform 0.4s, opacity 0.1s 0.3s;
|
| 558 |
-
box-sizing: border-box;
|
| 559 |
-
-webkit-box-sizing: border-box;
|
| 560 |
-
-moz-box-sizing: border-box;
|
| 561 |
-
}
|
| 562 |
-
.grid figcaption {
|
| 563 |
-
position: absolute;
|
| 564 |
-
top: 0;
|
| 565 |
-
left: 0;
|
| 566 |
-
padding: 20px;
|
| 567 |
-
background: #2c3f52;
|
| 568 |
-
color: #ed4e6e;
|
| 569 |
-
}
|
| 570 |
-
#fm-settings-content .fm-addon,
|
| 571 |
-
#fm-settings-content .fm-addon-price{
|
| 572 |
-
display: inline-block;
|
| 573 |
-
margin-top: 15px;
|
| 574 |
-
font-size: 15px;
|
| 575 |
-
border: 1px solid #DCDCDC;
|
| 576 |
-
font-weight: bold;
|
| 577 |
-
}
|
| 578 |
-
#fm-settings-content .fm-addon{
|
| 579 |
-
background: #FFFFFF url(../images/Add_Ons.jpg) no-repeat 6px center;
|
| 580 |
-
color: #66686B;
|
| 581 |
-
padding: 9px 12px 9px 45px;
|
| 582 |
-
width: 100%;
|
| 583 |
-
box-sizing: border-box;
|
| 584 |
-
-webkit-box-sizing: border-box;
|
| 585 |
-
-moz-box-sizing: border-box;
|
| 586 |
-
}
|
| 587 |
-
#fm-settings-content .fm-addon-price{
|
| 588 |
-
background: #FFFFFF;
|
| 589 |
-
color: #229CBF;
|
| 590 |
-
padding: 9px 12px;
|
| 591 |
-
}
|
| 592 |
-
#fm-settings-content .fm-add-on:hover .fm-addon-price,
|
| 593 |
-
#fm-settings-content .fm-addon-price:hover{
|
| 594 |
-
background: #229CBF;
|
| 595 |
-
color: #DDECF1;
|
| 596 |
-
}
|
| 597 |
-
#fm-settings-content .fm-add-on:hover .fm-addon,
|
| 598 |
-
#fm-settings-content .fm-addon:hover{
|
| 599 |
-
background: #23282D url(../images/Add_Ons_hover.jpg) no-repeat 6px center;
|
| 600 |
-
color: #DDDEDE;
|
| 601 |
-
}
|
| 602 |
-
#fm-settings-content .fm-addon span{
|
| 603 |
-
border-left: 1px solid #A7A9AB;
|
| 604 |
-
padding: 4px 10px 4px 10px;
|
| 605 |
-
}
|
| 606 |
-
#fm-settings-content .fm-addon-descr span{
|
| 607 |
-
padding: 5px 0 5px 10px;
|
| 608 |
-
border-left: 1px solid #93CEE0;
|
| 609 |
-
}
|
| 610 |
-
#fm-settings-content a:focus{
|
| 611 |
-
outline:none;
|
| 612 |
-
box-shadow:none;
|
| 613 |
-
}
|
| 614 |
-
#fm-settings-content .fm-add-on{
|
| 615 |
-
width:310px;
|
| 616 |
-
float:left;
|
| 617 |
-
margin-right:40px;
|
| 618 |
-
margin-bottom:57px;
|
| 619 |
-
-webkit-perspective: 1700px;
|
| 620 |
-
-moz-perspective: 1700px;
|
| 621 |
-
perspective: 1700px;
|
| 622 |
-
-webkit-perspective-origin: 0 50%;
|
| 623 |
-
-moz-perspective-origin: 0 50%;
|
| 624 |
-
perspective-origin: 0 50%;
|
| 625 |
-
position: relative;
|
| 626 |
-
}
|
| 627 |
-
#fm-settings-content .main-plugin .fm-add-on{
|
| 628 |
-
float: left;
|
| 629 |
-
margin-right: 25px;
|
| 630 |
-
height: auto;
|
| 631 |
-
}
|
| 632 |
-
#fm-settings-content .fm-figure{
|
| 633 |
-
-webkit-transform-style: preserve-3d;
|
| 634 |
-
-moz-transform-style: preserve-3d;
|
| 635 |
-
transform-style: preserve-3d;
|
| 636 |
-
position: relative;
|
| 637 |
-
width:100%;
|
| 638 |
-
height: 232px;
|
| 639 |
-
margin: 0;
|
| 640 |
-
}
|
| 641 |
-
#fm-settings-content .fm-figure-img{
|
| 642 |
-
overflow: hidden;
|
| 643 |
-
}
|
| 644 |
-
#fm-settings-content .fm-figure-img img{
|
| 645 |
-
-webkit-transition: -webkit-transform 0.4s;
|
| 646 |
-
-moz-transition: -moz-transform 0.4s;
|
| 647 |
-
transition: transform 0.4s;
|
| 648 |
-
}
|
| 649 |
-
#fm-settings-content .fm-figure:hover img{
|
| 650 |
-
-webkit-transform: translateX(25%);
|
| 651 |
-
-moz-transform: translateX(25%);
|
| 652 |
-
-ms-transform: translateX(25%);
|
| 653 |
-
transform: translateX(25%);
|
| 654 |
-
}
|
| 655 |
-
#fm-settings-content .fm-figure:hover figcaption{
|
| 656 |
-
opacity: 1;
|
| 657 |
-
-webkit-transform: rotateY(0deg);
|
| 658 |
-
-moz-transform: rotateY(0deg);
|
| 659 |
-
transform: rotateY(0deg);
|
| 660 |
-
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
|
| 661 |
-
-moz-transition: -moz-transform 0.4s, opacity 0.1s;
|
| 662 |
-
transition: transform 0.4s, opacity 0.1s;
|
| 663 |
-
}
|
| 664 |
-
#fm-settings-content .fm-addon-subtitle {
|
| 665 |
-
font-size: 25px;
|
| 666 |
-
border-bottom: 1px solid #C1C4C7;
|
| 667 |
-
padding-bottom: 23px;
|
| 668 |
-
}
|
| 669 |
-
#fm-settings-content .main-plugin .main-plugin-img {
|
| 670 |
-
float: left;
|
| 671 |
-
margin-right: 2%;
|
| 672 |
-
width: 26%;
|
| 673 |
-
}
|
| 674 |
-
#fm-settings-content .main-plugin .main-plugin-img img{
|
| 675 |
-
max-width:100%;
|
| 676 |
-
}
|
| 677 |
-
#fm-settings-content .main-plugin .main-plugin-info {
|
| 678 |
-
float: left;
|
| 679 |
-
}
|
| 680 |
-
#fm-settings-content .main-plugin {
|
| 681 |
-
margin-bottom: 25px;
|
| 682 |
-
}
|
| 683 |
-
#fm-settings-content .main-plugin_desc-cont p,
|
| 684 |
-
#fm-settings-content .main-plugin_desc-cont {
|
| 685 |
-
font-size: 14px;
|
| 686 |
-
}
|
| 687 |
-
#fm-settings-content .main-plugin-desc-info p{
|
| 688 |
-
margin: 2px 0 13px;
|
| 689 |
-
}
|
| 690 |
-
#fm-settings-content .fm-addons_updates .main-plugin-desc-info p{
|
| 691 |
-
margin: 2px 0 4px;
|
| 692 |
-
}
|
| 693 |
-
#fm-settings-content .main-plugin-desc {
|
| 694 |
-
margin-bottom: 12px;
|
| 695 |
-
}
|
| 696 |
-
#fm-settings-content .main-plugin-info h2 {
|
| 697 |
-
padding: 0;
|
| 698 |
-
line-height: 1;
|
| 699 |
-
margin-bottom: 14px;
|
| 700 |
-
}
|
| 701 |
-
#fm-settings-content .main-plugin-info h2 a {
|
| 702 |
-
color: #323A45;
|
| 703 |
-
text-decoration: none;
|
| 704 |
-
font-weight: bold;
|
| 705 |
-
}
|
| 706 |
-
#fm-settings-content .main-plugin-desc-info {
|
| 707 |
-
border-bottom: 1px solid #C0C4C7;
|
| 708 |
-
width: 71%;
|
| 709 |
-
}
|
| 710 |
-
#fm-settings-content .fm-addons_updates .main-plugin-desc-info {
|
| 711 |
-
border-bottom: 0;
|
| 712 |
-
width: 100%;
|
| 713 |
-
}
|
| 714 |
-
#fm-settings-content .update-info {
|
| 715 |
-
background:url(../assets/updates_icon.jpg) no-repeat;
|
| 716 |
-
padding-left:25px;
|
| 717 |
-
color: #bc0b0b;
|
| 718 |
-
}
|
| 719 |
-
#fm-settings-content .fm-addons_updates .fm-figure {
|
| 720 |
-
margin-bottom: 10px;
|
| 721 |
-
}
|
| 722 |
-
#fm-settings-content .fm-addons_updates .fm-addon-descr-update {
|
| 723 |
-
border-top: 1px solid #898989;
|
| 724 |
-
padding-top: 6px;
|
| 725 |
-
}
|
| 726 |
-
#fm-settings-content .fm-addons_updates h2{
|
| 727 |
-
color: #323A45;
|
| 728 |
-
text-decoration: none;
|
| 729 |
-
font-weight: bold;
|
| 730 |
-
border-bottom: 0;
|
| 731 |
-
padding-bottom: 0;
|
| 732 |
-
margin-bottom: 0;
|
| 733 |
-
}
|
| 734 |
-
|
| 735 |
-
.fm_more_updates {
|
| 736 |
-
display: none;
|
| 737 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
featured/featured.php
DELETED
|
@@ -1,322 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
function fmc_featured_page($current_plugin = '') {
|
| 3 |
-
$plugins = array(
|
| 4 |
-
"ecommerce-wd" => array(
|
| 5 |
-
'title' => 'Ecommerce',
|
| 6 |
-
'text' => 'Wordpress ecommerce plugin',
|
| 7 |
-
'content' => 'Ecommerce WD is a highly-functional, user friendly WordPress Ecommerce plugin, which is perfect for developing online stores for any level of complexity.',
|
| 8 |
-
'href' => 'https://web-dorado.com/products/wordpress-ecommerce.html'
|
| 9 |
-
),
|
| 10 |
-
"form-maker" => array(
|
| 11 |
-
'title' => 'Form Maker',
|
| 12 |
-
'text' => 'Wordpress form builder plugin',
|
| 13 |
-
'content' => 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.',
|
| 14 |
-
'href' => 'https://web-dorado.com/products/wordpress-form.html'
|
| 15 |
-
),
|
| 16 |
-
"mailchimp" => array(
|
| 17 |
-
'title' => 'MailChimp WD',
|
| 18 |
-
'text' => 'MailChimp WD plugin',
|
| 19 |
-
'content' => 'MailChimp WD is a functional plugin developed to create MailChimp subscribe/unsubscribe forms and manage lists from your WordPress site.',
|
| 20 |
-
'href' => 'https://web-dorado.com/products/wordpress-mailchimp-wd.html'
|
| 21 |
-
),
|
| 22 |
-
"photo-gallery" => array(
|
| 23 |
-
'title' => 'Photo Gallery',
|
| 24 |
-
'text' => 'WordPress Photo Gallery plugin',
|
| 25 |
-
'content' => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.',
|
| 26 |
-
'href' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
|
| 27 |
-
),
|
| 28 |
-
"contact_form_bulder" => array(
|
| 29 |
-
'title' => 'Contact Form Builder',
|
| 30 |
-
'text' => 'WordPress contact form builder plugin',
|
| 31 |
-
'content' => 'Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors.',
|
| 32 |
-
'href' => 'https://web-dorado.com/products/wordpress-contact-form-builder.html'
|
| 33 |
-
),
|
| 34 |
-
"slider_wd" => array(
|
| 35 |
-
'title' => 'Slider WD',
|
| 36 |
-
'text' => 'WordPress slider plugin',
|
| 37 |
-
'content' => 'Create responsive, highly configurable sliders with various effects for your WordPress site.',
|
| 38 |
-
'href' => 'https://web-dorado.com/products/wordpress-slider-plugin.html'
|
| 39 |
-
),
|
| 40 |
-
"events-wd" => array(
|
| 41 |
-
'title' => 'Event Calendar WD',
|
| 42 |
-
'text' => 'WordPress calendar plugin',
|
| 43 |
-
'content' => 'Organize and publish your events in an easy and elegant way using Event Calendar WD.',
|
| 44 |
-
'href' => 'https://web-dorado.com/products/wordpress-event-calendar-wd.html'
|
| 45 |
-
),
|
| 46 |
-
"contact-maker" => array(
|
| 47 |
-
'title' => 'Contact Form Maker',
|
| 48 |
-
'text' => 'WordPress contact form maker plugin',
|
| 49 |
-
'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
|
| 50 |
-
'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
|
| 51 |
-
),
|
| 52 |
-
"spider-calendar" => array(
|
| 53 |
-
'title' => 'Spider Calendar',
|
| 54 |
-
'text' => 'WordPress event calendar plugin',
|
| 55 |
-
'content' => 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.',
|
| 56 |
-
'href' => 'https://web-dorado.com/products/wordpress-calendar.html'
|
| 57 |
-
),
|
| 58 |
-
"catalog" => array(
|
| 59 |
-
'title' => 'Spider Catalog',
|
| 60 |
-
'text' => 'WordPress product catalog plugin',
|
| 61 |
-
'content' => 'Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.',
|
| 62 |
-
'href' => 'https://web-dorado.com/products/wordpress-catalog.html'
|
| 63 |
-
),
|
| 64 |
-
"player" => array(
|
| 65 |
-
'title' => 'Video Player',
|
| 66 |
-
'text' => 'WordPress Video player plugin',
|
| 67 |
-
'content' => 'Spider Video Player for WordPress is a Flash & HTML5 video player plugin that allows you to easily add videos to your website with the possibility.',
|
| 68 |
-
'href' => 'https://web-dorado.com/products/wordpress-player.html'
|
| 69 |
-
),
|
| 70 |
-
"contacts" => array(
|
| 71 |
-
'title' => 'Spider Contacts',
|
| 72 |
-
'text' => 'Wordpress staff list plugin',
|
| 73 |
-
'content' => 'Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.',
|
| 74 |
-
'href' => 'https://web-dorado.com/products/wordpress-contacts-plugin.html'
|
| 75 |
-
),
|
| 76 |
-
"facebook" => array(
|
| 77 |
-
'title' => 'Spider Facebook',
|
| 78 |
-
'text' => 'WordPress Facebook plugin',
|
| 79 |
-
'content' => 'Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets.',
|
| 80 |
-
'href' => 'https://web-dorado.com/products/wordpress-facebook.html'
|
| 81 |
-
),
|
| 82 |
-
"facebook-feed" => array(
|
| 83 |
-
'title' => 'Facebook Feed',
|
| 84 |
-
'text' => 'WordPress Facebook Feed plugin',
|
| 85 |
-
'content' => 'Facebook Feed WD is a plugin, which allows embedding Facebook group, page and profile feeds into your website.',
|
| 86 |
-
'href' => 'https://web-dorado.com/products/wordpress-facebook-feed-plugin.html'
|
| 87 |
-
),
|
| 88 |
-
"twitter-widget" => array(
|
| 89 |
-
'title' => 'Widget Twitter',
|
| 90 |
-
'text' => 'WordPress Widget Twitter plugin',
|
| 91 |
-
'content' => 'The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.',
|
| 92 |
-
'href' => 'https://web-dorado.com/products/wordpress-twitter-integration-plugin.html'
|
| 93 |
-
),
|
| 94 |
-
"faq" => array(
|
| 95 |
-
'title' => 'Spider FAQ',
|
| 96 |
-
'text' => 'WordPress FAQ Plugin',
|
| 97 |
-
'content' => 'The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.',
|
| 98 |
-
'href' => 'https://web-dorado.com/products/wordpress-faq-plugin.html'
|
| 99 |
-
),
|
| 100 |
-
"zoom" => array(
|
| 101 |
-
'title' => 'Zoom',
|
| 102 |
-
'text' => 'WordPress text zoom plugin',
|
| 103 |
-
'content' => 'Zoom enables site users to resize the predefined areas of the web site.',
|
| 104 |
-
'href' => 'https://web-dorado.com/products/wordpress-zoom.html'
|
| 105 |
-
),
|
| 106 |
-
"flash-calendar" => array(
|
| 107 |
-
'title' => 'Flash Calendar',
|
| 108 |
-
'text' => 'WordPress flash calendar plugin',
|
| 109 |
-
'content' => 'Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.',
|
| 110 |
-
'href' => 'https://web-dorado.com/products/wordpress-events-calendar.html'
|
| 111 |
-
),
|
| 112 |
-
"folder_menu" => array(
|
| 113 |
-
'title' => 'Folder Menu',
|
| 114 |
-
'text' => 'WordPress folder menu plugin',
|
| 115 |
-
'content' => 'Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences.',
|
| 116 |
-
'href' => 'https://web-dorado.com/products/wordpress-random-post.html'
|
| 117 |
-
),
|
| 118 |
-
"random_post" => array(
|
| 119 |
-
'title' => 'Random post',
|
| 120 |
-
'text' => 'WordPress random post plugin',
|
| 121 |
-
'content' => 'Spider Random Post is a small but very smart solution for your WordPress web site.',
|
| 122 |
-
'href' => 'https://web-dorado.com/products/wordpress-random-post.html'
|
| 123 |
-
),
|
| 124 |
-
"faq_wd" => array(
|
| 125 |
-
'title' => 'FAQ WD',
|
| 126 |
-
'text' => 'WordPress FAQ plugin',
|
| 127 |
-
'content' => 'Organize and publish your FAQs in an easy and elegant way using FAQ WD.',
|
| 128 |
-
'href' => 'https://web-dorado.com/products/wordpress-faq-wd.html'
|
| 129 |
-
),
|
| 130 |
-
"instagram_feed" => array(
|
| 131 |
-
'title' => 'Instagram Feed WD',
|
| 132 |
-
'text' => 'WordPress Instagram Feed plugin',
|
| 133 |
-
'content' => 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.',
|
| 134 |
-
'href' => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
|
| 135 |
-
),
|
| 136 |
-
"post-slider" => array(
|
| 137 |
-
'title' => 'Post Slider',
|
| 138 |
-
'text' => 'WordPress Post Slider plugin',
|
| 139 |
-
'content' => 'Post Slider WD is designed to show off the selected posts of your website in a slider.',
|
| 140 |
-
'href' => 'https://web-dorado.com/products/wordpress-post-slider-plugin.html'
|
| 141 |
-
),
|
| 142 |
-
"google-maps" => array(
|
| 143 |
-
'title' => 'Google Map',
|
| 144 |
-
'text' => 'WordPress Google Maps Plugin',
|
| 145 |
-
'content' => 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.',
|
| 146 |
-
'href' => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
|
| 147 |
-
),
|
| 148 |
-
);
|
| 149 |
-
?>
|
| 150 |
-
<div id="main_featured_plugins_page">
|
| 151 |
-
<h3>Featured Plugins</h3>
|
| 152 |
-
<div class="featured_header">
|
| 153 |
-
<a href="https://web-dorado.com/wordpress-plugins.html?source=contactformmaker" target="_blank">
|
| 154 |
-
<h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +23 PLUGINS</h1>
|
| 155 |
-
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
| 156 |
-
<div class="try-now">
|
| 157 |
-
<span>TRY NOW</span>
|
| 158 |
-
</div>
|
| 159 |
-
</a>
|
| 160 |
-
</div>
|
| 161 |
-
<ul id="featured-plugins-list">
|
| 162 |
-
<?php
|
| 163 |
-
foreach ($plugins as $key => $plugins) {
|
| 164 |
-
if ($current_plugin != $key) {
|
| 165 |
-
?>
|
| 166 |
-
<li class="<?php echo $key; ?>">
|
| 167 |
-
<div class="product"></div>
|
| 168 |
-
<div class="title">
|
| 169 |
-
<strong class="heading"><?php echo $plugins['title']; ?></strong>
|
| 170 |
-
</div>
|
| 171 |
-
<div class="description">
|
| 172 |
-
<p><?php echo $plugins['content']; ?></p>
|
| 173 |
-
</div>
|
| 174 |
-
<a target="_blank" href="<?php echo $plugins['href']; ?>?source=contactformmaker" class="download">Download Plugin ►</a>
|
| 175 |
-
</li>
|
| 176 |
-
<?php
|
| 177 |
-
}
|
| 178 |
-
}
|
| 179 |
-
?>
|
| 180 |
-
</ul>
|
| 181 |
-
</div>
|
| 182 |
-
<?php
|
| 183 |
-
}
|
| 184 |
-
function fmc_extensions_page($current_plugin = '') {
|
| 185 |
-
|
| 186 |
-
$addons = array(
|
| 187 |
-
'Form Maker Add-ons' => array(
|
| 188 |
-
'imp_exp' => array(
|
| 189 |
-
'name' => 'Import/Export',
|
| 190 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/export-import.html',
|
| 191 |
-
'description' => 'Form Maker Export/Import WordPress plugin allows exporting and importing forms with/without submissions.',
|
| 192 |
-
'icon' => '',
|
| 193 |
-
'image' => plugins_url( '../assets/import_export.png', __FILE__ ),
|
| 194 |
-
),
|
| 195 |
-
'mailchimp' => array(
|
| 196 |
-
'name' => 'MailChimp',
|
| 197 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html',
|
| 198 |
-
'description' => 'This add-on is an integration of the Form Maker with MailChimp which allows to add contacts to your subscription lists just from submitted forms.',
|
| 199 |
-
'icon' => '',
|
| 200 |
-
'image' => plugins_url( '../assets/mailchimp.png', __FILE__ ),
|
| 201 |
-
),
|
| 202 |
-
'reg' => array(
|
| 203 |
-
'name' => 'Registration',
|
| 204 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/registration.html',
|
| 205 |
-
'description' => 'User Registration add-on integrates with Form maker forms allowing users to create accounts at your website.',
|
| 206 |
-
'icon' => '',
|
| 207 |
-
'image' => plugins_url( '../assets/reg.png', __FILE__ ),
|
| 208 |
-
),
|
| 209 |
-
'post_generation' => array(
|
| 210 |
-
'name' => 'Post Generation',
|
| 211 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html',
|
| 212 |
-
'description' => 'Post Generation add-on allows WD_FMC_URL a post, page or custom post based on the submitted data.',
|
| 213 |
-
'icon' => '',
|
| 214 |
-
'image' => plugins_url( '../assets/post-generation-update.png', __FILE__ ),
|
| 215 |
-
),
|
| 216 |
-
'conditional_emails' => array(
|
| 217 |
-
'name' => 'Conditional Emails',
|
| 218 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html',
|
| 219 |
-
'description' => 'Conditional Emails add-on allows to send emails to different recipients depending on the submitted data .',
|
| 220 |
-
'icon' => '',
|
| 221 |
-
'image' => plugins_url( '../assets/conditional-emails-update.png', __FILE__ ),
|
| 222 |
-
),
|
| 223 |
-
'dropbox_integration' => array(
|
| 224 |
-
'name' => 'Dropbox Integration',
|
| 225 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html',
|
| 226 |
-
'description' => 'The Form Maker Dropbox Integration addon is extending the Form Maker capabilities allowing to store the form attachments straight to your Dropbox account.',
|
| 227 |
-
'icon' => '',
|
| 228 |
-
'image' => plugins_url( '../assets/dropbox-integration-update.png', __FILE__ ),
|
| 229 |
-
),
|
| 230 |
-
'gdrive_integration' => array(
|
| 231 |
-
'name' => 'Google Drive Integration',
|
| 232 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html',
|
| 233 |
-
'description' => 'The Google Drive Integration add-on integrates Form Maker with Google Drive and allows you to send the file uploads to the Google Drive',
|
| 234 |
-
'icon' => '',
|
| 235 |
-
'image' => plugins_url( '../assets/google_drive_integration.png', __FILE__ ),
|
| 236 |
-
),
|
| 237 |
-
'pdf_integration' => array(
|
| 238 |
-
'name' => 'PDF Integration',
|
| 239 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/pdf.html',
|
| 240 |
-
'description' => 'The Form Maker PDF Integration add-on allows sending submitted forms in PDF format.',
|
| 241 |
-
'icon' => '',
|
| 242 |
-
'image' => plugins_url( '../assets/pdf-integration.png', __FILE__ ),
|
| 243 |
-
),
|
| 244 |
-
'pushover' => array(
|
| 245 |
-
'name' => 'Pushover',
|
| 246 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/pushover.html',
|
| 247 |
-
'description' => 'Form Maker Pushover integration allows to receive real-time notifications when a user submits a new form. This means messages can be pushed to Android and Apple devices, as well as desktop notification board.',
|
| 248 |
-
'icon' => '',
|
| 249 |
-
'image' => plugins_url( '../assets/pushover.png', __FILE__ ),
|
| 250 |
-
),
|
| 251 |
-
'form-maker-save-progress' => array(
|
| 252 |
-
'name' => 'Save Progress',
|
| 253 |
-
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/save-progress.html',
|
| 254 |
-
'description' => 'The add-on allows to save filled in forms as draft and continue editing them subsequently.',
|
| 255 |
-
'icon' => '',
|
| 256 |
-
'image' => plugins_url( '../assets/save-progress.png', __FILE__ ),
|
| 257 |
-
)
|
| 258 |
-
)
|
| 259 |
-
);
|
| 260 |
-
|
| 261 |
-
|
| 262 |
-
|
| 263 |
-
?>
|
| 264 |
-
<link href="<?php echo plugins_url( 'admin.css', __FILE__ )?>" rel="stylesheet"/>
|
| 265 |
-
<div class="wrap">
|
| 266 |
-
<?php settings_errors(); ?>
|
| 267 |
-
<div id="fm-settings">
|
| 268 |
-
<div id="fm-settings-content" >
|
| 269 |
-
<h2 id="add_on_title"><?php echo esc_html(get_admin_page_title()); ?></h2>
|
| 270 |
-
<?php
|
| 271 |
-
if($addons){
|
| 272 |
-
foreach ($addons as $name=>$cat) {
|
| 273 |
-
?>
|
| 274 |
-
|
| 275 |
-
<!-- <div style="clear: both; margin-top: 15px;"> <h3 class="fm-addon-subtitle"><?php echo $name?> </h3></div> -->
|
| 276 |
-
<?php
|
| 277 |
-
foreach ( $cat as $addon ) {
|
| 278 |
-
?>
|
| 279 |
-
<div class="fm-add-on">
|
| 280 |
-
<h2><?php echo $addon['name'] ?></h2>
|
| 281 |
-
<figure class="fm-figure">
|
| 282 |
-
<div class="fm-figure-img">
|
| 283 |
-
<a href="<?php echo $addon['url'] ?>" target="_blank">
|
| 284 |
-
<?php if ( $addon['image'] ) { ?>
|
| 285 |
-
<img src="<?php echo $addon['image'] ?>"/>
|
| 286 |
-
<?php } ?>
|
| 287 |
-
</a>
|
| 288 |
-
</div>
|
| 289 |
-
|
| 290 |
-
<figcaption class="fm-addon-descr fm-figcaption">
|
| 291 |
-
|
| 292 |
-
<?php if ( $addon['icon'] ) { ?>
|
| 293 |
-
<img src="<?php echo $addon['icon'] ?>"/>
|
| 294 |
-
<?php } ?>
|
| 295 |
-
<?php echo $addon['description'] ?>
|
| 296 |
-
</figcaption>
|
| 297 |
-
</figure>
|
| 298 |
-
<?php if ( $addon['url'] !== '#' ) { ?>
|
| 299 |
-
<a href="<?php echo $addon['url'] ?>"
|
| 300 |
-
target="_blank" class="fm-addon"><span>GET THIS ADD ON</span></a>
|
| 301 |
-
|
| 302 |
-
<?php } else { ?>
|
| 303 |
-
<div class="fm_coming_soon">
|
| 304 |
-
<img
|
| 305 |
-
src="<?php echo plugins_url( '../../assets/coming_soon.png', __FILE__ ); ?>"/>
|
| 306 |
-
</div>
|
| 307 |
-
<?php } ?>
|
| 308 |
-
</div>
|
| 309 |
-
<?php
|
| 310 |
-
}
|
| 311 |
-
}
|
| 312 |
-
}
|
| 313 |
-
?>
|
| 314 |
-
|
| 315 |
-
</div>
|
| 316 |
-
<!-- #fm-settings-content -->
|
| 317 |
-
</div>
|
| 318 |
-
<!-- #fm-settings -->
|
| 319 |
-
</div><!-- .wrap -->
|
| 320 |
-
|
| 321 |
-
<?php
|
| 322 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
featured/featured_themes.css
DELETED
|
@@ -1,178 +0,0 @@
|
|
| 1 |
-
@import url(https://fonts.googleapis.com/css?family=Oswald);
|
| 2 |
-
|
| 3 |
-
#main_featured_themes_page #featured-themes-list {
|
| 4 |
-
position:relative;
|
| 5 |
-
margin:0px auto;
|
| 6 |
-
height:auto;
|
| 7 |
-
display:table;
|
| 8 |
-
list-style:none;
|
| 9 |
-
text-align: center;
|
| 10 |
-
width: 100%;
|
| 11 |
-
}
|
| 12 |
-
#main_featured_themes_page #featured-themes-list li {
|
| 13 |
-
display: inline-table;
|
| 14 |
-
width: 300px;
|
| 15 |
-
margin: 20px 10px 0px 10px;
|
| 16 |
-
background: #FFFFFF;
|
| 17 |
-
border-right: 3px solid #E5E5E5;
|
| 18 |
-
border-bottom: 3px solid #E5E5E5;
|
| 19 |
-
position: relative;
|
| 20 |
-
}
|
| 21 |
-
@media screen and (min-width: 1600px) {
|
| 22 |
-
#main_featured_themes_page #featured-themes-list li {
|
| 23 |
-
width:400px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
}
|
| 27 |
-
#main_featured_themes_page .theme_img img {
|
| 28 |
-
max-width: 100%;
|
| 29 |
-
}
|
| 30 |
-
#main_featured_themes_page .theme_img {
|
| 31 |
-
display: inline-block;
|
| 32 |
-
overflow: hidden;
|
| 33 |
-
outline: 1px solid #D6D1D1;
|
| 34 |
-
position:relative;
|
| 35 |
-
/*height: 168px; */
|
| 36 |
-
}
|
| 37 |
-
#main_featured_themes_page #featured-themes-list li .title {
|
| 38 |
-
width: 91%;
|
| 39 |
-
text-align: center;
|
| 40 |
-
margin: 0 auto;
|
| 41 |
-
}
|
| 42 |
-
#main_featured_themes_page {
|
| 43 |
-
font-family: Oswald;
|
| 44 |
-
}
|
| 45 |
-
#main_featured_themes_page #featured-themes-list li .title .heading {
|
| 46 |
-
display: block;
|
| 47 |
-
position: relative;
|
| 48 |
-
font-size: 17px;
|
| 49 |
-
color: #666666;
|
| 50 |
-
margin: 13px 0px 13px 0px;
|
| 51 |
-
text-transform: uppercase;
|
| 52 |
-
}
|
| 53 |
-
#main_featured_themes_page #featured-themes-list li .title p {
|
| 54 |
-
font-size:14px;
|
| 55 |
-
color:#444;
|
| 56 |
-
margin-left:20px;
|
| 57 |
-
}
|
| 58 |
-
#main_featured_themes_page #featured-themes-list li .description {
|
| 59 |
-
height:130px;
|
| 60 |
-
width: 90%;
|
| 61 |
-
margin: 0 auto;
|
| 62 |
-
}
|
| 63 |
-
#main_featured_themes_page #featured-themes-list li .description p {
|
| 64 |
-
text-align: center;
|
| 65 |
-
width: 100%;
|
| 66 |
-
color: #666666;
|
| 67 |
-
font-family: "Open Sans",sans-serif;
|
| 68 |
-
font-size: 14px;
|
| 69 |
-
}
|
| 70 |
-
#main_featured_themes_page #featured-themes-list li .links {
|
| 71 |
-
border-top: 1px solid #d8d8d8;
|
| 72 |
-
width: 90%;
|
| 73 |
-
margin: 0 auto;
|
| 74 |
-
font-size: 14px;
|
| 75 |
-
line-height: 40px;
|
| 76 |
-
font-weight: bolder;
|
| 77 |
-
text-align: center;
|
| 78 |
-
padding-top: 9px;
|
| 79 |
-
padding-bottom: 12px;
|
| 80 |
-
}
|
| 81 |
-
#main_featured_themes_page .page_header h1 {
|
| 82 |
-
margin: 0px;
|
| 83 |
-
font-family: Segoe UI;
|
| 84 |
-
padding-bottom: 15px;
|
| 85 |
-
color: rgb(111, 111, 111);
|
| 86 |
-
font-size: 24px;
|
| 87 |
-
text-align:center;
|
| 88 |
-
}
|
| 89 |
-
#main_featured_themes_page .page_header {
|
| 90 |
-
height: 40px;
|
| 91 |
-
padding: 22px 0px 0px 0px;
|
| 92 |
-
margin-bottom: 15px;
|
| 93 |
-
/*border-bottom: rgb(111, 111, 111) solid 1px;*/
|
| 94 |
-
}
|
| 95 |
-
#main_featured_themes_page #featured-themes-list li a {
|
| 96 |
-
outline: none;
|
| 97 |
-
line-height: 29px;
|
| 98 |
-
text-decoration: none;
|
| 99 |
-
color: #134d68;
|
| 100 |
-
font-family: "Open Sans",sans-serif;
|
| 101 |
-
text-shadow: 1px 0;
|
| 102 |
-
display: inline-block;
|
| 103 |
-
font-size: 15px;
|
| 104 |
-
}
|
| 105 |
-
#main_featured_themes_page #featured-themes-list li a.demo {
|
| 106 |
-
color: #ffffff;
|
| 107 |
-
background: #F47629;
|
| 108 |
-
border-radius: 3px;
|
| 109 |
-
width: 76px;
|
| 110 |
-
text-align:center;
|
| 111 |
-
margin-right: 12px;
|
| 112 |
-
}
|
| 113 |
-
#main_featured_themes_page .featured_header{
|
| 114 |
-
background: #11465F;
|
| 115 |
-
border-right: 3px solid #E5E5E5;
|
| 116 |
-
border-bottom: 3px solid #E5E5E5;
|
| 117 |
-
position: relative;
|
| 118 |
-
padding: 20px 0;
|
| 119 |
-
}
|
| 120 |
-
#main_featured_themes_page .featured_header .try-now {
|
| 121 |
-
text-align: center;
|
| 122 |
-
}
|
| 123 |
-
#main_featured_themes_page .featured_header .try-now span {
|
| 124 |
-
display: inline-block;
|
| 125 |
-
padding: 7px 16px;
|
| 126 |
-
background: #F47629;
|
| 127 |
-
border-radius: 10px;
|
| 128 |
-
color: #ffffff;
|
| 129 |
-
font-size: 23px;
|
| 130 |
-
}
|
| 131 |
-
#main_featured_themes_page .featured_container {
|
| 132 |
-
position: relative;
|
| 133 |
-
width: 90%;
|
| 134 |
-
margin: 15px auto 0px auto;
|
| 135 |
-
}
|
| 136 |
-
#main_featured_themes_page .featured_container .old_price{
|
| 137 |
-
color: rgba(180, 180, 180, 0.3);
|
| 138 |
-
text-decoration: line-through;
|
| 139 |
-
font-family: Oswald;
|
| 140 |
-
}
|
| 141 |
-
#main_featured_themes_page .featured_container .get_themes{
|
| 142 |
-
color: #FFFFFF;
|
| 143 |
-
height: 85px;
|
| 144 |
-
margin: 0;
|
| 145 |
-
background-size: 95% 100%;
|
| 146 |
-
background-position: center;
|
| 147 |
-
line-height: 60px;
|
| 148 |
-
font-size: 45px;
|
| 149 |
-
text-align: center;
|
| 150 |
-
letter-spacing: 3px;
|
| 151 |
-
}
|
| 152 |
-
#main_featured_themes_page .featured_header h1{
|
| 153 |
-
font-size: 45px;
|
| 154 |
-
text-align: center;
|
| 155 |
-
color: #ffffff;
|
| 156 |
-
letter-spacing: 3px;
|
| 157 |
-
line-height: 10px;
|
| 158 |
-
}
|
| 159 |
-
#main_featured_themes_page .featured_header a{
|
| 160 |
-
text-decoration: none;
|
| 161 |
-
}
|
| 162 |
-
@media screen and (max-width: 1035px) {
|
| 163 |
-
#main_featured_themes_page .featured_header h1{
|
| 164 |
-
font-size: 37px;
|
| 165 |
-
line-height: 0;
|
| 166 |
-
}
|
| 167 |
-
}
|
| 168 |
-
@media screen and (max-width: 835px) {
|
| 169 |
-
#main_featured_themes_page .get_themes span{
|
| 170 |
-
display: none;
|
| 171 |
-
}
|
| 172 |
-
}
|
| 173 |
-
@media screen and (max-width: 435px) {
|
| 174 |
-
#main_featured_themes_page .featured_header h1 {
|
| 175 |
-
font-size: 20px;
|
| 176 |
-
line-height: 17px;
|
| 177 |
-
}
|
| 178 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
featured/featured_themes.php
DELETED
|
@@ -1,104 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
function fmc_featured_themes_page() {
|
| 3 |
-
|
| 4 |
-
$slug = 'contact-form-maker';
|
| 5 |
-
$image_url = WD_FMC_URL . "/featured/images/";
|
| 6 |
-
$demo_url = 'http://themedemo.web-dorado.com/';
|
| 7 |
-
$site_url = 'https://web-dorado.com/wordpress-themes/';
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
$WDWThemes = array(
|
| 11 |
-
"business_elite" => array(
|
| 12 |
-
"title" => "Business Elite",
|
| 13 |
-
"description" =>"Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.",
|
| 14 |
-
"link" => "business-elite.html",
|
| 15 |
-
"demo" => "theme-businesselite",
|
| 16 |
-
"image" => "business_elite.jpg"
|
| 17 |
-
),
|
| 18 |
-
"portfolio" => array(
|
| 19 |
-
"title" => "Portfolio Gallery",
|
| 20 |
-
"description" =>"Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.",
|
| 21 |
-
"link" => "portfolio-gallery.html",
|
| 22 |
-
"demo" => "theme-portfoliogallery",
|
| 23 |
-
"image" => "portfolio_gallery.jpg"
|
| 24 |
-
),
|
| 25 |
-
"sauron" => array(
|
| 26 |
-
"title" => "Sauron",
|
| 27 |
-
"description" =>"Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.",
|
| 28 |
-
"link" => "sauron.html",
|
| 29 |
-
"demo" => "theme-sauron",
|
| 30 |
-
"image" => "sauron.jpg"
|
| 31 |
-
),
|
| 32 |
-
"business_world" => array(
|
| 33 |
-
"title" => "Business World",
|
| 34 |
-
"description" => "Business World is an innovative WordPress theme great for Business websites.",
|
| 35 |
-
"link" => "business-world.html",
|
| 36 |
-
"demo" => "theme-businessworld",
|
| 37 |
-
"image" => "business_world.jpg"
|
| 38 |
-
),
|
| 39 |
-
"best_magazine" => array(
|
| 40 |
-
"title" => "Best Magazine",
|
| 41 |
-
"description" =>"Best Magazine is an ultimate selection when you are dealing with multi-category news websites.",
|
| 42 |
-
"link" => "best-magazine.html",
|
| 43 |
-
"demo" => "theme-bestmagazine",
|
| 44 |
-
"image" => "best_magazine.jpg"
|
| 45 |
-
),
|
| 46 |
-
"magazine" => array(
|
| 47 |
-
"title" => "News Magazine",
|
| 48 |
-
"description" =>"Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.",
|
| 49 |
-
"link" => "news-magazine.html",
|
| 50 |
-
"demo" => "theme-newsmagazine",
|
| 51 |
-
"image" => "news_magazine.jpg"
|
| 52 |
-
)
|
| 53 |
-
);
|
| 54 |
-
?>
|
| 55 |
-
|
| 56 |
-
<style>
|
| 57 |
-
|
| 58 |
-
#main_featured_themes_page #featured-themes-list li a.download {
|
| 59 |
-
padding-right: 30px;
|
| 60 |
-
background:url(<?php echo $image_url; ?>down.png) no-repeat right;
|
| 61 |
-
}
|
| 62 |
-
|
| 63 |
-
</style>
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
<div id="main_featured_themes_page">
|
| 67 |
-
<div class="featured_container">
|
| 68 |
-
<div class="page_header">
|
| 69 |
-
<h1><?php echo "Featured Themes"; ?></h1>
|
| 70 |
-
</div>
|
| 71 |
-
<div class="featured_header">
|
| 72 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes.html?source=<?php echo $slug; ?>">
|
| 73 |
-
<h1><?php echo "WORDPRESS THEMES"; ?></h1>
|
| 74 |
-
<h2 class="get_themes"><?php echo "ALL FOR $40 ONLY "; ?><span>- <?php echo "SAVE 80%"; ?></span></h2>
|
| 75 |
-
<div class="try-now">
|
| 76 |
-
<span><?php echo "TRY NOW"; ?></span>
|
| 77 |
-
</div>
|
| 78 |
-
</a>
|
| 79 |
-
</div>
|
| 80 |
-
<ul id="featured-themes-list">
|
| 81 |
-
<?php foreach($WDWThemes as $key=>$WDWTheme) : ?>
|
| 82 |
-
<li class="<?php echo $key; ?>">
|
| 83 |
-
<div class="theme_img">
|
| 84 |
-
<img src="<?php echo $image_url . $WDWTheme["image"]; ?>">
|
| 85 |
-
</div>
|
| 86 |
-
<div class="title">
|
| 87 |
-
<h3 class="heading"><?php echo $WDWTheme["title"]; ?></h3>
|
| 88 |
-
</div>
|
| 89 |
-
<div class="description">
|
| 90 |
-
<p><?php echo $WDWTheme["description"]; ?></p>
|
| 91 |
-
</div>
|
| 92 |
-
<div class="links">
|
| 93 |
-
<a target="_blank" href="<?php echo $demo_url . $WDWTheme["demo"]."?source=".$slug; ?>" class="demo"><?php echo "Demo"; ?></a>
|
| 94 |
-
<a target="_blank" href="<?php echo $site_url . $WDWTheme["link"]."?source=".$slug; ?>" class="download"><?php echo "Free Download"; ?></a>
|
| 95 |
-
</div>
|
| 96 |
-
</li>
|
| 97 |
-
<?php endforeach; ?>
|
| 98 |
-
</ul>
|
| 99 |
-
</div>
|
| 100 |
-
</div>
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
<?php }
|
| 104 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
featured/images/Add_Ons.jpg
DELETED
|
Binary file
|
featured/images/best_magazine.jpg
DELETED
|
Binary file
|
featured/images/best_magazine.png
DELETED
|
Binary file
|
featured/images/business_elite.jpg
DELETED
|
Binary file
|
featured/images/business_elite.png
DELETED
|
Binary file
|
featured/images/business_world.jpg
DELETED
|
Binary file
|
featured/images/business_world.png
DELETED
|
Binary file
|
featured/images/calendar.png
DELETED
|
Binary file
|
featured/images/calendar1.png
DELETED
|
Binary file
|
featured/images/calendar_hover.png
DELETED
|
Binary file
|
featured/images/calendar_menu.png
DELETED
|
Binary file
|
featured/images/catalog.png
DELETED
|
Binary file
|
featured/images/contact.builder.png
DELETED
|
Binary file
|
featured/images/contact.maker.png
DELETED
|
Binary file
|
featured/images/contacts.png
DELETED
|
Binary file
|
featured/images/delete_el.png
DELETED
|
Binary file
|
featured/images/down.png
DELETED
|
Binary file
|
featured/images/downarrow.png
DELETED
|
Binary file
|
featured/images/download.jpg
DELETED
|
Binary file
|
featured/images/download_plugins.png
DELETED
|
Binary file
|
featured/images/download_themes.png
DELETED
|
Binary file
|
featured/images/ecommerce.png
DELETED
|
Binary file
|
featured/images/events-wd.png
DELETED
|
Binary file
|
featured/images/exclusive.png
DELETED
|
Binary file
|
featured/images/expert.png
DELETED
|
Binary file
|
featured/images/facebook-feed.png
DELETED
|
Binary file
|
featured/images/facebook.png
DELETED
|
Binary file
|
featured/images/faq.png
DELETED
|
Binary file
|
featured/images/faq_wd.png
DELETED
|
Binary file
|
featured/images/flash.calendar.png
DELETED
|
Binary file
|
featured/images/folder.menu.png
DELETED
|
Binary file
|
featured/images/form.jpg
DELETED
|
Binary file
|
featured/images/form.png
DELETED
|
Binary file
|
featured/images/form_import.png
DELETED
|
Binary file
|
featured/images/google-maps.png
DELETED
|
Binary file
|
featured/images/instagram_feed.png
DELETED
|
Binary file
|
featured/images/loadingAnimation.gif
DELETED
|
Binary file
|
featured/images/magazine.png
DELETED
|
Binary file
|
featured/images/mailchimp.png
DELETED
|
Binary file
|
featured/images/mottomag.png
DELETED
|
Binary file
|
featured/images/news_magazine.jpg
DELETED
|
Binary file
|
featured/images/photo-gallery.png
DELETED
|
Binary file
|
featured/images/player.png
DELETED
|
Binary file
|
featured/images/portfolio_gallery.jpg
DELETED
|
Binary file
|
featured/images/portfolio_gallery.png
DELETED
|
Binary file
|
featured/images/post-slider.png
DELETED
|
Binary file
|
featured/images/random.post.png
DELETED
|
Binary file
|
featured/images/sauron.jpg
DELETED
|
Binary file
|
featured/images/sauron.png
DELETED
|
Binary file
|
featured/images/slider.png
DELETED
|
Binary file
|
featured/images/spider.calendar.png
DELETED
|
Binary file
|
featured/images/tb-close.png
DELETED
|
Binary file
|
featured/images/twittertools.png
DELETED
|
Binary file
|
featured/images/up.png
DELETED
|
Binary file
|
featured/images/wedding.png
DELETED
|
Binary file
|
featured/images/wedding_style.png
DELETED
|
Binary file
|
featured/images/zoom.png
DELETED
|
Binary file
|
featured/style.css
DELETED
|
@@ -1,209 +0,0 @@
|
|
| 1 |
-
@import url(http://fonts.googleapis.com/css?family=Oswald);
|
| 2 |
-
|
| 3 |
-
#main_featured_plugins_page {
|
| 4 |
-
font-family: Oswald;
|
| 5 |
-
width: 90%;
|
| 6 |
-
margin: 15px auto 0px auto;
|
| 7 |
-
}
|
| 8 |
-
|
| 9 |
-
#main_featured_plugins_page h3 {
|
| 10 |
-
border-bottom: 2px solid #CECECE;
|
| 11 |
-
color: rgb(111, 111, 111);
|
| 12 |
-
font-family: Segoe UI;
|
| 13 |
-
font-size: 18pt;
|
| 14 |
-
margin: 0px auto 15px auto;
|
| 15 |
-
padding: 20px 0;
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
#main_featured_plugins_page #featured-plugins-list {
|
| 19 |
-
position:relative;
|
| 20 |
-
margin:0px auto;
|
| 21 |
-
height:auto;
|
| 22 |
-
display:table;
|
| 23 |
-
list-style:none;
|
| 24 |
-
text-align: center;
|
| 25 |
-
width: 100%;
|
| 26 |
-
}
|
| 27 |
-
|
| 28 |
-
#main_featured_plugins_page #featured-plugins-list li {
|
| 29 |
-
display: inline-table;
|
| 30 |
-
width: 200px;
|
| 31 |
-
margin: 20px 10px 0px 10px;
|
| 32 |
-
background: #FFFFFF;
|
| 33 |
-
border-right: 3px solid #E5E5E5;
|
| 34 |
-
height: 335px;
|
| 35 |
-
border-bottom: 3px solid #E5E5E5;
|
| 36 |
-
position: relative;
|
| 37 |
-
}
|
| 38 |
-
|
| 39 |
-
#main_featured_plugins_page #featured-plugins-list li .product {
|
| 40 |
-
position:relative;
|
| 41 |
-
height:113px;
|
| 42 |
-
background-color: transparent !important;
|
| 43 |
-
background-position-x: 50% !important;
|
| 44 |
-
margin: 7px;
|
| 45 |
-
border-radius: 3px;
|
| 46 |
-
background-size: 115px !important;
|
| 47 |
-
}
|
| 48 |
-
|
| 49 |
-
#main_featured_plugins_page #featured-plugins-list li .title {
|
| 50 |
-
width: 90%;
|
| 51 |
-
text-align: center;
|
| 52 |
-
margin: 0 auto;
|
| 53 |
-
}
|
| 54 |
-
#main_featured_plugins_page #featured-plugins-list li.ecommerce-wd .product {background:url("images/ecommerce.png") center center no-repeat;}
|
| 55 |
-
#main_featured_plugins_page #featured-plugins-list li.form-maker .product {background:url("images/form.png") center center no-repeat;}
|
| 56 |
-
#main_featured_plugins_page #featured-plugins-list li.catalog .product {background:url("images/catalog.png") center center no-repeat;}
|
| 57 |
-
#main_featured_plugins_page #featured-plugins-list li.contact-maker .product {background:url("images/contact.maker.png") center center no-repeat;}
|
| 58 |
-
#main_featured_plugins_page #featured-plugins-list li.contacts .product {background:url("images/contacts.png") center center no-repeat;}
|
| 59 |
-
#main_featured_plugins_page #featured-plugins-list li.facebook .product {background:url("images/facebook.png") center center no-repeat;}
|
| 60 |
-
#main_featured_plugins_page #featured-plugins-list li.facebook-feed .product {background:url("images/facebook-feed.png") center center no-repeat;}
|
| 61 |
-
#main_featured_plugins_page #featured-plugins-list li.faq .product {background:url("images/faq.png") center center no-repeat;}
|
| 62 |
-
#main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background:url("images/flash.calendar.png") center center no-repeat;}
|
| 63 |
-
#main_featured_plugins_page #featured-plugins-list li.player .product {background:url("images/player.png") center center no-repeat; }
|
| 64 |
-
#main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background:url("images/spider.calendar.png") center center no-repeat;}
|
| 65 |
-
#main_featured_plugins_page #featured-plugins-list li.contact_form_bulder .product {background:url("images/contact.builder.png") center center no-repeat;}
|
| 66 |
-
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url("images/random.post.png") center center no-repeat;}
|
| 67 |
-
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url("images/slider.png") center center no-repeat;}
|
| 68 |
-
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url("images/folder.menu.png") center center no-repeat;}
|
| 69 |
-
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url("images/zoom.png") center center no-repeat;}
|
| 70 |
-
#main_featured_plugins_page #featured-plugins-list li.fm-import .product {background:url("images/fm-import.png") center center no-repeat;}
|
| 71 |
-
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url("images/photo-gallery.png") center center no-repeat;}
|
| 72 |
-
#main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background:url("images/twittertools.png") center center no-repeat;}
|
| 73 |
-
#main_featured_plugins_page #featured-plugins-list li.events-wd .product {background:url("images/events-wd.png") center center no-repeat;}
|
| 74 |
-
#main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
|
| 75 |
-
#main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
|
| 76 |
-
#main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url("images/post-slider.png") center center no-repeat;}
|
| 77 |
-
#main_featured_plugins_page #featured-plugins-list li.google-maps .product {background:url("images/google-maps.png") center center no-repeat;}
|
| 78 |
-
#main_featured_plugins_page #featured-plugins-list li.mailchimp .product {background:url("images/mailchimp.png") center center no-repeat;}
|
| 79 |
-
|
| 80 |
-
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
| 81 |
-
display: block;
|
| 82 |
-
position: relative;
|
| 83 |
-
font-size: 17px;
|
| 84 |
-
color: #767676;
|
| 85 |
-
margin: 13px 0px 13px 0px;
|
| 86 |
-
text-transform: uppercase;
|
| 87 |
-
}
|
| 88 |
-
|
| 89 |
-
#main_featured_plugins_page #featured-plugins-list li .title p {
|
| 90 |
-
font-size:14px;
|
| 91 |
-
color:#444;
|
| 92 |
-
margin-left:20px;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
#main_featured_plugins_page #featured-plugins-list li .description {
|
| 96 |
-
height: 127px;
|
| 97 |
-
width: 90%;
|
| 98 |
-
margin: 0 auto;
|
| 99 |
-
}
|
| 100 |
-
|
| 101 |
-
#main_featured_plugins_page #featured-plugins-list li .description p {
|
| 102 |
-
text-align: center;
|
| 103 |
-
width: 100%;
|
| 104 |
-
color: #9A9A9A;
|
| 105 |
-
font-family: Segoe UI Light;
|
| 106 |
-
}
|
| 107 |
-
|
| 108 |
-
#featured-plugins-list li a.download {
|
| 109 |
-
display: block;
|
| 110 |
-
border-top: 1px solid #CACACA;
|
| 111 |
-
outline: none;
|
| 112 |
-
width: 90%;
|
| 113 |
-
margin: 0 auto;
|
| 114 |
-
font-size: 14px;
|
| 115 |
-
line-height: 40px;
|
| 116 |
-
text-decoration: none;
|
| 117 |
-
font-weight: bolder;
|
| 118 |
-
text-align: center;
|
| 119 |
-
color: #134D68;
|
| 120 |
-
position: absolute;
|
| 121 |
-
text-transform: uppercase;
|
| 122 |
-
bottom: 0;
|
| 123 |
-
left: 10px;
|
| 124 |
-
font-family: Segoe UI Black;
|
| 125 |
-
text-shadow: 1px 0;
|
| 126 |
-
}
|
| 127 |
-
|
| 128 |
-
#featured-plugins-list li a.download:hover {
|
| 129 |
-
color: #F47629;
|
| 130 |
-
}
|
| 131 |
-
|
| 132 |
-
.featured_header{
|
| 133 |
-
background: #11465F;
|
| 134 |
-
border-right: 3px solid #E5E5E5;
|
| 135 |
-
border-bottom: 3px solid #E5E5E5;
|
| 136 |
-
position: relative;
|
| 137 |
-
padding: 20px 0;
|
| 138 |
-
}
|
| 139 |
-
|
| 140 |
-
.featured_header .old_price {
|
| 141 |
-
color: rgba(180, 180, 180, 0.3);
|
| 142 |
-
text-decoration: line-through;
|
| 143 |
-
font-family: Oswald;
|
| 144 |
-
}
|
| 145 |
-
|
| 146 |
-
.featured_header h1.get_plugins {
|
| 147 |
-
color: #FFFFFF;
|
| 148 |
-
height: 85px;
|
| 149 |
-
margin: 0;
|
| 150 |
-
background-size: 85% 100%;
|
| 151 |
-
background-position: center;
|
| 152 |
-
line-height: 60px;
|
| 153 |
-
}
|
| 154 |
-
|
| 155 |
-
.featured_header .try-now{
|
| 156 |
-
text-align: center;
|
| 157 |
-
}
|
| 158 |
-
|
| 159 |
-
.featured_header .try-now span {
|
| 160 |
-
display: inline-block;
|
| 161 |
-
padding: 7px 16px;
|
| 162 |
-
background: #F47629;
|
| 163 |
-
border-radius: 10px;
|
| 164 |
-
color: #ffffff;
|
| 165 |
-
font-size: 23px;
|
| 166 |
-
}
|
| 167 |
-
|
| 168 |
-
.featured_header h1 {
|
| 169 |
-
font-size: 50px;
|
| 170 |
-
text-align: center;
|
| 171 |
-
color: #FFFFFF;
|
| 172 |
-
letter-spacing: 3px;
|
| 173 |
-
text-transform: uppercase;
|
| 174 |
-
}
|
| 175 |
-
|
| 176 |
-
.featured_header a {
|
| 177 |
-
text-decoration: none;
|
| 178 |
-
}
|
| 179 |
-
|
| 180 |
-
.featured_header .old-price {
|
| 181 |
-
color: #889CA8;
|
| 182 |
-
text-decoration: line-through;
|
| 183 |
-
}
|
| 184 |
-
|
| 185 |
-
@media screen and (max-width: 1105px) {
|
| 186 |
-
.featured_header h1 {
|
| 187 |
-
font-size: 37px;
|
| 188 |
-
line-height: 0;
|
| 189 |
-
}
|
| 190 |
-
}
|
| 191 |
-
|
| 192 |
-
@media screen and (max-width: 835px) {
|
| 193 |
-
.get_plugins span {
|
| 194 |
-
display: none;
|
| 195 |
-
}
|
| 196 |
-
}
|
| 197 |
-
|
| 198 |
-
@media screen and (max-width: 700px) {
|
| 199 |
-
.featured_header h1 {
|
| 200 |
-
line-height: 40px;
|
| 201 |
-
}
|
| 202 |
-
}
|
| 203 |
-
|
| 204 |
-
@media screen and (max-width: 435px) {
|
| 205 |
-
.featured_header h1 {
|
| 206 |
-
font-size: 20px;
|
| 207 |
-
line-height: 25px;
|
| 208 |
-
}
|
| 209 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
featured/updates.php
DELETED
|
@@ -1,158 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
|
| 3 |
-
/**
|
| 4 |
-
* Admin page
|
| 5 |
-
*/
|
| 6 |
-
|
| 7 |
-
// Exit if accessed directly.
|
| 8 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
| 9 |
-
exit;
|
| 10 |
-
}
|
| 11 |
-
|
| 12 |
-
$upd = FM_Admin::get_instance();
|
| 13 |
-
$upd->check_for_update();
|
| 14 |
-
$fm_plugins=$upd->fm_plugins;
|
| 15 |
-
$updates=$upd->updates;
|
| 16 |
-
?>
|
| 17 |
-
<link href="<?php echo plugins_url( 'admin.css', __FILE__ )?>" rel="stylesheet"/>
|
| 18 |
-
|
| 19 |
-
<div class="wrap">
|
| 20 |
-
<?php settings_errors(); ?>
|
| 21 |
-
<div id="fm-settings">
|
| 22 |
-
<div id="fm-settings-content">
|
| 23 |
-
<h2 id="add_on_title"><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
<div class="main-plugin_desc-cont">
|
| 27 |
-
You can download the latest version of your plugins from your <a href="https://web-dorado.com" target="_blank"> Web-Dorado.com</a> account.
|
| 28 |
-
After deactivate and
|
| 29 |
-
delete the current version.
|
| 30 |
-
Install the downloaded latest version of the plugin.
|
| 31 |
-
</div>
|
| 32 |
-
|
| 33 |
-
<br/>
|
| 34 |
-
<br/>
|
| 35 |
-
|
| 36 |
-
<?php
|
| 37 |
-
if ( $fm_plugins ) {
|
| 38 |
-
$update = 0;
|
| 39 |
-
if ( isset( $fm_plugins[31] ) ) {
|
| 40 |
-
|
| 41 |
-
$project = $fm_plugins[31];
|
| 42 |
-
unset( $fm_plugins[31] );
|
| 43 |
-
if ( isset( $updates[31] ) ) {
|
| 44 |
-
$update = 1;
|
| 45 |
-
}
|
| 46 |
-
?>
|
| 47 |
-
<div class="main-plugin">
|
| 48 |
-
<div class="fm-add-on">
|
| 49 |
-
<?php if ( $project['fm_data']['image'] ) { ?>
|
| 50 |
-
<div class="fm-figure-img">
|
| 51 |
-
<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">
|
| 52 |
-
<img src="<?php echo $project['fm_data']['image'] ?>"/>
|
| 53 |
-
</a>
|
| 54 |
-
</div>
|
| 55 |
-
<?php } ?>
|
| 56 |
-
|
| 57 |
-
</div>
|
| 58 |
-
<div class="main-plugin-info">
|
| 59 |
-
<h2>
|
| 60 |
-
<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank"><?php echo $project['Title'] ?></a>
|
| 61 |
-
</h2>
|
| 62 |
-
<div class="main-plugin_desc-cont">
|
| 63 |
-
<div class="main-plugin-desc"><?php echo $project['fm_data']['description'] ?></div>
|
| 64 |
-
<div class="main-plugin-desc main-plugin-desc-info">
|
| 65 |
-
<p><a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">Version <?php echo $project['Version']?></a></p>
|
| 66 |
-
</div>
|
| 67 |
-
|
| 68 |
-
<?php if ( isset( $updates[31][0] ) ) { ?>
|
| 69 |
-
<span class="update-info">There is a new <?php echo $updates[31][0]['version'] ?> version available.</span>
|
| 70 |
-
<p><span>What's new:</span></p>
|
| 71 |
-
<div class="fm_last_update"><?php echo $updates[31][0]['version'] ?>
|
| 72 |
-
- <?php echo strip_tags( str_replace('important', '', $updates[31][0]['note']) ) ?></div>
|
| 73 |
-
<?php unset( $updates[31][0] ); ?>
|
| 74 |
-
<?php if ( count( $updates[31] ) > 0 ) { ?>
|
| 75 |
-
|
| 76 |
-
<div class="fm_more_updates">
|
| 77 |
-
<?php foreach ( $updates[31] as $update ) {
|
| 78 |
-
?>
|
| 79 |
-
<div class="fm_update"><?php echo $update['version'] ?>
|
| 80 |
-
- <?php echo strip_tags( str_replace('important', '', $update['note']) ) ?></div>
|
| 81 |
-
<?php
|
| 82 |
-
}
|
| 83 |
-
?>
|
| 84 |
-
</div>
|
| 85 |
-
<a href="#" class="fm_show_more_updates">More updates</a>
|
| 86 |
-
<?php
|
| 87 |
-
}
|
| 88 |
-
} ?>
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
</div>
|
| 95 |
-
</div>
|
| 96 |
-
</div>
|
| 97 |
-
<?php
|
| 98 |
-
}?>
|
| 99 |
-
<div class="fm-addons_updates">
|
| 100 |
-
<?php
|
| 101 |
-
foreach ( $fm_plugins as $id => $project ) {
|
| 102 |
-
?>
|
| 103 |
-
<div class="fm-add-on">
|
| 104 |
-
<figure class="fm-figure">
|
| 105 |
-
<div class="fm-figure-img">
|
| 106 |
-
<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">
|
| 107 |
-
<?php if ( $project['fm_data']['image'] ) { ?>
|
| 108 |
-
<img src="<?php echo $project['fm_data']['image'] ?>"/>
|
| 109 |
-
<?php } ?>
|
| 110 |
-
</a>
|
| 111 |
-
</div>
|
| 112 |
-
<figcaption class="fm-addon-descr fm-figcaption">
|
| 113 |
-
<?php if ( isset( $updates[ $id ][0] ) ) { ?>
|
| 114 |
-
<p>What's new:</p>
|
| 115 |
-
<?php echo strip_tags( $updates[ $id ][0]['note'] ) ?>
|
| 116 |
-
<?php } else { ?><?php echo $project['Title'] ?> is up to date
|
| 117 |
-
<?php } ?>
|
| 118 |
-
</figcaption>
|
| 119 |
-
</figure>
|
| 120 |
-
<h2><?php echo $project['Title'] ?></h2>
|
| 121 |
-
<div class="main-plugin-desc-info">
|
| 122 |
-
<p><a href="<?php echo $project['fm_data']['url'] ?>"
|
| 123 |
-
target="_blank"><?php echo $project['Version'] ?></a> | Web-Dorado</p>
|
| 124 |
-
</div>
|
| 125 |
-
<?php if ( isset( $updates[ $id ] ) ) { ?>
|
| 126 |
-
<div class="fm-addon-descr-update">
|
| 127 |
-
<span
|
| 128 |
-
class="update-info">There is an new <?php echo $updates[ $id ][0]['version'] ?>
|
| 129 |
-
version</span><br/>
|
| 130 |
-
</div>
|
| 131 |
-
<?php } ?>
|
| 132 |
-
</div>
|
| 133 |
-
|
| 134 |
-
<?php
|
| 135 |
-
}?>
|
| 136 |
-
</div>
|
| 137 |
-
<?php
|
| 138 |
-
}
|
| 139 |
-
?>
|
| 140 |
-
|
| 141 |
-
</div>
|
| 142 |
-
<!-- #fm-settings-content -->
|
| 143 |
-
</div>
|
| 144 |
-
<!-- #fm-settings -->
|
| 145 |
-
</div><!-- .wrap -->
|
| 146 |
-
|
| 147 |
-
<script>
|
| 148 |
-
jQuery('.fm_show_more_updates').click(function(){
|
| 149 |
-
if( jQuery('.fm_more_updates').is(':visible') == false) {
|
| 150 |
-
jQuery(this).text('Show less');
|
| 151 |
-
}else{
|
| 152 |
-
jQuery(this).text('More updates');
|
| 153 |
-
}
|
| 154 |
-
jQuery('.fm_more_updates').slideToggle();
|
| 155 |
-
return false;
|
| 156 |
-
});
|
| 157 |
-
|
| 158 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: webdorado
|
|
| 3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html
|
| 4 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
| 5 |
Requires at least: 3.4
|
| 6 |
-
Tested up to: 4.
|
| 7 |
-
Stable tag: 1.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -158,6 +158,9 @@ If you want to update the plugin while preserving your existing contact forms, y
|
|
| 158 |
|
| 159 |
== Changelog ==
|
| 160 |
|
|
|
|
|
|
|
|
|
|
| 161 |
= 1.8.41 =
|
| 162 |
* Changed: Improved captcha security
|
| 163 |
* Fixed:Bug On email field
|
| 3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html
|
| 4 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
| 5 |
Requires at least: 3.4
|
| 6 |
+
Tested up to: 4.8
|
| 7 |
+
Stable tag: 1.8.42
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 158 |
|
| 159 |
== Changelog ==
|
| 160 |
|
| 161 |
+
= 1.8.42 =
|
| 162 |
+
* Removed: Featured Plugins, Featured Themes pages
|
| 163 |
+
|
| 164 |
= 1.8.41 =
|
| 165 |
* Changed: Improved captcha security
|
| 166 |
* Fixed:Bug On email field
|
