Version Description
Changed: Featured plugins, themes page.
Changed: Unistall page.
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form Builder – a plugin for creating contact and feedback forms |
Version | 1.0.42 |
Comparing to | |
See all releases |
Code changes from version 1.0.41 to 1.0.42
- admin/views/CFMViewUninstall_cfm.php +8 -1
- contact-form-builder.php +4 -4
- css/contact_form_maker_tables.css +25 -0
- featured/featured.php +13 -4
- featured/featured_themes.php +82 -127
- featured/images/featured_plugins_bg.png +0 -0
- featured/style.css +18 -5
- featured/themes_style.css +40 -17
- readme.txt +5 -1
admin/views/CFMViewUninstall_cfm.php
CHANGED
@@ -26,11 +26,18 @@ class CFMViewUninstall_cfm {
|
|
26 |
global $wpdb;
|
27 |
$prefix = $wpdb->prefix;
|
28 |
?>
|
29 |
-
<form method="post" action="admin.php?page=uninstall_cfm"
|
30 |
<?php wp_nonce_field('nonce_cfm', 'nonce_cfm'); ?>
|
31 |
<div class="wrap">
|
32 |
<span class="uninstall_icon"></span>
|
33 |
<h2><?php echo __("Uninstall Contact Form Builder", "contact_form_maker"); ?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
<p>
|
35 |
<?php echo __("Deactivating Contact Form Builder plugin does not remove any data that may have been created, such as the Forms and the Submissions. To completely remove this plugin, you can uninstall it here", "contact_form_maker"); ?>.
|
36 |
</p>
|
26 |
global $wpdb;
|
27 |
$prefix = $wpdb->prefix;
|
28 |
?>
|
29 |
+
<form method="post" action="admin.php?page=uninstall_cfm" class="cfm_form">
|
30 |
<?php wp_nonce_field('nonce_cfm', 'nonce_cfm'); ?>
|
31 |
<div class="wrap">
|
32 |
<span class="uninstall_icon"></span>
|
33 |
<h2><?php echo __("Uninstall Contact Form Builder", "contact_form_maker"); ?></h2>
|
34 |
+
<div class="goodbye-text">
|
35 |
+
<?php
|
36 |
+
$support_team = '<a href="https://web-dorado.com/support/contact-us.html?source=form-builder" target="_blank">' . __('support team', 'contact_form_maker') . '</a>';
|
37 |
+
$contact_us = '<a href="https://web-dorado.com/support/contact-us.html?source=form-builder" target="_blank">' . __('Contact us', 'contact_form_maker') . '</a>';
|
38 |
+
echo sprintf(__("Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out with your issue. We value each and every user and value what's right for our users in everything we do.<br />
|
39 |
+
However, if anyway you have made a decision to uninstall the plugin, please take a minute to %s and tell what you didn't like for our plugins further improvement and development. Thank you !!!", "contact_form_maker"), $support_team, $contact_us); ?>
|
40 |
+
</div>
|
41 |
<p>
|
42 |
<?php echo __("Deactivating Contact Form Builder plugin does not remove any data that may have been created, such as the Forms and the Submissions. To completely remove this plugin, you can uninstall it here", "contact_form_maker"); ?>.
|
43 |
</p>
|
contact-form-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Contact Form Builder
|
4 |
* Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -72,7 +72,7 @@ function cfm_featured() {
|
|
72 |
require_once(WD_CFM_DIR . '/featured/featured.php');
|
73 |
wp_register_style('cfm_featured', WD_CFM_URL . '/featured/style.css', array(), get_option("wd_contact_form_maker_version"));
|
74 |
wp_print_styles('cfm_featured');
|
75 |
-
spider_featured('
|
76 |
}
|
77 |
|
78 |
function cfm_featured_themes() {
|
@@ -87,7 +87,7 @@ function cfm_featured_themes() {
|
|
87 |
require_once(WD_CFM_DIR . '/featured/featured_themes.php');
|
88 |
wp_register_style('cfm_featured_themes', WD_CFM_URL . '/featured/themes_style.css', array(), get_option("wd_contact_form_maker_version"));
|
89 |
wp_print_styles('cfm_featured_themes');
|
90 |
-
spider_featured_themes();
|
91 |
}
|
92 |
|
93 |
add_action('wp_ajax_ContactFormMakerPreview', 'contact_form_maker_ajax');
|
@@ -172,7 +172,7 @@ if (class_exists('WP_Widget')) {
|
|
172 |
// Activate plugin.
|
173 |
function contact_form_maker_activate() {
|
174 |
$version = get_option("wd_contact_form_maker_version");
|
175 |
-
$new_version = '1.0.
|
176 |
if ($version && version_compare($version, $new_version, '<')) {
|
177 |
require_once WD_CFM_DIR . "/contact-form-builder-update.php";
|
178 |
contact_form_maker_update($version);
|
3 |
* Plugin Name: Contact Form Builder
|
4 |
* Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
6 |
+
* Version: 1.0.42
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
72 |
require_once(WD_CFM_DIR . '/featured/featured.php');
|
73 |
wp_register_style('cfm_featured', WD_CFM_URL . '/featured/style.css', array(), get_option("wd_contact_form_maker_version"));
|
74 |
wp_print_styles('cfm_featured');
|
75 |
+
spider_featured('contact_form_builder');
|
76 |
}
|
77 |
|
78 |
function cfm_featured_themes() {
|
87 |
require_once(WD_CFM_DIR . '/featured/featured_themes.php');
|
88 |
wp_register_style('cfm_featured_themes', WD_CFM_URL . '/featured/themes_style.css', array(), get_option("wd_contact_form_maker_version"));
|
89 |
wp_print_styles('cfm_featured_themes');
|
90 |
+
spider_featured_themes('contact_form_builder');
|
91 |
}
|
92 |
|
93 |
add_action('wp_ajax_ContactFormMakerPreview', 'contact_form_maker_ajax');
|
172 |
// Activate plugin.
|
173 |
function contact_form_maker_activate() {
|
174 |
$version = get_option("wd_contact_form_maker_version");
|
175 |
+
$new_version = '1.0.42';
|
176 |
if ($version && version_compare($version, $new_version, '<')) {
|
177 |
require_once WD_CFM_DIR . "/contact-form-builder-update.php";
|
178 |
contact_form_maker_update($version);
|
css/contact_form_maker_tables.css
CHANGED
@@ -1132,4 +1132,29 @@ button:focus {
|
|
1132 |
|
1133 |
#manage_form {
|
1134 |
width: 98%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1135 |
}
|
1132 |
|
1133 |
#manage_form {
|
1134 |
width: 98%;
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
.goodbye-text {
|
1138 |
+
font-size: 16px;
|
1139 |
+
font-weight: bold;
|
1140 |
+
background: #fff;
|
1141 |
+
padding: 15px;
|
1142 |
+
line-height: 22px;
|
1143 |
+
}
|
1144 |
+
|
1145 |
+
.goodbye-text a {
|
1146 |
+
font-size: 15px;
|
1147 |
+
}
|
1148 |
+
|
1149 |
+
|
1150 |
+
.cfm_form {
|
1151 |
+
width: 95%;
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
.cfm_form h2 {
|
1155 |
+
font-size: 23px;
|
1156 |
+
font-weight: normal;
|
1157 |
+
line-height: 29px;
|
1158 |
+
margin: 0;
|
1159 |
+
padding: 9px 15px 4px 0;
|
1160 |
}
|
featured/featured.php
CHANGED
@@ -13,7 +13,7 @@ function spider_featured($current_plugin = '') {
|
|
13 |
'content' => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.',
|
14 |
'href' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
|
15 |
),
|
16 |
-
"
|
17 |
'title' => 'Contact Form Builder',
|
18 |
'text' => 'WordPress contact form builder plugin',
|
19 |
'content' => 'Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors.',
|
@@ -95,7 +95,7 @@ function spider_featured($current_plugin = '') {
|
|
95 |
'title' => 'Folder Menu',
|
96 |
'text' => 'WordPress folder menu plugin',
|
97 |
'content' => 'Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences.',
|
98 |
-
'href' => 'https://web-dorado.com/products/wordpress-
|
99 |
),
|
100 |
"random_post" => array(
|
101 |
'title' => 'Random post',
|
@@ -115,14 +115,23 @@ function spider_featured($current_plugin = '') {
|
|
115 |
'content' => 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.',
|
116 |
'href' => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
|
117 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
);
|
119 |
?>
|
120 |
<div id="main_featured_plugins_page">
|
121 |
<h3>Featured Plugins</h3>
|
122 |
<div class="featured_header">
|
123 |
-
<a href="https://web-dorado.com/wordpress-plugins.html?source=<?php echo $current_plugin; ?>"
|
124 |
<h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +18 PLUGINS</h1>
|
125 |
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
|
|
|
|
|
|
126 |
</a>
|
127 |
</div>
|
128 |
<ul id="featured-plugins-list">
|
@@ -138,7 +147,7 @@ function spider_featured($current_plugin = '') {
|
|
138 |
<div class="description">
|
139 |
<p><?php echo $plugins['content']; ?></p>
|
140 |
</div>
|
141 |
-
<a target="_blank" href="<?php echo $plugins['href']; ?>" class="download">Download Plugin ►</a>
|
142 |
</li>
|
143 |
<?php
|
144 |
}
|
13 |
'content' => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.',
|
14 |
'href' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
|
15 |
),
|
16 |
+
"contact_form_builder" => array(
|
17 |
'title' => 'Contact Form Builder',
|
18 |
'text' => 'WordPress contact form builder plugin',
|
19 |
'content' => 'Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors.',
|
95 |
'title' => 'Folder Menu',
|
96 |
'text' => 'WordPress folder menu plugin',
|
97 |
'content' => 'Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences.',
|
98 |
+
'href' => 'https://web-dorado.com/products/wordpress-menu-vertical.html'
|
99 |
),
|
100 |
"random_post" => array(
|
101 |
'title' => 'Random post',
|
115 |
'content' => 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.',
|
116 |
'href' => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
|
117 |
),
|
118 |
+
"post-slider" => array(
|
119 |
+
'title' => 'Post Slider',
|
120 |
+
'text' => 'WordPress Post Slider plugin',
|
121 |
+
'content' => 'Post Slider WD is designed to show off the selected posts of your website in a slider.',
|
122 |
+
'href' => 'https://web-dorado.com/products/wordpress-post-slider-plugin.html'
|
123 |
+
),
|
124 |
);
|
125 |
?>
|
126 |
<div id="main_featured_plugins_page">
|
127 |
<h3>Featured Plugins</h3>
|
128 |
<div class="featured_header">
|
129 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-plugins.html?source=<?php echo $current_plugin; ?>">
|
130 |
<h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +18 PLUGINS</h1>
|
131 |
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
132 |
+
<div class="try-now">
|
133 |
+
<span>TRY NOW</span>
|
134 |
+
</div>
|
135 |
</a>
|
136 |
</div>
|
137 |
<ul id="featured-plugins-list">
|
147 |
<div class="description">
|
148 |
<p><?php echo $plugins['content']; ?></p>
|
149 |
</div>
|
150 |
+
<a target="_blank" href="<?php echo $plugins['href']; ?>?source=<?php echo $current_plugin; ?>" class="download">Download Plugin ►</a>
|
151 |
</li>
|
152 |
<?php
|
153 |
}
|
featured/featured_themes.php
CHANGED
@@ -1,137 +1,92 @@
|
|
1 |
<?php
|
2 |
-
function spider_featured_themes() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
?>
|
4 |
-
<div id="main_featured_themes_page">
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
<form method="post">
|
21 |
-
<ul id="featured-plugins-list">
|
22 |
-
<li class="portfolio">
|
23 |
<div class="product"></div>
|
24 |
<div class="title">
|
25 |
-
<strong class="heading"
|
26 |
</div>
|
27 |
<div class="description">
|
28 |
-
<p
|
29 |
</div>
|
30 |
-
<a target="_blank" href="
|
31 |
</li>
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
<div class="description">
|
38 |
-
<p>Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.</p>
|
39 |
-
</div>
|
40 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-elite.html" class="download">Download theme ►</a>
|
41 |
-
</li>
|
42 |
-
<li class="sauron">
|
43 |
-
<div class="product"></div>
|
44 |
-
<div class="title">
|
45 |
-
<strong class="heading">Sauron Theme</strong>
|
46 |
-
</div>
|
47 |
-
<div class="description">
|
48 |
-
<p>Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.</p>
|
49 |
-
</div>
|
50 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/sauron.html" class="download">Download plugin ►</a>
|
51 |
-
</li>
|
52 |
-
<li class="mottomag">
|
53 |
-
<div class="product"></div>
|
54 |
-
<div class="title">
|
55 |
-
<strong class="heading">MottoMag Theme</strong>
|
56 |
-
</div>
|
57 |
-
<div class="description">
|
58 |
-
<p>MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.</p>
|
59 |
-
</div>
|
60 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/mottomag.html" class="download">Download plugin ►</a>
|
61 |
-
</li>
|
62 |
-
<li class="business_world">
|
63 |
-
<div class="product"></div>
|
64 |
-
<div class="title">
|
65 |
-
<strong class="heading">Business World Theme</strong>
|
66 |
-
</div>
|
67 |
-
<div class="description">
|
68 |
-
<p>Business World is an innovative WordPress theme great for Business websites.</p>
|
69 |
-
</div>
|
70 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-world.html" class="download">Download plugin ►</a>
|
71 |
-
</li>
|
72 |
-
<li class="best_magazine">
|
73 |
-
<div class="product"></div>
|
74 |
-
<div class="title">
|
75 |
-
<strong class="heading">Best Magazine Theme</strong>
|
76 |
-
</div>
|
77 |
-
<div class="description">
|
78 |
-
<p>Best Magazine is an ultimate selection when you are dealing with multi-category news websites.</p>
|
79 |
-
</div>
|
80 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/best-magazine.html" class="download">Download plugin ►</a>
|
81 |
-
</li>
|
82 |
-
<li class="wedding_style">
|
83 |
-
<div class="product"></div>
|
84 |
-
<div class="title">
|
85 |
-
<strong class="heading">Wedding Style Theme</strong>
|
86 |
-
</div>
|
87 |
-
<div class="description">
|
88 |
-
<p>Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.</p>
|
89 |
-
</div>
|
90 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding-style.html" class="download">Download plugin ►</a>
|
91 |
-
</li>
|
92 |
-
<li class="magazine">
|
93 |
-
<div class="product"></div>
|
94 |
-
<div class="title">
|
95 |
-
<strong class="heading">Magazine Theme</strong>
|
96 |
-
</div>
|
97 |
-
<div class="description">
|
98 |
-
<p>Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.</p>
|
99 |
-
</div>
|
100 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/news-magazine.html" class="download">Download plugin ►</a>
|
101 |
-
</li>
|
102 |
-
<li class="weddings">
|
103 |
-
<div class="product"></div>
|
104 |
-
<div class="title">
|
105 |
-
<strong class="heading">Weddings Theme</strong>
|
106 |
-
</div>
|
107 |
-
<div class="description">
|
108 |
-
<p>Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.</p>
|
109 |
-
</div>
|
110 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding.html" class="download">Download plugin ►</a>
|
111 |
-
</li>
|
112 |
-
<li class="exclusive">
|
113 |
-
<div class="product"></div>
|
114 |
-
<div class="title">
|
115 |
-
<strong class="heading">Exclusive Theme</strong>
|
116 |
-
</div>
|
117 |
-
<div class="description">
|
118 |
-
<p>Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.</p>
|
119 |
-
</div>
|
120 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/exclusive.html" class="download">Download plugin ►</a>
|
121 |
-
</li>
|
122 |
-
<li class="expert">
|
123 |
-
<div class="product"></div>
|
124 |
-
<div class="title">
|
125 |
-
<strong class="heading">Expert Theme</strong>
|
126 |
-
</div>
|
127 |
-
<div class="description">
|
128 |
-
<p>WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.</p>
|
129 |
-
</div>
|
130 |
-
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-responsive.html" class="download">Download plugin ►</a>
|
131 |
-
</li>
|
132 |
-
</ul>
|
133 |
-
</form>
|
134 |
-
</div>
|
135 |
-
</div>
|
136 |
<?php
|
137 |
}
|
1 |
<?php
|
2 |
+
function spider_featured_themes($current_plugin = '') {
|
3 |
+
$themes = array(
|
4 |
+
"portfolio_gallery" => array(
|
5 |
+
'title' => 'Portfolio Gallery Theme',
|
6 |
+
'content' => 'Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.',
|
7 |
+
'href' => 'https://web-dorado.com/wordpress-themes/portfolio-gallery.html'
|
8 |
+
),
|
9 |
+
"business_elite" => array(
|
10 |
+
'title' => 'Business Elite Theme',
|
11 |
+
'content' => 'Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.',
|
12 |
+
'href' => 'https://web-dorado.com/wordpress-themes/business-elite.html'
|
13 |
+
),
|
14 |
+
"sauron" => array(
|
15 |
+
'title' => 'Sauron Theme',
|
16 |
+
'content' => 'Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.',
|
17 |
+
'href' => 'https://web-dorado.com/wordpress-themes/sauron.html'
|
18 |
+
),
|
19 |
+
"mottomag" => array(
|
20 |
+
'title' => 'MottoMag Theme',
|
21 |
+
'content' => 'MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.',
|
22 |
+
'href' => 'https://web-dorado.com/wordpress-themes/mottomag.html'
|
23 |
+
),
|
24 |
+
"business_world" => array(
|
25 |
+
'title' => 'Business World Theme',
|
26 |
+
'content' => 'Business World is an innovative WordPress theme great for Business websites.',
|
27 |
+
'href' => 'https://web-dorado.com/wordpress-themes/business-world.html'
|
28 |
+
),
|
29 |
+
"best_magazine" => array(
|
30 |
+
'title' => 'Best Magazine Theme',
|
31 |
+
'content' => 'Best Magazine is an ultimate selection when you are dealing with multi-category news websites.',
|
32 |
+
'href' => 'https://web-dorado.com/wordpress-themes/best-magazine.html'
|
33 |
+
),
|
34 |
+
"wedding_style" => array(
|
35 |
+
'title' => 'Wedding Style Theme',
|
36 |
+
'content' => 'Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.',
|
37 |
+
'href' => 'https://web-dorado.com/wordpress-themes/wedding-style.html'
|
38 |
+
),
|
39 |
+
"magazine" => array(
|
40 |
+
'title' => 'Magazine Theme',
|
41 |
+
'content' => 'Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.',
|
42 |
+
'href' => 'https://web-dorado.com/wordpress-themes/news-magazine.html'
|
43 |
+
),
|
44 |
+
"weddings" => array(
|
45 |
+
'title' => 'Weddings Theme',
|
46 |
+
'content' => 'Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.',
|
47 |
+
'href' => 'https://web-dorado.com/wordpress-themes/wedding.html'
|
48 |
+
),
|
49 |
+
"exclusive" => array(
|
50 |
+
'title' => 'Exclusive Theme',
|
51 |
+
'content' => 'Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.',
|
52 |
+
'href' => 'https://web-dorado.com/wordpress-themes/exclusive.html'
|
53 |
+
),
|
54 |
+
"expert" => array(
|
55 |
+
'title' => 'Expert Theme',
|
56 |
+
'content' => 'WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.',
|
57 |
+
'href' => 'https://web-dorado.com/wordpress-themes/business-responsive.html'
|
58 |
+
),
|
59 |
+
);
|
60 |
?>
|
61 |
+
<div id="main_featured_themes_page">
|
62 |
+
<h3>Featured Themes</h3>
|
63 |
+
<div class="featured_header">
|
64 |
+
<a href="https://web-dorado.com/wordpress-themes.html?source=<?php echo $current_plugin; ?>" target="_blank">
|
65 |
+
<h1>WORDPRESS THEMES</h1>
|
66 |
+
<h1 class="get_plugins">FOR $40 ONLY <span>- SAVE 80%</span></h1>
|
67 |
+
<div class="try-now">
|
68 |
+
<span>TRY NOW</span>
|
69 |
+
</div>
|
70 |
+
</a>
|
71 |
+
</div>
|
72 |
+
<ul id="featured-plugins-list">
|
73 |
+
<?php
|
74 |
+
foreach ($themes as $key => $themes) {
|
75 |
+
?>
|
76 |
+
<li class="<?php echo $key; ?>">
|
|
|
|
|
|
|
77 |
<div class="product"></div>
|
78 |
<div class="title">
|
79 |
+
<strong class="heading"><?php echo $themes['title']; ?></strong>
|
80 |
</div>
|
81 |
<div class="description">
|
82 |
+
<p><?php echo $themes['content']; ?></p>
|
83 |
</div>
|
84 |
+
<a target="_blank" href="<?php echo $themes['href']; ?>?source=<?php echo $current_plugin; ?>" class="download">Download theme ►</a>
|
85 |
</li>
|
86 |
+
<?php
|
87 |
+
}
|
88 |
+
?>
|
89 |
+
</ul>
|
90 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
<?php
|
92 |
}
|
featured/images/featured_plugins_bg.png
DELETED
Binary file
|
featured/style.css
CHANGED
@@ -72,6 +72,7 @@
|
|
72 |
#main_featured_plugins_page #featured-plugins-list li.events-wd .product {background:url("images/events-wd.png") center center no-repeat;}
|
73 |
#main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
|
74 |
#main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
|
|
|
75 |
|
76 |
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
77 |
display: block;
|
@@ -125,8 +126,8 @@
|
|
125 |
color: #F47629;
|
126 |
}
|
127 |
|
128 |
-
.featured_header{
|
129 |
-
background: #
|
130 |
border-right: 3px solid #E5E5E5;
|
131 |
border-bottom: 3px solid #E5E5E5;
|
132 |
position: relative;
|
@@ -141,18 +142,30 @@
|
|
141 |
|
142 |
.featured_header h1.get_plugins {
|
143 |
color: #FFFFFF;
|
144 |
-
background:url("images/featured_plugins_bg.png") no-repeat;
|
145 |
height: 85px;
|
146 |
margin: 0;
|
147 |
background-size: 85% 100%;
|
148 |
background-position: center;
|
149 |
line-height: 60px;
|
150 |
}
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
.featured_header h1 {
|
153 |
font-size: 50px;
|
154 |
text-align: center;
|
155 |
-
color: #
|
156 |
letter-spacing: 3px;
|
157 |
text-transform: uppercase;
|
158 |
}
|
72 |
#main_featured_plugins_page #featured-plugins-list li.events-wd .product {background:url("images/events-wd.png") center center no-repeat;}
|
73 |
#main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
|
74 |
#main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
|
75 |
+
#main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url("images/post-slider.png") center center no-repeat;}
|
76 |
|
77 |
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
78 |
display: block;
|
126 |
color: #F47629;
|
127 |
}
|
128 |
|
129 |
+
.featured_header {
|
130 |
+
background: #11465F;
|
131 |
border-right: 3px solid #E5E5E5;
|
132 |
border-bottom: 3px solid #E5E5E5;
|
133 |
position: relative;
|
142 |
|
143 |
.featured_header h1.get_plugins {
|
144 |
color: #FFFFFF;
|
|
|
145 |
height: 85px;
|
146 |
margin: 0;
|
147 |
background-size: 85% 100%;
|
148 |
background-position: center;
|
149 |
line-height: 60px;
|
150 |
}
|
151 |
+
|
152 |
+
.featured_header .try-now {
|
153 |
+
text-align: center;
|
154 |
+
}
|
155 |
+
|
156 |
+
.featured_header .try-now span {
|
157 |
+
display: inline-block;
|
158 |
+
padding: 7px 16px;
|
159 |
+
background: #F47629;
|
160 |
+
border-radius: 10px;
|
161 |
+
color: #ffffff;
|
162 |
+
font-size: 23px;
|
163 |
+
}
|
164 |
+
|
165 |
.featured_header h1 {
|
166 |
font-size: 50px;
|
167 |
text-align: center;
|
168 |
+
color: #FFFFFF;
|
169 |
letter-spacing: 3px;
|
170 |
text-transform: uppercase;
|
171 |
}
|
featured/themes_style.css
CHANGED
@@ -36,10 +36,21 @@
|
|
36 |
|
37 |
#main_featured_themes_page {
|
38 |
font-family: Oswald;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
#main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
|
42 |
-
#main_featured_themes_page #featured-plugins-list li.
|
43 |
#main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
|
44 |
#main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
|
45 |
#main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
|
@@ -102,17 +113,12 @@
|
|
102 |
color: #F47629;
|
103 |
}
|
104 |
|
105 |
-
.featured_header
|
106 |
-
|
107 |
border-right: 3px solid #E5E5E5;
|
108 |
border-bottom: 3px solid #E5E5E5;
|
109 |
-
padding: 20px 0;
|
110 |
-
}
|
111 |
-
|
112 |
-
.featured_header {
|
113 |
position: relative;
|
114 |
-
|
115 |
-
margin: 15px auto 0px auto;
|
116 |
}
|
117 |
|
118 |
.featured_header .old_price {
|
@@ -122,27 +128,44 @@
|
|
122 |
}
|
123 |
|
124 |
.featured_header h1.get_plugins {
|
125 |
-
|
126 |
-
|
127 |
-
height: 85px;
|
128 |
margin: 0;
|
129 |
-
background-size:
|
130 |
background-position: center;
|
131 |
line-height: 60px;
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
.featured_header h1 {
|
135 |
-
font-size:
|
136 |
-
|
137 |
-
color: #
|
138 |
letter-spacing: 3px;
|
139 |
-
|
140 |
}
|
141 |
|
142 |
.featured_header a {
|
143 |
text-decoration: none;
|
144 |
}
|
145 |
|
|
|
|
|
|
|
|
|
|
|
146 |
@media screen and (max-width: 1035px) {
|
147 |
.featured_header h1 {
|
148 |
font-size: 37px;
|
36 |
|
37 |
#main_featured_themes_page {
|
38 |
font-family: Oswald;
|
39 |
+
width: 90%;
|
40 |
+
margin: 15px auto 0px auto;
|
41 |
+
}
|
42 |
+
|
43 |
+
#main_featured_themes_page h3 {
|
44 |
+
border-bottom: 2px solid #CECECE;
|
45 |
+
color: rgb(111, 111, 111);
|
46 |
+
font-family: Segoe UI;
|
47 |
+
font-size: 18pt;
|
48 |
+
margin: 0px auto 15px auto;
|
49 |
+
padding: 20px 0;
|
50 |
}
|
51 |
|
52 |
#main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
|
53 |
+
#main_featured_themes_page #featured-plugins-list li.portfolio_gallery .product {background:url("images/portfolio.png") left center no-repeat;}
|
54 |
#main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
|
55 |
#main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
|
56 |
#main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
|
113 |
color: #F47629;
|
114 |
}
|
115 |
|
116 |
+
.featured_header {
|
117 |
+
background: #11465F;
|
118 |
border-right: 3px solid #E5E5E5;
|
119 |
border-bottom: 3px solid #E5E5E5;
|
|
|
|
|
|
|
|
|
120 |
position: relative;
|
121 |
+
padding: 20px 0;
|
|
|
122 |
}
|
123 |
|
124 |
.featured_header .old_price {
|
128 |
}
|
129 |
|
130 |
.featured_header h1.get_plugins {
|
131 |
+
color: #FFFFFF;
|
132 |
+
height: 85px;
|
|
|
133 |
margin: 0;
|
134 |
+
background-size: 85% 100%;
|
135 |
background-position: center;
|
136 |
line-height: 60px;
|
137 |
}
|
138 |
|
139 |
+
.featured_header .try-now{
|
140 |
+
text-align: center;
|
141 |
+
}
|
142 |
+
|
143 |
+
.featured_header .try-now span {
|
144 |
+
display: inline-block;
|
145 |
+
padding: 7px 16px;
|
146 |
+
background: #F47629;
|
147 |
+
border-radius: 10px;
|
148 |
+
color: #ffffff;
|
149 |
+
font-size: 23px;
|
150 |
+
}
|
151 |
+
|
152 |
.featured_header h1 {
|
153 |
+
font-size: 50px;
|
154 |
+
text-align: center;
|
155 |
+
color: #FFFFFF;
|
156 |
letter-spacing: 3px;
|
157 |
+
text-transform: uppercase;
|
158 |
}
|
159 |
|
160 |
.featured_header a {
|
161 |
text-decoration: none;
|
162 |
}
|
163 |
|
164 |
+
.featured_header .old-price {
|
165 |
+
color: #889CA8;
|
166 |
+
text-decoration: line-through;
|
167 |
+
}
|
168 |
+
|
169 |
@media screen and (max-width: 1035px) {
|
170 |
.featured_header h1 {
|
171 |
font-size: 37px;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
|
4 |
Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -138,6 +138,10 @@ After downloading the ZIP file,
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
|
|
141 |
= 1.0.41 =
|
142 |
Fixed: CC, BCC multiple emails.
|
143 |
|
4 |
Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.0.42
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
138 |
|
139 |
== Changelog ==
|
140 |
|
141 |
+
= 1.0.42 =
|
142 |
+
Changed: Featured plugins, themes page.
|
143 |
+
Changed: Unistall page.
|
144 |
+
|
145 |
= 1.0.41 =
|
146 |
Fixed: CC, BCC multiple emails.
|
147 |
|