Version Description
Changed: Featured plugins page. New: Featured themes page.
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form Builder – a plugin for creating contact and feedback forms |
Version | 1.0.21 |
Comparing to | |
See all releases |
Code changes from version 1.0.20 to 1.0.21
- contact-form-builder.php +19 -3
- featured/featured.php +45 -35
- featured/featured_themes.php +110 -0
- featured/images/best_magazine.jpg +0 -0
- featured/images/business_elite.jpg +0 -0
- featured/images/business_world.jpg +0 -0
- featured/images/catalog.jpg +0 -0
- featured/images/catalog.png +0 -0
- featured/images/contact-form-builder.jpg +0 -0
- featured/images/contact-form-maker.jpg +0 -0
- featured/images/contact.builder.png +0 -0
- featured/images/contact.maker.png +0 -0
- featured/images/contacts.jpg +0 -0
- featured/images/contacts.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/exclusive.jpg +0 -0
- featured/images/expert.jpg +0 -0
- featured/images/facebook.jpg +0 -0
- featured/images/facebook.png +0 -0
- featured/images/faq.jpg +0 -0
- featured/images/faq.png +0 -0
- featured/images/flash.calendar.jpg +0 -0
- featured/images/flash.calendar.png +0 -0
- featured/images/fm-import.png +0 -0
- featured/images/fm.import.jpg +0 -0
- featured/images/folder.menu.jpg +0 -0
- featured/images/folder.menu.png +0 -0
- featured/images/form.jpg +0 -0
- featured/images/form.png +0 -0
- featured/images/magazine.jpg +0 -0
- featured/images/mottomag.jpg +0 -0
- featured/images/photo-gallery.jpg +0 -0
- featured/images/photo-gallery.png +0 -0
- featured/images/player.jpg +0 -0
- featured/images/player.png +0 -0
- featured/images/random.post.png +0 -0
- featured/images/sauron.jpg +0 -0
- featured/images/slider.jpg +0 -0
- featured/images/slider.png +0 -0
- featured/images/spider-calendar.jpg +0 -0
- featured/images/spider.calendar.png +0 -0
- featured/images/twitter-widget.jpg +0 -0
- featured/images/twittertools.png +0 -0
- featured/images/wedding.jpg +0 -0
- featured/images/wedding_style.jpg +0 -0
- featured/images/zoom.jpg +0 -0
- featured/images/zoom.png +0 -0
- featured/style.css +57 -66
- featured/themes_style.css +89 -0
- readme.txt +8 -4
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
|
@@ -31,6 +31,7 @@ function contact_form_maker_options_panel() {
|
|
31 |
add_action('admin_print_styles-' . $licensing_plugins_page, 'contact_form_maker_licensing_styles');
|
32 |
|
33 |
add_submenu_page('manage_cfm', __('Featured Plugins', 'contact_form_maker'), __('Featured Plugins', 'contact_form_maker'), 'manage_options', 'featured_plugins_cfm', 'cfm_featured');
|
|
|
34 |
|
35 |
$uninstall_page = add_submenu_page('manage_cfm', __('Uninstall', 'contact_form_maker'), __('Uninstall', 'contact_form_maker'), 'manage_options', 'uninstall_cfm', 'contact_form_maker');
|
36 |
add_action('admin_print_styles-' . $uninstall_page, 'contact_form_maker_styles');
|
@@ -69,7 +70,22 @@ function cfm_featured() {
|
|
69 |
require_once(WD_CFM_DIR . '/featured/featured.php');
|
70 |
wp_register_style('cfm_featured', WD_CFM_URL . '/featured/style.css', array(), get_option("wd_contact_form_maker_version"));
|
71 |
wp_print_styles('cfm_featured');
|
72 |
-
spider_featured('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
74 |
|
75 |
add_action('wp_ajax_ContactFormMakerPreview', 'contact_form_maker_ajax');
|
@@ -182,7 +198,7 @@ if (class_exists('WP_Widget')) {
|
|
182 |
// Activate plugin.
|
183 |
function contact_form_maker_activate() {
|
184 |
$version = get_option("wd_contact_form_maker_version");
|
185 |
-
$new_version = '1.0.
|
186 |
if ($version && version_compare($version, $new_version, '<')) {
|
187 |
require_once WD_CFM_DIR . "/contact-form-builder-update.php";
|
188 |
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.21
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
31 |
add_action('admin_print_styles-' . $licensing_plugins_page, 'contact_form_maker_licensing_styles');
|
32 |
|
33 |
add_submenu_page('manage_cfm', __('Featured Plugins', 'contact_form_maker'), __('Featured Plugins', 'contact_form_maker'), 'manage_options', 'featured_plugins_cfm', 'cfm_featured');
|
34 |
+
add_submenu_page('manage_cfm', __('Featured Themes', 'contact_form_maker'), __('Featured Themes', 'contact_form_maker'), 'manage_options', 'featured_themes_cfm', 'wds_featured_themes');
|
35 |
|
36 |
$uninstall_page = add_submenu_page('manage_cfm', __('Uninstall', 'contact_form_maker'), __('Uninstall', 'contact_form_maker'), 'manage_options', 'uninstall_cfm', 'contact_form_maker');
|
37 |
add_action('admin_print_styles-' . $uninstall_page, 'contact_form_maker_styles');
|
70 |
require_once(WD_CFM_DIR . '/featured/featured.php');
|
71 |
wp_register_style('cfm_featured', WD_CFM_URL . '/featured/style.css', array(), get_option("wd_contact_form_maker_version"));
|
72 |
wp_print_styles('cfm_featured');
|
73 |
+
spider_featured('contact_form_bulder');
|
74 |
+
}
|
75 |
+
|
76 |
+
function cfm_featured_themes() {
|
77 |
+
if (function_exists('current_user_can')) {
|
78 |
+
if (!current_user_can('manage_options')) {
|
79 |
+
die('Access Denied');
|
80 |
+
}
|
81 |
+
}
|
82 |
+
else {
|
83 |
+
die('Access Denied');
|
84 |
+
}
|
85 |
+
require_once(WD_CFM_DIR . '/featured/featured_themes.php');
|
86 |
+
wp_register_style('cfm_featured_themes', WD_CFM_URL . '/featured/themes_style.css', array(), get_option("wd_contact_form_maker_version"));
|
87 |
+
wp_print_styles('cfm_featured_themes');
|
88 |
+
spider_featured_themes();
|
89 |
}
|
90 |
|
91 |
add_action('wp_ajax_ContactFormMakerPreview', 'contact_form_maker_ajax');
|
198 |
// Activate plugin.
|
199 |
function contact_form_maker_activate() {
|
200 |
$version = get_option("wd_contact_form_maker_version");
|
201 |
+
$new_version = '1.0.21';
|
202 |
if ($version && version_compare($version, $new_version, '<')) {
|
203 |
require_once WD_CFM_DIR . "/contact-form-builder-update.php";
|
204 |
contact_form_maker_update($version);
|
featured/featured.php
CHANGED
@@ -5,91 +5,103 @@ function spider_featured($current_plugin = '') {
|
|
5 |
'title' => 'Form Maker',
|
6 |
'text' => 'Wordpress form builder plugin',
|
7 |
'content' => 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.',
|
8 |
-
'href' => '
|
9 |
),
|
10 |
"photo-gallery" => array(
|
11 |
'title' => 'Photo Gallery',
|
12 |
'text' => 'WordPress Photo Gallery plugin',
|
13 |
-
'content' => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.
|
14 |
-
'href' => '
|
15 |
),
|
16 |
-
"
|
17 |
'title' => 'Contact Form Builder',
|
18 |
'text' => 'WordPress contact form builder plugin',
|
19 |
-
'content' => '
|
20 |
-
'href' => '
|
21 |
),
|
22 |
-
"
|
23 |
'title' => 'Slider WD',
|
24 |
'text' => 'WordPress slider plugin',
|
25 |
-
'content' => '
|
26 |
-
'href' => '
|
27 |
),
|
28 |
-
"contact-
|
29 |
'title' => 'Contact Form Maker',
|
30 |
'text' => 'WordPress contact form maker plugin',
|
31 |
'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
|
32 |
-
'href' => '
|
33 |
),
|
34 |
"fm-import" => array(
|
35 |
-
'title' => '
|
36 |
'text' => 'WordPress Form Maker export/import plugin',
|
37 |
'content' => 'Form Maker Export/Import is a Form Maker capacity enhancing plugin.',
|
38 |
-
'href' => '
|
39 |
),
|
40 |
"spider-calendar" => array(
|
41 |
'title' => 'Spider Calendar',
|
42 |
'text' => 'WordPress event calendar plugin',
|
43 |
'content' => 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.',
|
44 |
-
'href' => '
|
45 |
),
|
46 |
"catalog" => array(
|
47 |
'title' => 'Spider Catalog',
|
48 |
'text' => 'WordPress product catalog plugin',
|
49 |
'content' => 'Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.',
|
50 |
-
'href' => '
|
51 |
),
|
52 |
"player" => array(
|
53 |
'title' => 'Video Player',
|
54 |
'text' => 'WordPress Video player plugin',
|
55 |
-
'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',
|
56 |
-
'href' => '
|
57 |
),
|
58 |
"contacts" => array(
|
59 |
'title' => 'Spider Contacts',
|
60 |
'text' => 'Wordpress staff list plugin',
|
61 |
'content' => 'Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.',
|
62 |
-
'href' => '
|
63 |
),
|
64 |
"facebook" => array(
|
65 |
'title' => 'Spider Facebook',
|
66 |
'text' => 'WordPress Facebook plugin',
|
67 |
-
'content' => 'Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets
|
68 |
-
'href' => '
|
69 |
),
|
70 |
"twitter-widget" => array(
|
71 |
'title' => 'Widget Twitter',
|
72 |
'text' => 'WordPress Widget Twitter plugin',
|
73 |
'content' => 'The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.',
|
74 |
-
'href' => '
|
75 |
),
|
76 |
"faq" => array(
|
77 |
'title' => 'Spider FAQ',
|
78 |
'text' => 'WordPress FAQ Plugin',
|
79 |
'content' => 'The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.',
|
80 |
-
'href' => '
|
81 |
),
|
82 |
"zoom" => array(
|
83 |
'title' => 'Zoom',
|
84 |
'text' => 'WordPress text zoom plugin',
|
85 |
'content' => 'Zoom enables site users to resize the predefined areas of the web site.',
|
86 |
-
'href' => '
|
87 |
),
|
88 |
"flash-calendar" => array(
|
89 |
'title' => 'Flash Calendar',
|
90 |
'text' => 'WordPress flash calendar plugin',
|
91 |
'content' => 'Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.',
|
92 |
-
'href' => '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
)
|
94 |
);
|
95 |
?>
|
@@ -101,17 +113,15 @@ function spider_featured($current_plugin = '') {
|
|
101 |
if ($current_plugin != $key) {
|
102 |
?>
|
103 |
<li class="<?php echo $key; ?>">
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
</div>
|
114 |
-
</li>
|
115 |
<?php
|
116 |
}
|
117 |
}
|
5 |
'title' => 'Form Maker',
|
6 |
'text' => 'Wordpress form builder plugin',
|
7 |
'content' => 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.',
|
8 |
+
'href' => 'https://web-dorado.com/products/wordpress-form.html'
|
9 |
),
|
10 |
"photo-gallery" => array(
|
11 |
'title' => 'Photo Gallery',
|
12 |
'text' => 'WordPress Photo Gallery 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 |
+
"contact_form_bulder" => 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.',
|
20 |
+
'href' => 'https://web-dorado.com/products/wordpress-contact-form-builder.html'
|
21 |
),
|
22 |
+
"slider_wd" => array(
|
23 |
'title' => 'Slider WD',
|
24 |
'text' => 'WordPress slider plugin',
|
25 |
+
'content' => 'Create responsive, highly configurable sliders with various effects for your WordPress site.',
|
26 |
+
'href' => 'https://web-dorado.com/products/wordpress-slider-plugin.html'
|
27 |
),
|
28 |
+
"contact-maker" => array(
|
29 |
'title' => 'Contact Form Maker',
|
30 |
'text' => 'WordPress contact form maker plugin',
|
31 |
'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
|
32 |
+
'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
|
33 |
),
|
34 |
"fm-import" => array(
|
35 |
+
'title' => 'FM Export/Import',
|
36 |
'text' => 'WordPress Form Maker export/import plugin',
|
37 |
'content' => 'Form Maker Export/Import is a Form Maker capacity enhancing plugin.',
|
38 |
+
'href' => 'https://web-dorado.com/products/wordpress-form/export-import.html'
|
39 |
),
|
40 |
"spider-calendar" => array(
|
41 |
'title' => 'Spider Calendar',
|
42 |
'text' => 'WordPress event calendar plugin',
|
43 |
'content' => 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.',
|
44 |
+
'href' => 'https://web-dorado.com/products/wordpress-calendar.html'
|
45 |
),
|
46 |
"catalog" => array(
|
47 |
'title' => 'Spider Catalog',
|
48 |
'text' => 'WordPress product catalog plugin',
|
49 |
'content' => 'Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.',
|
50 |
+
'href' => 'https://web-dorado.com/products/wordpress-catalog.html'
|
51 |
),
|
52 |
"player" => array(
|
53 |
'title' => 'Video Player',
|
54 |
'text' => 'WordPress Video player plugin',
|
55 |
+
'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.',
|
56 |
+
'href' => 'https://web-dorado.com/products/wordpress-player.html'
|
57 |
),
|
58 |
"contacts" => array(
|
59 |
'title' => 'Spider Contacts',
|
60 |
'text' => 'Wordpress staff list plugin',
|
61 |
'content' => 'Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.',
|
62 |
+
'href' => 'https://web-dorado.com/products/wordpress-contacts-plugin.html'
|
63 |
),
|
64 |
"facebook" => array(
|
65 |
'title' => 'Spider Facebook',
|
66 |
'text' => 'WordPress Facebook plugin',
|
67 |
+
'content' => 'Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets.',
|
68 |
+
'href' => 'https://web-dorado.com/products/wordpress-facebook.html'
|
69 |
),
|
70 |
"twitter-widget" => array(
|
71 |
'title' => 'Widget Twitter',
|
72 |
'text' => 'WordPress Widget Twitter plugin',
|
73 |
'content' => 'The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.',
|
74 |
+
'href' => 'https://web-dorado.com/products/wordpress-twitter-integration-plugin.html'
|
75 |
),
|
76 |
"faq" => array(
|
77 |
'title' => 'Spider FAQ',
|
78 |
'text' => 'WordPress FAQ Plugin',
|
79 |
'content' => 'The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.',
|
80 |
+
'href' => 'https://web-dorado.com/products/wordpress-faq-plugin.html'
|
81 |
),
|
82 |
"zoom" => array(
|
83 |
'title' => 'Zoom',
|
84 |
'text' => 'WordPress text zoom plugin',
|
85 |
'content' => 'Zoom enables site users to resize the predefined areas of the web site.',
|
86 |
+
'href' => 'https://web-dorado.com/products/wordpress-zoom.html'
|
87 |
),
|
88 |
"flash-calendar" => array(
|
89 |
'title' => 'Flash Calendar',
|
90 |
'text' => 'WordPress flash calendar plugin',
|
91 |
'content' => 'Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.',
|
92 |
+
'href' => 'https://web-dorado.com/products/wordpress-events-calendar.html'
|
93 |
+
),
|
94 |
+
"folder_menu" => array(
|
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-random-post.html'
|
99 |
+
),
|
100 |
+
"random_post" => array(
|
101 |
+
'title' => 'Random post',
|
102 |
+
'text' => 'WordPress random post plugin',
|
103 |
+
'content' => 'Spider Random Post is a small but very smart solution for your WordPress web site.',
|
104 |
+
'href' => 'https://web-dorado.com/products/wordpress-random-post.html'
|
105 |
)
|
106 |
);
|
107 |
?>
|
113 |
if ($current_plugin != $key) {
|
114 |
?>
|
115 |
<li class="<?php echo $key; ?>">
|
116 |
+
<div class="product"></div>
|
117 |
+
<div class="title">
|
118 |
+
<strong class="heading"><?php echo $plugins['title']; ?></strong>
|
119 |
+
</div>
|
120 |
+
<div class="description">
|
121 |
+
<p><?php echo $plugins['content']; ?></p>
|
122 |
+
</div>
|
123 |
+
<a target="_blank" href="<?php echo $plugins['href']; ?>" class="download">Download</a>
|
124 |
+
</li>
|
|
|
|
|
125 |
<?php
|
126 |
}
|
127 |
}
|
featured/featured_themes.php
ADDED
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function spider_featured_themes() {
|
3 |
+
?>
|
4 |
+
<div id="main_featured_themes_page">
|
5 |
+
<h3>Featured Themes</h3>
|
6 |
+
<ul id="featured-plugins-list">
|
7 |
+
<li class="business_elite">
|
8 |
+
<div class="product"></div>
|
9 |
+
<div class="title">
|
10 |
+
<strong class="heading">Business Elite Theme</strong>
|
11 |
+
</div>
|
12 |
+
<div class="description">
|
13 |
+
<p>Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.</p>
|
14 |
+
</div>
|
15 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-elite.html" class="download">Download plugin >></a>
|
16 |
+
</li>
|
17 |
+
<li class="sauron">
|
18 |
+
<div class="product"></div>
|
19 |
+
<div class="title">
|
20 |
+
<strong class="heading">Sauron Theme</strong>
|
21 |
+
</div>
|
22 |
+
<div class="description">
|
23 |
+
<p>Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.</p>
|
24 |
+
</div>
|
25 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/sauron.html" class="download">Download</a>
|
26 |
+
</li>
|
27 |
+
<li class="mottomag">
|
28 |
+
<div class="product"></div>
|
29 |
+
<div class="title">
|
30 |
+
<strong class="heading">MottoMag Theme</strong>
|
31 |
+
</div>
|
32 |
+
<div class="description">
|
33 |
+
<p>MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.</p>
|
34 |
+
</div>
|
35 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/mottomag.html" class="download">Download</a>
|
36 |
+
</li>
|
37 |
+
<li class="business_world">
|
38 |
+
<div class="product"></div>
|
39 |
+
<div class="title">
|
40 |
+
<strong class="heading">Business World Theme</strong>
|
41 |
+
</div>
|
42 |
+
<div class="description">
|
43 |
+
<p>Business World is an innovative WordPress theme great for Business websites.</p>
|
44 |
+
</div>
|
45 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-world.html" class="download">Download</a>
|
46 |
+
</li>
|
47 |
+
<li class="best_magazine">
|
48 |
+
<div class="product"></div>
|
49 |
+
<div class="title">
|
50 |
+
<strong class="heading">Best Magazine Theme</strong>
|
51 |
+
</div>
|
52 |
+
<div class="description">
|
53 |
+
<p>Best Magazine is an ultimate selection when you are dealing with multi-category news websites.</p>
|
54 |
+
</div>
|
55 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/best-magazine.html" class="download">Download</a>
|
56 |
+
</li>
|
57 |
+
<li class="wedding_style">
|
58 |
+
<div class="product"></div>
|
59 |
+
<div class="title">
|
60 |
+
<strong class="heading">Wedding Style Theme</strong>
|
61 |
+
</div>
|
62 |
+
<div class="description">
|
63 |
+
<p>Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.</p>
|
64 |
+
</div>
|
65 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding-style.html" class="download">Download</a>
|
66 |
+
</li>
|
67 |
+
<li class="magazine">
|
68 |
+
<div class="product"></div>
|
69 |
+
<div class="title">
|
70 |
+
<strong class="heading">Magazine Theme</strong>
|
71 |
+
</div>
|
72 |
+
<div class="description">
|
73 |
+
<p>Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.</p>
|
74 |
+
</div>
|
75 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/news-magazine.html" class="download">Download</a>
|
76 |
+
</li>
|
77 |
+
<li class="weddings">
|
78 |
+
<div class="product"></div>
|
79 |
+
<div class="title">
|
80 |
+
<strong class="heading">Weddings Theme</strong>
|
81 |
+
</div>
|
82 |
+
<div class="description">
|
83 |
+
<p>Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.</p>
|
84 |
+
</div>
|
85 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding.html" class="download">Download</a>
|
86 |
+
</li>
|
87 |
+
<li class="exclusive">
|
88 |
+
<div class="product"></div>
|
89 |
+
<div class="title">
|
90 |
+
<strong class="heading">Exclusive Theme</strong>
|
91 |
+
</div>
|
92 |
+
<div class="description">
|
93 |
+
<p>Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.</p>
|
94 |
+
</div>
|
95 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/exclusive.html" class="download">Download</a>
|
96 |
+
</li>
|
97 |
+
<li class="expert">
|
98 |
+
<div class="product"></div>
|
99 |
+
<div class="title">
|
100 |
+
<strong class="heading">Expert Theme</strong>
|
101 |
+
</div>
|
102 |
+
<div class="description">
|
103 |
+
<p>WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.</p>
|
104 |
+
</div>
|
105 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-responsive.html" class="download">Download</a>
|
106 |
+
</li>
|
107 |
+
</ul>
|
108 |
+
</div>
|
109 |
+
<?php
|
110 |
+
}
|
featured/images/best_magazine.jpg
ADDED
Binary file
|
featured/images/business_elite.jpg
ADDED
Binary file
|
featured/images/business_world.jpg
ADDED
Binary file
|
featured/images/catalog.jpg
DELETED
Binary file
|
featured/images/catalog.png
ADDED
Binary file
|
featured/images/contact-form-builder.jpg
DELETED
Binary file
|
featured/images/contact-form-maker.jpg
DELETED
Binary file
|
featured/images/contact.builder.png
ADDED
Binary file
|
featured/images/contact.maker.png
ADDED
Binary file
|
featured/images/contacts.jpg
DELETED
Binary file
|
featured/images/contacts.png
ADDED
Binary file
|
featured/images/download.jpg
DELETED
Binary file
|
featured/images/download_plugins.png
ADDED
Binary file
|
featured/images/download_themes.png
ADDED
Binary file
|
featured/images/exclusive.jpg
ADDED
Binary file
|
featured/images/expert.jpg
ADDED
Binary file
|
featured/images/facebook.jpg
DELETED
Binary file
|
featured/images/facebook.png
ADDED
Binary file
|
featured/images/faq.jpg
DELETED
Binary file
|
featured/images/faq.png
ADDED
Binary file
|
featured/images/flash.calendar.jpg
DELETED
Binary file
|
featured/images/flash.calendar.png
ADDED
Binary file
|
featured/images/fm-import.png
ADDED
Binary file
|
featured/images/fm.import.jpg
DELETED
Binary file
|
featured/images/folder.menu.jpg
DELETED
Binary file
|
featured/images/folder.menu.png
ADDED
Binary file
|
featured/images/form.jpg
DELETED
Binary file
|
featured/images/form.png
ADDED
Binary file
|
featured/images/magazine.jpg
ADDED
Binary file
|
featured/images/mottomag.jpg
ADDED
Binary file
|
featured/images/photo-gallery.jpg
DELETED
Binary file
|
featured/images/photo-gallery.png
ADDED
Binary file
|
featured/images/player.jpg
DELETED
Binary file
|
featured/images/player.png
ADDED
Binary file
|
featured/images/random.post.png
ADDED
Binary file
|
featured/images/sauron.jpg
ADDED
Binary file
|
featured/images/slider.jpg
DELETED
Binary file
|
featured/images/slider.png
ADDED
Binary file
|
featured/images/spider-calendar.jpg
DELETED
Binary file
|
featured/images/spider.calendar.png
ADDED
Binary file
|
featured/images/twitter-widget.jpg
DELETED
Binary file
|
featured/images/twittertools.png
ADDED
Binary file
|
featured/images/wedding.jpg
ADDED
Binary file
|
featured/images/wedding_style.jpg
ADDED
Binary file
|
featured/images/zoom.jpg
DELETED
Binary file
|
featured/images/zoom.png
ADDED
Binary file
|
featured/style.css
CHANGED
@@ -1,33 +1,3 @@
|
|
1 |
-
#main_featured_plugins_page #featured-plugins-list li.form-maker .product {background: url("images/form.jpg") left center no-repeat;}
|
2 |
-
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background: url("images/photo-gallery.jpg") left center no-repeat;}
|
3 |
-
#main_featured_plugins_page #featured-plugins-list li.slider .product {background: url("images/slider.jpg") left center no-repeat;}
|
4 |
-
#main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background: url("images/twitter-widget.jpg") left center no-repeat;}
|
5 |
-
#main_featured_plugins_page #featured-plugins-list li.catalog .product {background: url("images/catalog.jpg") left center no-repeat;}
|
6 |
-
#main_featured_plugins_page #featured-plugins-list li.contact-form-maker .product {background: url("images/contact-form-maker.jpg") left center no-repeat;}
|
7 |
-
#main_featured_plugins_page #featured-plugins-list li.contact-form-builder .product {background: url("images/contact-form-builder.jpg") left center no-repeat;}
|
8 |
-
#main_featured_plugins_page #featured-plugins-list li.contacts .product {background: url("images/contacts.jpg") left center no-repeat;}
|
9 |
-
#main_featured_plugins_page #featured-plugins-list li.facebook .product {background: url("images/facebook.jpg") left center no-repeat;}
|
10 |
-
#main_featured_plugins_page #featured-plugins-list li.faq .product {background: url("images/faq.jpg") left center no-repeat;}
|
11 |
-
#main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background: url("images/flash.calendar.jpg") left center no-repeat;}
|
12 |
-
#main_featured_plugins_page #featured-plugins-list li.folder-menu .product {background: url("images/folder.menu.jpg") left center no-repeat;}
|
13 |
-
#main_featured_plugins_page #featured-plugins-list li.player .product {background: url("images/player.jpg") left center no-repeat;}
|
14 |
-
#main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background: url("images/spider-calendar.jpg") left center no-repeat;}
|
15 |
-
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background: url("images/zoom.jpg") left center no-repeat;}
|
16 |
-
#main_featured_plugins_page #featured-plugins-list li.fm-import .product {background: url("images/fm.import.jpg") left center no-repeat;}
|
17 |
-
|
18 |
-
#main_featured_plugins_page * {
|
19 |
-
color: #444;
|
20 |
-
font-family: "Open Sans",sans-serif;
|
21 |
-
padding: 0;
|
22 |
-
}
|
23 |
-
|
24 |
-
#main_featured_plugins_page p {
|
25 |
-
font-size: 13px;
|
26 |
-
line-height: 1.5;
|
27 |
-
margin-right: 0px;
|
28 |
-
margin-top: 7px;
|
29 |
-
}
|
30 |
-
|
31 |
#main_featured_plugins_page h3 {
|
32 |
border-bottom: 2px solid rgb(111, 111, 111);
|
33 |
color: rgb(111, 111, 111);
|
@@ -39,70 +9,91 @@
|
|
39 |
}
|
40 |
|
41 |
#main_featured_plugins_page #featured-plugins-list {
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
48 |
}
|
49 |
|
50 |
#main_featured_plugins_page #featured-plugins-list li {
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
56 |
}
|
57 |
|
58 |
#main_featured_plugins_page #featured-plugins-list li .product {
|
59 |
-
|
60 |
-
height:
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
63 |
}
|
64 |
|
65 |
#main_featured_plugins_page #featured-plugins-list li .title {
|
66 |
-
background: #cacaca;
|
67 |
-
border-top-right-radius: 3px;
|
68 |
-
border-bottom-right-radius: 3px;
|
69 |
-
float: left;
|
70 |
-
height: 113px;
|
71 |
-
margin: 0px 0px 0px 109px;
|
72 |
width: 90%;
|
|
|
|
|
|
|
73 |
}
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
76 |
-
color: #014f73;
|
77 |
display: block;
|
78 |
-
font-size: 24px;
|
79 |
-
margin: 25px 0 0 20px;
|
80 |
position: relative;
|
|
|
|
|
|
|
81 |
}
|
82 |
|
83 |
#main_featured_plugins_page #featured-plugins-list li .title p {
|
84 |
-
color: #444;
|
85 |
font-size: 14px;
|
|
|
86 |
margin-left: 20px;
|
87 |
}
|
88 |
|
89 |
#main_featured_plugins_page #featured-plugins-list li .description {
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
}
|
94 |
|
95 |
#main_featured_plugins_page #featured-plugins-list li .description p {
|
96 |
-
text-align:
|
|
|
97 |
}
|
98 |
|
99 |
-
#
|
100 |
-
#main_featured_plugins_page #featured-plugins-list li .description a.download:link,
|
101 |
-
#main_featured_plugins_page #featured-plugins-list li .description a.download:visited {
|
102 |
-
background: url("images/download.jpg") left top no-repeat;
|
103 |
display: block;
|
104 |
-
float: right;
|
105 |
height: 32px;
|
106 |
text-indent: -9999px;
|
107 |
-
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#main_featured_plugins_page h3 {
|
2 |
border-bottom: 2px solid rgb(111, 111, 111);
|
3 |
color: rgb(111, 111, 111);
|
9 |
}
|
10 |
|
11 |
#main_featured_plugins_page #featured-plugins-list {
|
12 |
+
position:relative;
|
13 |
+
margin:0px auto;
|
14 |
+
width: 95.4%;
|
15 |
+
height:auto;
|
16 |
+
display:table;
|
17 |
+
list-style:none;
|
18 |
+
margin-left: 38px;
|
19 |
}
|
20 |
|
21 |
#main_featured_plugins_page #featured-plugins-list li {
|
22 |
+
float: left;
|
23 |
+
width: 17%;
|
24 |
+
margin: 20px 0px 0px 25px;
|
25 |
+
background: #FFFFFF;
|
26 |
+
border: 1px solid #B8B8B8;
|
27 |
+
height: 354px;
|
28 |
}
|
29 |
|
30 |
#main_featured_plugins_page #featured-plugins-list li .product {
|
31 |
+
position:relative;
|
32 |
+
height:113px;
|
33 |
+
background-color: #F1F1F1 !important;
|
34 |
+
background-position-x: 50% !important;
|
35 |
+
margin: 7px;
|
36 |
+
border: 1px solid #DEDCDC;
|
37 |
+
border-radius: 3px;
|
38 |
}
|
39 |
|
40 |
#main_featured_plugins_page #featured-plugins-list li .title {
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
width: 90%;
|
42 |
+
text-align: center;
|
43 |
+
border-bottom: 1px solid #cacaca;
|
44 |
+
margin: 0 auto;
|
45 |
}
|
46 |
|
47 |
+
#main_featured_plugins_page #featured-plugins-list li.form-maker .product {background:url("images/form.png") center center no-repeat;}
|
48 |
+
#main_featured_plugins_page #featured-plugins-list li.catalog .product {background:url("images/catalog.png") center center no-repeat;}
|
49 |
+
#main_featured_plugins_page #featured-plugins-list li.contact-maker .product {background:url("images/contact.maker.png") center center no-repeat;}
|
50 |
+
#main_featured_plugins_page #featured-plugins-list li.contacts .product {background:url("images/contacts.png") center center no-repeat;}
|
51 |
+
#main_featured_plugins_page #featured-plugins-list li.facebook .product {background:url("images/facebook.png") center center no-repeat;}
|
52 |
+
#main_featured_plugins_page #featured-plugins-list li.faq .product {background:url("images/faq.png") center center no-repeat;}
|
53 |
+
#main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background:url("images/flash.calendar.png") center center no-repeat;}
|
54 |
+
#main_featured_plugins_page #featured-plugins-list li.player .product {background:url("images/player.png") center center no-repeat; }
|
55 |
+
#main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background:url("images/spider.calendar.png") center center no-repeat;}
|
56 |
+
#main_featured_plugins_page #featured-plugins-list li.contact_form_bulder .product {background:url("images/contact.builder.png") center center no-repeat;}
|
57 |
+
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url("images/random.post.png") center center no-repeat;}
|
58 |
+
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url("images/slider.png") center center no-repeat;}
|
59 |
+
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url("images/folder.menu.png") center center no-repeat;}
|
60 |
+
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url("images/zoom.png") center center no-repeat;}
|
61 |
+
#main_featured_plugins_page #featured-plugins-list li.fm-import .product {background:url("images/fm-import.png") center center no-repeat;}
|
62 |
+
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url("images/photo-gallery.png") center center no-repeat;}
|
63 |
+
#main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background:url("images/twittertools.png") center center no-repeat;}
|
64 |
+
|
65 |
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
|
|
66 |
display: block;
|
|
|
|
|
67 |
position: relative;
|
68 |
+
font-size: 16px;
|
69 |
+
color: #23282C;
|
70 |
+
margin: 13px 0px 13px 0px;
|
71 |
}
|
72 |
|
73 |
#main_featured_plugins_page #featured-plugins-list li .title p {
|
|
|
74 |
font-size: 14px;
|
75 |
+
color: #444;
|
76 |
margin-left: 20px;
|
77 |
}
|
78 |
|
79 |
#main_featured_plugins_page #featured-plugins-list li .description {
|
80 |
+
height: 127px;
|
81 |
+
width: 90%;
|
82 |
+
margin: 0 auto;
|
83 |
}
|
84 |
|
85 |
#main_featured_plugins_page #featured-plugins-list li .description p {
|
86 |
+
text-align: center;
|
87 |
+
width: 100%;
|
88 |
}
|
89 |
|
90 |
+
#featured-plugins-list li a.download {
|
|
|
|
|
|
|
91 |
display: block;
|
|
|
92 |
height: 32px;
|
93 |
text-indent: -9999px;
|
94 |
+
background: url("images/download_plugins.png") center 17px no-repeat;
|
95 |
+
border-top: 1px solid #CACACA;
|
96 |
+
outline: none;
|
97 |
+
width: 90%;
|
98 |
+
margin: 0 auto;
|
99 |
+
}
|
featured/themes_style.css
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#main_featured_themes_page h3 {
|
2 |
+
border-bottom: 2px solid rgb(111, 111, 111);
|
3 |
+
color: rgb(111, 111, 111);
|
4 |
+
font-family: Segoe UI;
|
5 |
+
font-size: 30px;
|
6 |
+
margin: 0px;
|
7 |
+
padding: 20px 0;
|
8 |
+
width: 99%;
|
9 |
+
}
|
10 |
+
|
11 |
+
#main_featured_themes_page #featured-plugins-list {
|
12 |
+
position:relative;
|
13 |
+
margin:0px auto;
|
14 |
+
width: 95.4%;
|
15 |
+
height:auto;
|
16 |
+
display:table;
|
17 |
+
list-style:none;
|
18 |
+
margin-left: 38px;
|
19 |
+
}
|
20 |
+
|
21 |
+
#main_featured_themes_page #featured-plugins-list li {
|
22 |
+
float: left;
|
23 |
+
width: 17%;
|
24 |
+
margin: 20px 0px 0px 25px;
|
25 |
+
background: #FFFFFF;
|
26 |
+
border: 1px solid #B8B8B8;
|
27 |
+
height: 405px;
|
28 |
+
}
|
29 |
+
|
30 |
+
#main_featured_themes_page #featured-plugins-list li .product {
|
31 |
+
position:relative;
|
32 |
+
height: 168px;
|
33 |
+
background-color: #F1F1F1 !important;
|
34 |
+
background-size: 100% !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
#main_featured_themes_page #featured-plugins-list li .title {
|
38 |
+
width: 90%;
|
39 |
+
text-align: center;
|
40 |
+
border-bottom: 1px solid #cacaca;
|
41 |
+
margin: 0 auto;
|
42 |
+
}
|
43 |
+
|
44 |
+
#main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
|
45 |
+
#main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
|
46 |
+
#main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
|
47 |
+
#main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
|
48 |
+
#main_featured_themes_page #featured-plugins-list li.best_magazine .product {background:url("images/best_magazine.jpg") left center no-repeat;}
|
49 |
+
#main_featured_themes_page #featured-plugins-list li.wedding_style .product {background:url("images/wedding_style.jpg") left center no-repeat;}
|
50 |
+
#main_featured_themes_page #featured-plugins-list li.magazine .product {background:url("images/magazine.jpg") left center no-repeat;}
|
51 |
+
#main_featured_themes_page #featured-plugins-list li.weddings .product {background:url("images/wedding.jpg") left center no-repeat;}
|
52 |
+
#main_featured_themes_page #featured-plugins-list li.exclusive .product {background:url("images/exclusive.jpg") left center no-repeat;}
|
53 |
+
#main_featured_themes_page #featured-plugins-list li.expert .product {background:url("images/expert.jpg") left center no-repeat;}
|
54 |
+
|
55 |
+
#main_featured_themes_page #featured-plugins-list li .title .heading {
|
56 |
+
display: block;
|
57 |
+
position: relative;
|
58 |
+
font-size: 15px;
|
59 |
+
color: #23282C;
|
60 |
+
margin: 13px 0px 13px 0px;
|
61 |
+
}
|
62 |
+
|
63 |
+
#main_featured_themes_page #featured-plugins-list li .title p {
|
64 |
+
font-size: 14px;
|
65 |
+
color: #444;
|
66 |
+
margin-left: 20px;
|
67 |
+
}
|
68 |
+
|
69 |
+
#main_featured_themes_page #featured-plugins-list li .description {
|
70 |
+
height: 130px;
|
71 |
+
width: 90%;
|
72 |
+
margin: 0 auto;
|
73 |
+
}
|
74 |
+
|
75 |
+
#main_featured_themes_page #featured-plugins-list li .description p {
|
76 |
+
text-align: center;
|
77 |
+
width: 100%;
|
78 |
+
}
|
79 |
+
|
80 |
+
#featured-plugins-list li a.download {
|
81 |
+
display: block;
|
82 |
+
height: 32px;
|
83 |
+
text-indent: -9999px;
|
84 |
+
background: url("images/download_themes.png") center 17px no-repeat;
|
85 |
+
border-top: 1px solid #CACACA;
|
86 |
+
outline: none;
|
87 |
+
width: 90%;
|
88 |
+
margin: 0 auto;
|
89 |
+
}
|
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, input, validation, send copy, form with captcha, advanced form, recaptcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -135,9 +135,13 @@ After downloading the ZIP file,
|
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
-
1.0.
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
141 |
|
142 |
= 1.0.19 =
|
143 |
Fixed: Blocked IPs color.
|
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, input, validation, send copy, form with captcha, advanced form, recaptcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 1.0.21
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
+
= 1.0.21 =
|
139 |
+
Changed: Featured plugins page.
|
140 |
+
New: Featured themes page.
|
141 |
+
|
142 |
+
= 1.0.20 =
|
143 |
+
Fixed: Alert messages with single quotes.
|
144 |
+
Fixed: Some countries translations.
|
145 |
|
146 |
= 1.0.19 =
|
147 |
Fixed: Blocked IPs color.
|