Version Description
Fixed: Bug in conditional fields.
Changed: Featured Plugins, Featured Themes pages design.
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.8.25 |
Comparing to | |
See all releases |
Code changes from version 1.8.24 to 1.8.25
- admin/views/FMViewManage_fm.php +24 -4
- featured/featured.php +145 -184
- featured/featured_themes.css +130 -46
- featured/featured_themes.php +127 -120
- featured/images/events-wd.png +0 -0
- featured/images/featured_plugins_bg.png +0 -0
- featured/images/instagram_feed.png +0 -0
- featured/images/portfolio.png +0 -0
- featured/images/portfolio_gallery.png +0 -0
- featured/style.css +147 -61
- form-maker.php +2 -2
- js/form_maker_manage.js +20 -2
- readme.txt +5 -1
admin/views/FMViewManage_fm.php
CHANGED
@@ -4013,16 +4013,36 @@ class FMViewManage_fm {
|
|
4013 |
|
4014 |
$w_choices = explode('*:*w_choices*:*',$w_size[1]);
|
4015 |
$w_choices_array = explode('***',$w_choices[0]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4016 |
|
4017 |
-
$w_choices_price = explode('*:*w_choices_price*:*',$w_choices[1]);
|
4018 |
-
$w_choices_price_array = explode('***',$w_choices_price[0]);
|
4019 |
|
4020 |
for($m=0; $m<count($w_choices_array); $m++)
|
4021 |
{
|
4022 |
if($types[$key_select_or_input]=="type_paypal_checkbox" || $types[$key_select_or_input]=="type_paypal_radio" || $types[$key_select_or_input]=="type_paypal_shipping" || $types[$key_select_or_input]=="type_paypal_select")
|
4023 |
-
$w_choice = $
|
4024 |
else
|
4025 |
-
$w_choice = $
|
4026 |
|
4027 |
if(in_array(esc_html($w_choice),$multiselect))
|
4028 |
{
|
4013 |
|
4014 |
$w_choices = explode('*:*w_choices*:*',$w_size[1]);
|
4015 |
$w_choices_array = explode('***',$w_choices[0]);
|
4016 |
+
|
4017 |
+
if($types[$key_select_or_input] == 'type_radio' || $types[$key_select_or_input] == 'type_checkbox' || $types[$key_select_or_input] == 'type_own_select')
|
4018 |
+
{
|
4019 |
+
|
4020 |
+
if(strpos($w_choices[1], 'w_value_disabled') > -1)
|
4021 |
+
{
|
4022 |
+
$w_value_disabled= explode('*:*w_value_disabled*:*',$w_choices[1]);
|
4023 |
+
$w_choices_value = explode('*:*w_choices_value*:*',$w_value_disabled[1]);
|
4024 |
+
$w_choices_value = $w_choices_value[0];
|
4025 |
+
}
|
4026 |
+
|
4027 |
+
if(isset($w_choices_value))
|
4028 |
+
$w_choices_value_array = explode('***',$w_choices_value);
|
4029 |
+
else
|
4030 |
+
$w_choices_value_array = $w_choices_array;
|
4031 |
+
}
|
4032 |
+
else
|
4033 |
+
{
|
4034 |
+
$w_choices_price= explode('*:*w_choices_price*:*',$w_choices[1]);
|
4035 |
+
$w_choices_value = $w_choices_price[0];
|
4036 |
+
$w_choices_value_array = explode('***', $w_choices_value);
|
4037 |
+
}
|
4038 |
|
|
|
|
|
4039 |
|
4040 |
for($m=0; $m<count($w_choices_array); $m++)
|
4041 |
{
|
4042 |
if($types[$key_select_or_input]=="type_paypal_checkbox" || $types[$key_select_or_input]=="type_paypal_radio" || $types[$key_select_or_input]=="type_paypal_shipping" || $types[$key_select_or_input]=="type_paypal_select")
|
4043 |
+
$w_choice = $w_choices_value_array[$m].'*:*value*:*'.$w_choices_price_array[$m];
|
4044 |
else
|
4045 |
+
$w_choice = $w_choices_value_array[$m];
|
4046 |
|
4047 |
if(in_array(esc_html($w_choice),$multiselect))
|
4048 |
{
|
featured/featured.php
CHANGED
@@ -1,189 +1,150 @@
|
|
1 |
<?php
|
2 |
function fm_featured_page($current_plugin = '') {
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
</
|
125 |
-
<
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
<
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
<
|
139 |
-
|
140 |
-
|
141 |
-
<
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
<strong class="heading">Widget Twitter</strong>
|
149 |
-
</div>
|
150 |
-
<div class="description">
|
151 |
-
<p>The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.</p>
|
152 |
-
</div>
|
153 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-twitter-integration-plugin.html" class="download">Download</a>
|
154 |
-
</li>
|
155 |
-
<li class="contact_form_bulder">
|
156 |
-
<div class="product"></div>
|
157 |
-
<div class="title">
|
158 |
-
<strong class="heading">Contact Form Builder</strong>
|
159 |
-
</div>
|
160 |
-
<div class="description">
|
161 |
-
<p>Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors. </p>
|
162 |
-
</div>
|
163 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-contact-form-builder.html" class="download">Download</a>
|
164 |
-
</li>
|
165 |
-
<li class="folder_menu">
|
166 |
-
<div class="product"></div>
|
167 |
-
<div class="title">
|
168 |
-
<strong class="heading">Folder Menu</strong>
|
169 |
-
</div>
|
170 |
-
<div class="description">
|
171 |
-
<p>Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences. </p>
|
172 |
-
</div>
|
173 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-menu-vertical.html" class="download">Download</a>
|
174 |
-
</li>
|
175 |
-
<li class="random_post">
|
176 |
-
<div class="product"></div>
|
177 |
-
<div class="title">
|
178 |
-
<strong class="heading">Random post</strong>
|
179 |
-
</div>
|
180 |
-
<div class="description">
|
181 |
-
<p>Spider Random Post is a small but very smart solution for your WordPress web site. </p>
|
182 |
-
</div>
|
183 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-random-post.html" class="download">Download</a>
|
184 |
-
</li>
|
185 |
-
</ul>
|
186 |
-
</form>
|
187 |
</div>
|
188 |
<?php
|
189 |
}
|
1 |
<?php
|
2 |
function fm_featured_page($current_plugin = '') {
|
3 |
+
$plugins = array(
|
4 |
+
"form-maker" => array(
|
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 |
+
"events-wd" => array(
|
29 |
+
'title' => 'Event Calendar WD',
|
30 |
+
'text' => 'WordPress calendar plugin',
|
31 |
+
'content' => 'Organize and publish your events in an easy and elegant way using Event Calendar WD.',
|
32 |
+
'href' => 'https://web-dorado.com/products/wordpress-event-calendar-wd.html'
|
33 |
+
),
|
34 |
+
"contact-maker" => array(
|
35 |
+
'title' => 'Contact Form Maker',
|
36 |
+
'text' => 'WordPress contact form maker plugin',
|
37 |
+
'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
|
38 |
+
'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.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 |
+
"faq_wd" => array(
|
107 |
+
'title' => 'FAQ WD',
|
108 |
+
'text' => 'WordPress FAQ plugin',
|
109 |
+
'content' => 'Organize and publish your FAQs in an easy and elegant way using FAQ WD.',
|
110 |
+
'href' => 'https://web-dorado.com/products/wordpress-faq-wd.html'
|
111 |
+
),
|
112 |
+
"instagram_feed" => array(
|
113 |
+
'title' => 'Instagram Feed WD',
|
114 |
+
'text' => 'WordPress Instagram Feed 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=formmaker" target="_blank">
|
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">
|
129 |
+
<?php
|
130 |
+
foreach ($plugins as $key => $plugins) {
|
131 |
+
if ($current_plugin != $key) {
|
132 |
+
?>
|
133 |
+
<li class="<?php echo $key; ?>">
|
134 |
+
<div class="product"></div>
|
135 |
+
<div class="title">
|
136 |
+
<strong class="heading"><?php echo $plugins['title']; ?></strong>
|
137 |
+
</div>
|
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 |
+
}
|
145 |
+
}
|
146 |
+
?>
|
147 |
+
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
</div>
|
149 |
<?php
|
150 |
}
|
featured/featured_themes.css
CHANGED
@@ -1,80 +1,164 @@
|
|
|
|
|
|
1 |
#main_featured_themes_page #featured-plugins-list {
|
2 |
-
position:relative;
|
3 |
-
margin:0px auto;
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
}
|
10 |
|
11 |
#main_featured_themes_page #featured-plugins-list li {
|
12 |
-
|
13 |
-
width:
|
14 |
-
margin: 20px
|
15 |
background: #FFFFFF;
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
}
|
19 |
|
20 |
-
#main_featured_themes_page #featured-plugins-list li
|
21 |
position:relative;
|
22 |
height: 168px;
|
23 |
background-color: #F1F1F1 !important;
|
24 |
background-size: 100% !important;
|
25 |
}
|
26 |
|
27 |
-
#main_featured_themes_page #featured-plugins-list li
|
28 |
-
width:
|
29 |
text-align: center;
|
30 |
-
border-bottom: 1px solid #cacaca;
|
31 |
margin: 0 auto;
|
32 |
}
|
33 |
|
34 |
-
#main_featured_themes_page
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
#main_featured_themes_page #featured-plugins-list li.
|
39 |
-
#main_featured_themes_page #featured-plugins-list li.
|
40 |
-
#main_featured_themes_page #featured-plugins-list li.
|
41 |
-
#main_featured_themes_page #featured-plugins-list li.
|
42 |
-
#main_featured_themes_page #featured-plugins-list li.
|
43 |
-
#main_featured_themes_page #featured-plugins-list li.
|
44 |
-
#main_featured_themes_page #featured-plugins-list li.
|
45 |
-
|
46 |
-
#main_featured_themes_page #featured-plugins-list
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
-
#main_featured_themes_page #featured-plugins-list li
|
55 |
font-size:14px;
|
56 |
color:#444;
|
57 |
margin-left:20px;
|
58 |
}
|
59 |
|
60 |
-
#main_featured_themes_page #featured-plugins-list li
|
61 |
height:130px;
|
62 |
width: 90%;
|
63 |
margin: 0 auto;
|
64 |
}
|
65 |
|
66 |
-
#main_featured_themes_page #featured-plugins-list li
|
67 |
text-align: center;
|
68 |
-
|
|
|
|
|
69 |
}
|
70 |
|
71 |
#featured-plugins-list li a.download {
|
72 |
-
display:block;
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
1 |
+
@import url(http://fonts.googleapis.com/css?family=Oswald);
|
2 |
+
|
3 |
#main_featured_themes_page #featured-plugins-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 |
|
13 |
#main_featured_themes_page #featured-plugins-list li {
|
14 |
+
display: inline-table;
|
15 |
+
width: 245px;
|
16 |
+
margin: 20px 10px 0px 10px;
|
17 |
background: #FFFFFF;
|
18 |
+
border-right: 3px solid #E5E5E5;
|
19 |
+
height: 405px;
|
20 |
+
border-bottom: 3px solid #E5E5E5;
|
21 |
+
position: relative;
|
22 |
}
|
23 |
|
24 |
+
#main_featured_themes_page #featured-plugins-list li .product {
|
25 |
position:relative;
|
26 |
height: 168px;
|
27 |
background-color: #F1F1F1 !important;
|
28 |
background-size: 100% !important;
|
29 |
}
|
30 |
|
31 |
+
#main_featured_themes_page #featured-plugins-list li .title {
|
32 |
+
width: 91%;
|
33 |
text-align: center;
|
|
|
34 |
margin: 0 auto;
|
35 |
}
|
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.png") left center no-repeat;}
|
42 |
+
#main_featured_themes_page #featured-plugins-list li.portfolio .product {background:url("images/portfolio.png") left center no-repeat;}
|
43 |
+
#main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.png") left center no-repeat;}
|
44 |
+
#main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.png") left center no-repeat; }
|
45 |
+
#main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.png") left center no-repeat;}
|
46 |
+
#main_featured_themes_page #featured-plugins-list li.best_magazine .product {background:url("images/best_magazine.png") left center no-repeat;}
|
47 |
+
#main_featured_themes_page #featured-plugins-list li.wedding_style .product {background:url("images/wedding_style.png") left center no-repeat;}
|
48 |
+
#main_featured_themes_page #featured-plugins-list li.magazine .product {background:url("images/magazine.png") left center no-repeat;}
|
49 |
+
#main_featured_themes_page #featured-plugins-list li.weddings .product {background:url("images/wedding.png") left center no-repeat;}
|
50 |
+
#main_featured_themes_page #featured-plugins-list li.exclusive .product {background:url("images/exclusive.png") left center no-repeat;}
|
51 |
+
#main_featured_themes_page #featured-plugins-list li.expert .product {background:url("images/expert.png") left center no-repeat; background-size: 80%;}
|
52 |
+
|
53 |
+
#main_featured_themes_page #featured-plugins-list li .title .heading {
|
54 |
+
display: block;
|
55 |
+
position: relative;
|
56 |
+
font-size: 17px;
|
57 |
+
color: #767676;
|
58 |
+
margin: 13px 0px 13px 0px;
|
59 |
+
text-transform: uppercase;
|
60 |
}
|
61 |
|
62 |
+
#main_featured_themes_page #featured-plugins-list li .title p {
|
63 |
font-size:14px;
|
64 |
color:#444;
|
65 |
margin-left:20px;
|
66 |
}
|
67 |
|
68 |
+
#main_featured_themes_page #featured-plugins-list li .description {
|
69 |
height:130px;
|
70 |
width: 90%;
|
71 |
margin: 0 auto;
|
72 |
}
|
73 |
|
74 |
+
#main_featured_themes_page #featured-plugins-list li .description p {
|
75 |
text-align: center;
|
76 |
+
width: 100%;
|
77 |
+
color: #9A9A9A;
|
78 |
+
font-family: "Open Sans",sans-serif;
|
79 |
}
|
80 |
|
81 |
#featured-plugins-list li a.download {
|
82 |
+
display: block;
|
83 |
+
border-top: 1px solid #CACACA;
|
84 |
+
outline: none;
|
85 |
+
width: 90%;
|
86 |
+
margin: 0 auto;
|
87 |
+
font-size: 14px;
|
88 |
+
line-height: 40px;
|
89 |
+
text-decoration: none;
|
90 |
+
font-weight: bolder;
|
91 |
+
text-align: center;
|
92 |
+
color: #134D68;
|
93 |
+
position: absolute;
|
94 |
+
text-transform: uppercase;
|
95 |
+
bottom: 0;
|
96 |
+
left: 10px;
|
97 |
+
font-family: "Open Sans",sans-serif;
|
98 |
+
text-shadow: 1px 0;
|
99 |
+
}
|
100 |
+
|
101 |
+
#featured-plugins-list li a.download:hover {
|
102 |
+
color: #F47629;
|
103 |
+
}
|
104 |
+
|
105 |
+
.featured_header > div {
|
106 |
+
background: #FFFFFF;
|
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 |
+
width: 90%;
|
115 |
+
margin: 15px auto 0px auto;
|
116 |
+
}
|
117 |
+
|
118 |
+
.featured_header .old_price {
|
119 |
+
color: rgba(180, 180, 180, 0.3);
|
120 |
+
text-decoration: line-through;
|
121 |
+
font-family: Oswald;
|
122 |
+
}
|
123 |
+
|
124 |
+
.featured_header h1.get_plugins {
|
125 |
+
color: #FFFFFF;
|
126 |
+
background: url("images/featured_plugins_bg.png") no-repeat;
|
127 |
+
height: 85px;
|
128 |
+
margin: 0;
|
129 |
+
background-size: 95% 100%;
|
130 |
+
background-position: center;
|
131 |
+
line-height: 60px;
|
132 |
+
}
|
133 |
+
|
134 |
+
.featured_header h1 {
|
135 |
+
font-size: 45px;
|
136 |
+
text-align: center;
|
137 |
+
color: #F47629;
|
138 |
+
letter-spacing: 3px;
|
139 |
+
line-height: 10px;
|
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;
|
149 |
+
line-height: 0;
|
150 |
+
}
|
151 |
+
}
|
152 |
+
|
153 |
+
@media screen and (max-width: 835px) {
|
154 |
+
.get_plugins span {
|
155 |
+
display: none;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
@media screen and (max-width: 435px) {
|
160 |
+
.featured_header h1 {
|
161 |
+
font-size: 20px;
|
162 |
+
line-height: 17px;
|
163 |
+
}
|
164 |
}
|
featured/featured_themes.php
CHANGED
@@ -2,127 +2,134 @@
|
|
2 |
function fm_featured_themes_page() { ?>
|
3 |
<div id="main_featured_themes_page">
|
4 |
<table align="center" width="90%" style="margin-top: 0px;border-bottom: rgb(111, 111, 111) solid 1px;">
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
<form method="post">
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
</div >
|
127 |
<?php }
|
128 |
?>
|
2 |
function fm_featured_themes_page() { ?>
|
3 |
<div id="main_featured_themes_page">
|
4 |
<table align="center" width="90%" style="margin-top: 0px;border-bottom: rgb(111, 111, 111) solid 1px;">
|
5 |
+
<tr>
|
6 |
+
<td colspan="2" style="height: 40px; padding: 30px 0px 0px 0px;">
|
7 |
+
<h3 style="margin: 0px;font-family:Segoe UI;padding-bottom: 15px;color: rgb(111, 111, 111); font-size:18pt;">Featured Themes</h3>
|
8 |
+
</td>
|
9 |
+
<td align="right" style="font-size:16px;"></td>
|
10 |
+
</tr>
|
11 |
+
</table>
|
12 |
+
<div class="featured_header">
|
13 |
+
<div>
|
14 |
+
<a href="https://web-dorado.com/wordpress-themes.html?source=formmaker" target="_blank">
|
15 |
+
<h1>WORDPRESS THEMES</h1>
|
16 |
+
<h1 class="get_plugins">ALL FOR $40 ONLY <span>- SAVE 80%</span></h1>
|
17 |
+
</a>
|
18 |
+
</div>
|
19 |
<form method="post">
|
20 |
+
<ul id="featured-plugins-list">
|
21 |
+
<li class="portfolio">
|
22 |
+
<div class="product"></div>
|
23 |
+
<div class="title">
|
24 |
+
<strong class="heading">Portfolio Gallery Theme</strong>
|
25 |
+
</div>
|
26 |
+
<div class="description">
|
27 |
+
<p>Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.</p>
|
28 |
+
</div>
|
29 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/portfolio-gallery.html" class="download">Download theme ►</a>
|
30 |
+
</li>
|
31 |
+
<li class="business_elite">
|
32 |
+
<div class="product"></div>
|
33 |
+
<div class="title">
|
34 |
+
<strong class="heading">Business Elite Theme</strong>
|
35 |
+
</div>
|
36 |
+
<div class="description">
|
37 |
+
<p>Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.</p>
|
38 |
+
</div>
|
39 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-elite.html" class="download">Download theme ►</a>
|
40 |
+
</li>
|
41 |
+
<li class="sauron">
|
42 |
+
<div class="product"></div>
|
43 |
+
<div class="title">
|
44 |
+
<strong class="heading">Sauron Theme</strong>
|
45 |
+
</div>
|
46 |
+
<div class="description">
|
47 |
+
<p>Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.</p>
|
48 |
+
</div>
|
49 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/sauron.html" class="download">Download plugin ►</a>
|
50 |
+
</li>
|
51 |
+
<li class="mottomag">
|
52 |
+
<div class="product"></div>
|
53 |
+
<div class="title">
|
54 |
+
<strong class="heading">MottoMag Theme</strong>
|
55 |
+
</div>
|
56 |
+
<div class="description">
|
57 |
+
<p>MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.</p>
|
58 |
+
</div>
|
59 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/mottomag.html" class="download">Download plugin ►</a>
|
60 |
+
</li>
|
61 |
+
<li class="business_world">
|
62 |
+
<div class="product"></div>
|
63 |
+
<div class="title">
|
64 |
+
<strong class="heading">Business World Theme</strong>
|
65 |
+
</div>
|
66 |
+
<div class="description">
|
67 |
+
<p>Business World is an innovative WordPress theme great for Business websites.</p>
|
68 |
+
</div>
|
69 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-world.html" class="download">Download plugin ►</a>
|
70 |
+
</li>
|
71 |
+
<li class="best_magazine">
|
72 |
+
<div class="product"></div>
|
73 |
+
<div class="title">
|
74 |
+
<strong class="heading">Best Magazine Theme</strong>
|
75 |
+
</div>
|
76 |
+
<div class="description">
|
77 |
+
<p>Best Magazine is an ultimate selection when you are dealing with multi-category news websites.</p>
|
78 |
+
</div>
|
79 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/best-magazine.html" class="download">Download plugin ►</a>
|
80 |
+
</li>
|
81 |
+
<li class="wedding_style">
|
82 |
+
<div class="product"></div>
|
83 |
+
<div class="title">
|
84 |
+
<strong class="heading">Wedding Style Theme</strong>
|
85 |
+
</div>
|
86 |
+
<div class="description">
|
87 |
+
<p>Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.</p>
|
88 |
+
</div>
|
89 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding-style.html" class="download">Download plugin ►</a>
|
90 |
+
</li>
|
91 |
+
<li class="magazine">
|
92 |
+
<div class="product"></div>
|
93 |
+
<div class="title">
|
94 |
+
<strong class="heading">Magazine Theme</strong>
|
95 |
+
</div>
|
96 |
+
<div class="description">
|
97 |
+
<p>Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.</p>
|
98 |
+
</div>
|
99 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/news-magazine.html" class="download">Download plugin ►</a>
|
100 |
+
</li>
|
101 |
+
<li class="weddings">
|
102 |
+
<div class="product"></div>
|
103 |
+
<div class="title">
|
104 |
+
<strong class="heading">Weddings Theme</strong>
|
105 |
+
</div>
|
106 |
+
<div class="description">
|
107 |
+
<p>Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.</p>
|
108 |
+
</div>
|
109 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding.html" class="download">Download plugin ►</a>
|
110 |
+
</li>
|
111 |
+
<li class="exclusive">
|
112 |
+
<div class="product"></div>
|
113 |
+
<div class="title">
|
114 |
+
<strong class="heading">Exclusive Theme</strong>
|
115 |
+
</div>
|
116 |
+
<div class="description">
|
117 |
+
<p>Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.</p>
|
118 |
+
</div>
|
119 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/exclusive.html" class="download">Download plugin ►</a>
|
120 |
+
</li>
|
121 |
+
<li class="expert">
|
122 |
+
<div class="product"></div>
|
123 |
+
<div class="title">
|
124 |
+
<strong class="heading">Expert Theme</strong>
|
125 |
+
</div>
|
126 |
+
<div class="description">
|
127 |
+
<p>WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.</p>
|
128 |
+
</div>
|
129 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes/business-responsive.html" class="download">Download plugin ►</a>
|
130 |
+
</li>
|
131 |
+
</ul>
|
132 |
+
</form>
|
133 |
</div >
|
134 |
<?php }
|
135 |
?>
|
featured/images/events-wd.png
ADDED
Binary file
|
featured/images/featured_plugins_bg.png
ADDED
Binary file
|
featured/images/instagram_feed.png
ADDED
Binary file
|
featured/images/portfolio.png
ADDED
Binary file
|
featured/images/portfolio_gallery.png
DELETED
Binary file
|
featured/style.css
CHANGED
@@ -1,102 +1,188 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#main_featured_plugins_page #featured-plugins-list {
|
2 |
position:relative;
|
3 |
margin:0px auto;
|
4 |
-
width: 95.4%;
|
5 |
height:auto;
|
6 |
display:table;
|
7 |
list-style:none;
|
8 |
-
|
|
|
9 |
}
|
10 |
|
11 |
#main_featured_plugins_page #featured-plugins-list li {
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
}
|
19 |
|
20 |
-
#main_featured_plugins_page #featured-plugins-list li
|
21 |
position:relative;
|
22 |
height:113px;
|
23 |
-
background-color:
|
24 |
background-position-x: 50% !important;
|
25 |
margin: 7px;
|
26 |
-
border: 1px solid #DEDCDC;
|
27 |
border-radius: 3px;
|
|
|
28 |
}
|
29 |
|
30 |
-
#main_featured_plugins_page #featured-plugins-list li
|
31 |
width: 90%;
|
32 |
text-align: center;
|
33 |
-
border-bottom: 1px solid #cacaca;
|
34 |
margin: 0 auto;
|
35 |
}
|
36 |
|
37 |
-
#main_featured_plugins_page #featured-plugins-list li.form-maker .product {background:url(images/form.png)
|
38 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
39 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
40 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
41 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
42 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
43 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
44 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
45 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
46 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
47 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
48 |
-
|
49 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
50 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
51 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
52 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
53 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
54 |
-
|
55 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
56 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
border-top-left-radius: 5px;
|
66 |
-
border-bottom-left-radius: 5px;}
|
67 |
-
|
68 |
-
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
69 |
-
display:block;
|
70 |
-
position:relative;
|
71 |
-
font-size: 17px;
|
72 |
-
color: #23282C;
|
73 |
-
margin: 13px 0px 13px 0px;
|
74 |
}
|
75 |
|
76 |
-
#main_featured_plugins_page #featured-plugins-list li
|
77 |
font-size:14px;
|
78 |
color:#444;
|
79 |
margin-left:20px;
|
80 |
}
|
81 |
|
82 |
-
#main_featured_plugins_page #featured-plugins-list li
|
83 |
height: 127px;
|
84 |
width: 90%;
|
85 |
margin: 0 auto;
|
86 |
}
|
87 |
|
88 |
-
#main_featured_plugins_page #featured-plugins-list li
|
89 |
text-align: center;
|
90 |
width: 100%;
|
|
|
|
|
91 |
}
|
92 |
|
93 |
#featured-plugins-list li a.download {
|
94 |
-
display:block;
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
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: 18px;
|
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 |
|
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.faq .product {background:url("images/faq.png") center center no-repeat;}
|
61 |
+
#main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background:url("images/flash.calendar.png") center center no-repeat;}
|
62 |
+
#main_featured_plugins_page #featured-plugins-list li.player .product {background:url("images/player.png") center center no-repeat; }
|
63 |
+
#main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background:url("images/spider.calendar.png") center center no-repeat;}
|
64 |
+
#main_featured_plugins_page #featured-plugins-list li.contact_form_bulder .product {background:url("images/contact.builder.png") center center no-repeat;}
|
65 |
+
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url("images/random.post.png") center center no-repeat;}
|
66 |
+
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url("images/slider.png") center center no-repeat;}
|
67 |
+
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url("images/folder.menu.png") center center no-repeat;}
|
68 |
+
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url("images/zoom.png") center center no-repeat;}
|
69 |
+
#main_featured_plugins_page #featured-plugins-list li.fm-import .product {background:url("images/fm-import.png") center center no-repeat;}
|
70 |
+
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url("images/photo-gallery.png") center center no-repeat;}
|
71 |
+
#main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background:url("images/twittertools.png") center center no-repeat;}
|
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;
|
78 |
+
position: relative;
|
79 |
+
font-size: 17px;
|
80 |
+
color: #767676;
|
81 |
+
margin: 13px 0px 13px 0px;
|
82 |
+
text-transform: uppercase;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
|
85 |
+
#main_featured_plugins_page #featured-plugins-list li .title p {
|
86 |
font-size:14px;
|
87 |
color:#444;
|
88 |
margin-left:20px;
|
89 |
}
|
90 |
|
91 |
+
#main_featured_plugins_page #featured-plugins-list li .description {
|
92 |
height: 127px;
|
93 |
width: 90%;
|
94 |
margin: 0 auto;
|
95 |
}
|
96 |
|
97 |
+
#main_featured_plugins_page #featured-plugins-list li .description p {
|
98 |
text-align: center;
|
99 |
width: 100%;
|
100 |
+
color: #9A9A9A;
|
101 |
+
font-family: Segoe UI Light;
|
102 |
}
|
103 |
|
104 |
#featured-plugins-list li a.download {
|
105 |
+
display: block;
|
106 |
+
border-top: 1px solid #CACACA;
|
107 |
+
outline: none;
|
108 |
+
width: 90%;
|
109 |
+
margin: 0 auto;
|
110 |
+
font-size: 14px;
|
111 |
+
line-height: 40px;
|
112 |
+
text-decoration: none;
|
113 |
+
font-weight: bolder;
|
114 |
+
text-align: center;
|
115 |
+
color: #134D68;
|
116 |
+
position: absolute;
|
117 |
+
text-transform: uppercase;
|
118 |
+
bottom: 0;
|
119 |
+
left: 10px;
|
120 |
+
font-family: Segoe UI Black;
|
121 |
+
text-shadow: 1px 0;
|
122 |
+
}
|
123 |
+
|
124 |
+
#featured-plugins-list li a.download:hover {
|
125 |
+
color: #F47629;
|
126 |
+
}
|
127 |
+
|
128 |
+
.featured_header{
|
129 |
+
background: #FFFFFF;
|
130 |
+
border-right: 3px solid #E5E5E5;
|
131 |
+
border-bottom: 3px solid #E5E5E5;
|
132 |
+
position: relative;
|
133 |
+
padding: 20px 0;
|
134 |
+
}
|
135 |
+
|
136 |
+
.featured_header .old_price {
|
137 |
+
color: rgba(180, 180, 180, 0.3);
|
138 |
+
text-decoration: line-through;
|
139 |
+
font-family: Oswald;
|
140 |
+
}
|
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: #F47629;
|
156 |
+
letter-spacing: 3px;
|
157 |
+
text-transform: uppercase;
|
158 |
+
}
|
159 |
+
|
160 |
+
.featured_header a {
|
161 |
+
text-decoration: none;
|
162 |
+
}
|
163 |
+
|
164 |
+
@media screen and (max-width: 1105px) {
|
165 |
+
.featured_header h1 {
|
166 |
+
font-size: 37px;
|
167 |
+
line-height: 0;
|
168 |
+
}
|
169 |
+
}
|
170 |
+
|
171 |
+
@media screen and (max-width: 835px) {
|
172 |
+
.get_plugins span {
|
173 |
+
display: none;
|
174 |
+
}
|
175 |
+
}
|
176 |
+
|
177 |
+
@media screen and (max-width: 700px) {
|
178 |
+
.featured_header h1 {
|
179 |
+
line-height: 40px;
|
180 |
+
}
|
181 |
+
}
|
182 |
+
|
183 |
+
@media screen and (max-width: 435px) {
|
184 |
+
.featured_header h1 {
|
185 |
+
font-size: 20px;
|
186 |
+
line-height: 25px;
|
187 |
+
}
|
188 |
}
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
-
* Version: 1.8.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -271,7 +271,7 @@ function register_fmemailverification_cpt(){
|
|
271 |
// Activate plugin.
|
272 |
function form_maker_activate() {
|
273 |
$version = get_option("wd_form_maker_version");
|
274 |
-
$new_version = '1.8.
|
275 |
global $wpdb;
|
276 |
if (!$version) {
|
277 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
+
* Version: 1.8.25
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
271 |
// Activate plugin.
|
272 |
function form_maker_activate() {
|
273 |
$version = get_option("wd_form_maker_version");
|
274 |
+
$new_version = '1.8.25';
|
275 |
global $wpdb;
|
276 |
if (!$version) {
|
277 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
js/form_maker_manage.js
CHANGED
@@ -686,6 +686,15 @@ function change_choices(value, ids, types, params) {
|
|
686 |
w_choices = w_size[1].split('*:*w_choices*:*');
|
687 |
w_choices_array = w_choices[0].split('***');
|
688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
var choise_select = document.createElement('select');
|
690 |
choise_select.setAttribute("id", "field_value"+global_index+'_'+index);
|
691 |
choise_select.style.cssText = "vertical-align: top; width:200px;";
|
@@ -697,7 +706,7 @@ function change_choices(value, ids, types, params) {
|
|
697 |
for(k=0; k<w_choices_array.length; k++) {
|
698 |
var choise_option = document.createElement('option');
|
699 |
choise_option.setAttribute("id", "choise_"+global_index+'_'+k);
|
700 |
-
choise_option.setAttribute("value",
|
701 |
choise_option.innerHTML = w_choices_array[k];
|
702 |
if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
|
703 |
choise_select.appendChild(choise_option);
|
@@ -899,6 +908,15 @@ function add_condition_fields(num, ids1, labels1, types1, params1) {
|
|
899 |
w_choices = w_size[1].split('*:*w_choices*:*');
|
900 |
w_choices_array = w_choices[0].split('***');
|
901 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
var choise_select = document.createElement('select');
|
903 |
choise_select.setAttribute("id", "field_value"+num+'_'+m);
|
904 |
choise_select.style.cssText = "vertical-align: top; width:200px;";
|
@@ -910,7 +928,7 @@ function add_condition_fields(num, ids1, labels1, types1, params1) {
|
|
910 |
for(k=0; k<w_choices_array.length; k++) {
|
911 |
var choise_option = document.createElement('option');
|
912 |
choise_option.setAttribute("id", "choise_"+num+'_'+k);
|
913 |
-
choise_option.setAttribute("value",
|
914 |
choise_option.innerHTML = w_choices_array[k];
|
915 |
|
916 |
if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
|
686 |
w_choices = w_size[1].split('*:*w_choices*:*');
|
687 |
w_choices_array = w_choices[0].split('***');
|
688 |
|
689 |
+
if(w_size[1].indexOf('*:*w_value_disabled*:*') !== -1){
|
690 |
+
w_value_disabled = w_size[1].split('*:*w_value_disabled*:*');
|
691 |
+
w_choices_value = w_value_disabled[1].split('*:*w_choices_value*:*');
|
692 |
+
w_choices_value_array = w_choices_value[0].split('***');
|
693 |
+
}
|
694 |
+
else{
|
695 |
+
w_choices_value_array = w_choices_array;
|
696 |
+
}
|
697 |
+
|
698 |
var choise_select = document.createElement('select');
|
699 |
choise_select.setAttribute("id", "field_value"+global_index+'_'+index);
|
700 |
choise_select.style.cssText = "vertical-align: top; width:200px;";
|
706 |
for(k=0; k<w_choices_array.length; k++) {
|
707 |
var choise_option = document.createElement('option');
|
708 |
choise_option.setAttribute("id", "choise_"+global_index+'_'+k);
|
709 |
+
choise_option.setAttribute("value", w_choices_value_array[k]);
|
710 |
choise_option.innerHTML = w_choices_array[k];
|
711 |
if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
|
712 |
choise_select.appendChild(choise_option);
|
908 |
w_choices = w_size[1].split('*:*w_choices*:*');
|
909 |
w_choices_array = w_choices[0].split('***');
|
910 |
|
911 |
+
if(w_size[1].indexOf('*:*w_value_disabled*:*') !== -1){
|
912 |
+
w_value_disabled = w_size[1].split('*:*w_value_disabled*:*');
|
913 |
+
w_choices_value = w_value_disabled[1].split('*:*w_choices_value*:*');
|
914 |
+
w_choices_value_array = w_choices_value[0].split('***');
|
915 |
+
}
|
916 |
+
else{
|
917 |
+
w_choices_value_array = w_choices_array;
|
918 |
+
}
|
919 |
+
|
920 |
var choise_select = document.createElement('select');
|
921 |
choise_select.setAttribute("id", "field_value"+num+'_'+m);
|
922 |
choise_select.style.cssText = "vertical-align: top; width:200px;";
|
928 |
for(k=0; k<w_choices_array.length; k++) {
|
929 |
var choise_option = document.createElement('option');
|
930 |
choise_option.setAttribute("id", "choise_"+num+'_'+k);
|
931 |
+
choise_option.setAttribute("value", w_choices_value_array[k]);
|
932 |
choise_option.innerHTML = w_choices_array[k];
|
933 |
|
934 |
if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
|
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, 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, pdf, mysql
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -302,6 +302,10 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
302 |
|
303 |
== Changelog ==
|
304 |
|
|
|
|
|
|
|
|
|
305 |
= 1.8.24 =
|
306 |
Added: File upload as a link in email
|
307 |
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, 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, pdf, mysql
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.8.25
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
302 |
|
303 |
== Changelog ==
|
304 |
|
305 |
+
= 1.8.25 =
|
306 |
+
Fixed: Bug in conditional fields.
|
307 |
+
Changed: Featured Plugins, Featured Themes pages design.
|
308 |
+
|
309 |
= 1.8.24 =
|
310 |
Added: File upload as a link in email
|
311 |
|