Version Description
- Changed: Featured plugins page
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.8.34 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.33 to 1.8.34
- contact-form-maker.php +3 -3
- featured/featured.php +315 -330
- featured/images/catalog.png +0 -0
- featured/images/contact.builder.png +0 -0
- featured/images/contact.maker.png +0 -0
- featured/images/contacts.png +0 -0
- featured/images/ecommerce.png +0 -0
- featured/images/events-wd.png +0 -0
- featured/images/events_wd.png +0 -0
- featured/images/facebook-feed.png +0 -0
- featured/images/facebook.png +0 -0
- featured/images/faq.png +0 -0
- featured/images/faq_wd.png +0 -0
- featured/images/flash.calendar.png +0 -0
- featured/images/folder.menu.png +0 -0
- featured/images/form.png +0 -0
- featured/images/google-maps.png +0 -0
- featured/images/instagram_feed.png +0 -0
- featured/images/photo-gallery.png +0 -0
- featured/images/player.png +0 -0
- featured/images/post-slider.png +0 -0
- featured/images/random.post.png +0 -0
- featured/images/slider.png +0 -0
- featured/images/spider.calendar.png +0 -0
- featured/images/spider.calendar33.png +0 -0
- featured/images/twittertools.png +0 -0
- featured/images/zoom.png +0 -0
- featured/style.css +207 -101
- readme.txt +27 -2
contact-form-maker.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
-
* Version: 1.8.
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -81,7 +81,7 @@ function fmc_featured() {
|
|
| 81 |
require_once(WD_FMC_DIR . '/featured/featured.php');
|
| 82 |
wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
|
| 83 |
wp_print_styles('fmc_featured');
|
| 84 |
-
fmc_featured_page('contact-
|
| 85 |
}
|
| 86 |
|
| 87 |
function fmc_featured_themes() {
|
|
@@ -248,7 +248,7 @@ function register_fmcemailverification_cpt(){
|
|
| 248 |
// Activate plugin.
|
| 249 |
function form_maker_activate_cfm() {
|
| 250 |
$version = get_option("wd_form_maker_version");
|
| 251 |
-
$new_version = '1.8.
|
| 252 |
global $wpdb;
|
| 253 |
if (!$version) {
|
| 254 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
+
* Version: 1.8.34
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 81 |
require_once(WD_FMC_DIR . '/featured/featured.php');
|
| 82 |
wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
|
| 83 |
wp_print_styles('fmc_featured');
|
| 84 |
+
fmc_featured_page('contact-maker');
|
| 85 |
}
|
| 86 |
|
| 87 |
function fmc_featured_themes() {
|
| 248 |
// Activate plugin.
|
| 249 |
function form_maker_activate_cfm() {
|
| 250 |
$version = get_option("wd_form_maker_version");
|
| 251 |
+
$new_version = '1.8.34';
|
| 252 |
global $wpdb;
|
| 253 |
if (!$version) {
|
| 254 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
featured/featured.php
CHANGED
|
@@ -1,331 +1,316 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
function fmc_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 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
</
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
'
|
| 199 |
-
'
|
| 200 |
-
'
|
| 201 |
-
'
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
'
|
| 206 |
-
'
|
| 207 |
-
'
|
| 208 |
-
'
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
'
|
| 213 |
-
'
|
| 214 |
-
'
|
| 215 |
-
'
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
'
|
| 234 |
-
'
|
| 235 |
-
'
|
| 236 |
-
'
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
'
|
| 241 |
-
'
|
| 242 |
-
'
|
| 243 |
-
'
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
|
| 261 |
-
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
)
|
| 267 |
-
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
?>
|
| 273 |
-
<
|
| 274 |
-
<
|
| 275 |
-
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
|
| 280 |
-
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
|
| 287 |
-
|
| 288 |
-
|
| 289 |
-
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
|
| 296 |
-
|
| 297 |
-
|
| 298 |
-
|
| 299 |
-
|
| 300 |
-
|
| 301 |
-
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
<?php } ?>
|
| 317 |
-
</div>
|
| 318 |
-
<?php
|
| 319 |
-
}
|
| 320 |
-
}
|
| 321 |
-
}
|
| 322 |
-
?>
|
| 323 |
-
|
| 324 |
-
</div>
|
| 325 |
-
<!-- #fm-settings-content -->
|
| 326 |
-
</div>
|
| 327 |
-
<!-- #fm-settings -->
|
| 328 |
-
</div><!-- .wrap -->
|
| 329 |
-
|
| 330 |
-
<?php
|
| 331 |
}
|
| 1 |
+
<?php
|
| 2 |
+
function fmc_featured_page($current_plugin = '') {
|
| 3 |
+
$plugins = array(
|
| 4 |
+
"ecommerce-wd" => array(
|
| 5 |
+
'title' => 'Ecommerce',
|
| 6 |
+
'text' => 'Wordpress ecommerce plugin',
|
| 7 |
+
'content' => 'Ecommerce WD is a highly-functional, user friendly WordPress Ecommerce plugin, which is perfect for developing online stores for any level of complexity.',
|
| 8 |
+
'href' => 'https://web-dorado.com/products/wordpress-ecommerce.html'
|
| 9 |
+
),
|
| 10 |
+
"form-maker" => array(
|
| 11 |
+
'title' => 'Form Maker',
|
| 12 |
+
'text' => 'Wordpress form builder plugin',
|
| 13 |
+
'content' => 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.',
|
| 14 |
+
'href' => 'https://web-dorado.com/products/wordpress-form.html'
|
| 15 |
+
),
|
| 16 |
+
"photo-gallery" => array(
|
| 17 |
+
'title' => 'Photo Gallery',
|
| 18 |
+
'text' => 'WordPress Photo Gallery plugin',
|
| 19 |
+
'content' => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.',
|
| 20 |
+
'href' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
|
| 21 |
+
),
|
| 22 |
+
"contact_form_bulder" => array(
|
| 23 |
+
'title' => 'Contact Form Builder',
|
| 24 |
+
'text' => 'WordPress contact form builder plugin',
|
| 25 |
+
'content' => 'Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors.',
|
| 26 |
+
'href' => 'https://web-dorado.com/products/wordpress-contact-form-builder.html'
|
| 27 |
+
),
|
| 28 |
+
"slider_wd" => array(
|
| 29 |
+
'title' => 'Slider WD',
|
| 30 |
+
'text' => 'WordPress slider plugin',
|
| 31 |
+
'content' => 'Create responsive, highly configurable sliders with various effects for your WordPress site.',
|
| 32 |
+
'href' => 'https://web-dorado.com/products/wordpress-slider-plugin.html'
|
| 33 |
+
),
|
| 34 |
+
"events-wd" => array(
|
| 35 |
+
'title' => 'Event Calendar WD',
|
| 36 |
+
'text' => 'WordPress calendar plugin',
|
| 37 |
+
'content' => 'Organize and publish your events in an easy and elegant way using Event Calendar WD.',
|
| 38 |
+
'href' => 'https://web-dorado.com/products/wordpress-event-calendar-wd.html'
|
| 39 |
+
),
|
| 40 |
+
"contact-maker" => array(
|
| 41 |
+
'title' => 'Contact Form Maker',
|
| 42 |
+
'text' => 'WordPress contact form maker plugin',
|
| 43 |
+
'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
|
| 44 |
+
'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
|
| 45 |
+
),
|
| 46 |
+
"spider-calendar" => array(
|
| 47 |
+
'title' => 'Spider Calendar',
|
| 48 |
+
'text' => 'WordPress event calendar plugin',
|
| 49 |
+
'content' => 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.',
|
| 50 |
+
'href' => 'https://web-dorado.com/products/wordpress-calendar.html'
|
| 51 |
+
),
|
| 52 |
+
"catalog" => array(
|
| 53 |
+
'title' => 'Spider Catalog',
|
| 54 |
+
'text' => 'WordPress product catalog plugin',
|
| 55 |
+
'content' => 'Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.',
|
| 56 |
+
'href' => 'https://web-dorado.com/products/wordpress-catalog.html'
|
| 57 |
+
),
|
| 58 |
+
"player" => array(
|
| 59 |
+
'title' => 'Video Player',
|
| 60 |
+
'text' => 'WordPress Video player plugin',
|
| 61 |
+
'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.',
|
| 62 |
+
'href' => 'https://web-dorado.com/products/wordpress-player.html'
|
| 63 |
+
),
|
| 64 |
+
"contacts" => array(
|
| 65 |
+
'title' => 'Spider Contacts',
|
| 66 |
+
'text' => 'Wordpress staff list plugin',
|
| 67 |
+
'content' => 'Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.',
|
| 68 |
+
'href' => 'https://web-dorado.com/products/wordpress-contacts-plugin.html'
|
| 69 |
+
),
|
| 70 |
+
"facebook" => array(
|
| 71 |
+
'title' => 'Spider Facebook',
|
| 72 |
+
'text' => 'WordPress Facebook plugin',
|
| 73 |
+
'content' => 'Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets.',
|
| 74 |
+
'href' => 'https://web-dorado.com/products/wordpress-facebook.html'
|
| 75 |
+
),
|
| 76 |
+
"facebook-feed" => array(
|
| 77 |
+
'title' => 'Facebook Feed',
|
| 78 |
+
'text' => 'WordPress Facebook Feed plugin',
|
| 79 |
+
'content' => 'Facebook Feed WD is a plugin, which allows embedding Facebook group, page and profile feeds into your website.',
|
| 80 |
+
'href' => 'https://web-dorado.com/products/wordpress-facebook-feed-plugin.html'
|
| 81 |
+
),
|
| 82 |
+
"twitter-widget" => array(
|
| 83 |
+
'title' => 'Widget Twitter',
|
| 84 |
+
'text' => 'WordPress Widget Twitter plugin',
|
| 85 |
+
'content' => 'The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.',
|
| 86 |
+
'href' => 'https://web-dorado.com/products/wordpress-twitter-integration-plugin.html'
|
| 87 |
+
),
|
| 88 |
+
"faq" => array(
|
| 89 |
+
'title' => 'Spider FAQ',
|
| 90 |
+
'text' => 'WordPress FAQ Plugin',
|
| 91 |
+
'content' => 'The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.',
|
| 92 |
+
'href' => 'https://web-dorado.com/products/wordpress-faq-plugin.html'
|
| 93 |
+
),
|
| 94 |
+
"zoom" => array(
|
| 95 |
+
'title' => 'Zoom',
|
| 96 |
+
'text' => 'WordPress text zoom plugin',
|
| 97 |
+
'content' => 'Zoom enables site users to resize the predefined areas of the web site.',
|
| 98 |
+
'href' => 'https://web-dorado.com/products/wordpress-zoom.html'
|
| 99 |
+
),
|
| 100 |
+
"flash-calendar" => array(
|
| 101 |
+
'title' => 'Flash Calendar',
|
| 102 |
+
'text' => 'WordPress flash calendar plugin',
|
| 103 |
+
'content' => 'Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.',
|
| 104 |
+
'href' => 'https://web-dorado.com/products/wordpress-events-calendar.html'
|
| 105 |
+
),
|
| 106 |
+
"folder_menu" => array(
|
| 107 |
+
'title' => 'Folder Menu',
|
| 108 |
+
'text' => 'WordPress folder menu plugin',
|
| 109 |
+
'content' => 'Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences.',
|
| 110 |
+
'href' => 'https://web-dorado.com/products/wordpress-random-post.html'
|
| 111 |
+
),
|
| 112 |
+
"random_post" => array(
|
| 113 |
+
'title' => 'Random post',
|
| 114 |
+
'text' => 'WordPress random post plugin',
|
| 115 |
+
'content' => 'Spider Random Post is a small but very smart solution for your WordPress web site.',
|
| 116 |
+
'href' => 'https://web-dorado.com/products/wordpress-random-post.html'
|
| 117 |
+
),
|
| 118 |
+
"faq_wd" => array(
|
| 119 |
+
'title' => 'FAQ WD',
|
| 120 |
+
'text' => 'WordPress FAQ plugin',
|
| 121 |
+
'content' => 'Organize and publish your FAQs in an easy and elegant way using FAQ WD.',
|
| 122 |
+
'href' => 'https://web-dorado.com/products/wordpress-faq-wd.html'
|
| 123 |
+
),
|
| 124 |
+
"instagram_feed" => array(
|
| 125 |
+
'title' => 'Instagram Feed WD',
|
| 126 |
+
'text' => 'WordPress Instagram Feed plugin',
|
| 127 |
+
'content' => 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.',
|
| 128 |
+
'href' => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
|
| 129 |
+
),
|
| 130 |
+
"post-slider" => array(
|
| 131 |
+
'title' => 'Post Slider',
|
| 132 |
+
'text' => 'WordPress Post Slider plugin',
|
| 133 |
+
'content' => 'Post Slider WD is designed to show off the selected posts of your website in a slider.',
|
| 134 |
+
'href' => 'https://web-dorado.com/products/wordpress-post-slider-plugin.html'
|
| 135 |
+
),
|
| 136 |
+
"google-maps" => array(
|
| 137 |
+
'title' => 'Google Map',
|
| 138 |
+
'text' => 'WordPress Google Maps Plugin',
|
| 139 |
+
'content' => 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.',
|
| 140 |
+
'href' => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
|
| 141 |
+
),
|
| 142 |
+
);
|
| 143 |
+
?>
|
| 144 |
+
<div id="main_featured_plugins_page">
|
| 145 |
+
<h3>Featured Plugins</h3>
|
| 146 |
+
<div class="featured_header">
|
| 147 |
+
<a href="https://web-dorado.com/wordpress-plugins.html?source=contactformmaker" target="_blank">
|
| 148 |
+
<h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +22 PLUGINS</h1>
|
| 149 |
+
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
| 150 |
+
<div class="try-now">
|
| 151 |
+
<span>TRY NOW</span>
|
| 152 |
+
</div>
|
| 153 |
+
</a>
|
| 154 |
+
</div>
|
| 155 |
+
<ul id="featured-plugins-list">
|
| 156 |
+
<?php
|
| 157 |
+
foreach ($plugins as $key => $plugins) {
|
| 158 |
+
if ($current_plugin != $key) {
|
| 159 |
+
?>
|
| 160 |
+
<li class="<?php echo $key; ?>">
|
| 161 |
+
<div class="product"></div>
|
| 162 |
+
<div class="title">
|
| 163 |
+
<strong class="heading"><?php echo $plugins['title']; ?></strong>
|
| 164 |
+
</div>
|
| 165 |
+
<div class="description">
|
| 166 |
+
<p><?php echo $plugins['content']; ?></p>
|
| 167 |
+
</div>
|
| 168 |
+
<a target="_blank" href="<?php echo $plugins['href']; ?>?source=contactformmaker" class="download">Download Plugin ►</a>
|
| 169 |
+
</li>
|
| 170 |
+
<?php
|
| 171 |
+
}
|
| 172 |
+
}
|
| 173 |
+
?>
|
| 174 |
+
</ul>
|
| 175 |
+
</div>
|
| 176 |
+
<?php
|
| 177 |
+
}
|
| 178 |
+
function fmc_extensions_page($current_plugin = '') {
|
| 179 |
+
|
| 180 |
+
$addons = array(
|
| 181 |
+
'Form Maker Add-ons' => array(
|
| 182 |
+
'imp_exp' => array(
|
| 183 |
+
'name' => 'Import/Export',
|
| 184 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/export-import.html',
|
| 185 |
+
'description' => 'Form Maker Export/Import WordPress plugin allows exporting and importing forms with/without submissions.',
|
| 186 |
+
'icon' => '',
|
| 187 |
+
'image' => plugins_url( '../assets/import_export.png', __FILE__ ),
|
| 188 |
+
),
|
| 189 |
+
'mailchimp' => array(
|
| 190 |
+
'name' => 'MailChimp',
|
| 191 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html',
|
| 192 |
+
'description' => 'This add-on is an integration of the Form Maker with MailChimp which allows to add contacts to your subscription lists just from submitted forms.',
|
| 193 |
+
'icon' => '',
|
| 194 |
+
'image' => plugins_url( '../assets/mailchimp.png', __FILE__ ),
|
| 195 |
+
),
|
| 196 |
+
'reg' => array(
|
| 197 |
+
'name' => 'Registration',
|
| 198 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/registration.html',
|
| 199 |
+
'description' => 'User Registration add-on integrates with Form maker forms allowing users to create accounts at your website.',
|
| 200 |
+
'icon' => '',
|
| 201 |
+
'image' => plugins_url( '../assets/reg.png', __FILE__ ),
|
| 202 |
+
),
|
| 203 |
+
'post_generation' => array(
|
| 204 |
+
'name' => 'Post Generation',
|
| 205 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html',
|
| 206 |
+
'description' => 'Post Generation add-on allows WD_FMC_URL a post, page or custom post based on the submitted data.',
|
| 207 |
+
'icon' => '',
|
| 208 |
+
'image' => plugins_url( '../assets/post-generation-update.png', __FILE__ ),
|
| 209 |
+
),
|
| 210 |
+
'conditional_emails' => array(
|
| 211 |
+
'name' => 'Conditional Emails',
|
| 212 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html',
|
| 213 |
+
'description' => 'Conditional Emails add-on allows to send emails to different recipients depending on the submitted data .',
|
| 214 |
+
'icon' => '',
|
| 215 |
+
'image' => plugins_url( '../assets/conditional-emails-update.png', __FILE__ ),
|
| 216 |
+
),
|
| 217 |
+
'dropbox_integration' => array(
|
| 218 |
+
'name' => 'Dropbox Integration',
|
| 219 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html',
|
| 220 |
+
'description' => 'The Form Maker Dropbox Integration addon is extending the Form Maker capabilities allowing to store the form attachments straight to your Dropbox account.',
|
| 221 |
+
'icon' => '',
|
| 222 |
+
'image' => plugins_url( '../assets/dropbox-integration-update.png', __FILE__ ),
|
| 223 |
+
),
|
| 224 |
+
'gdrive_integration' => array(
|
| 225 |
+
'name' => 'Google Drive Integration',
|
| 226 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html',
|
| 227 |
+
'description' => 'The Google Drive Integration add-on integrates Form Maker with Google Drive and allows you to send the file uploads to the Google Drive',
|
| 228 |
+
'icon' => '',
|
| 229 |
+
'image' => plugins_url( '../assets/google_drive_integration.png', __FILE__ ),
|
| 230 |
+
),
|
| 231 |
+
'pdf_integration' => array(
|
| 232 |
+
'name' => 'PDF Integration',
|
| 233 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/pdf.html',
|
| 234 |
+
'description' => 'The Form Maker PDF Integration add-on allows sending submitted forms in PDF format.',
|
| 235 |
+
'icon' => '',
|
| 236 |
+
'image' => plugins_url( '../assets/pdf-integration.png', __FILE__ ),
|
| 237 |
+
),
|
| 238 |
+
'pushover' => array(
|
| 239 |
+
'name' => 'Pushover',
|
| 240 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/pushover.html',
|
| 241 |
+
'description' => 'Form Maker Pushover integration allows to receive real-time notifications when a user submits a new form. This means messages can be pushed to Android and Apple devices, as well as desktop notification board.',
|
| 242 |
+
'icon' => '',
|
| 243 |
+
'image' => plugins_url( '../assets/pushover.png', __FILE__ ),
|
| 244 |
+
),
|
| 245 |
+
'form-maker-save-progress' => array(
|
| 246 |
+
'name' => 'Save Progress',
|
| 247 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/save-progress.html',
|
| 248 |
+
'description' => 'The add-on allows to save filled in forms as draft and continue editing them subsequently.',
|
| 249 |
+
'icon' => '',
|
| 250 |
+
'image' => plugins_url( '../assets/save-progress.png', __FILE__ ),
|
| 251 |
+
)
|
| 252 |
+
)
|
| 253 |
+
);
|
| 254 |
+
|
| 255 |
+
|
| 256 |
+
|
| 257 |
+
?>
|
| 258 |
+
<link href="<?php echo plugins_url( 'admin.css', __FILE__ )?>" rel="stylesheet"/>
|
| 259 |
+
<div class="wrap">
|
| 260 |
+
<?php settings_errors(); ?>
|
| 261 |
+
<div id="fm-settings">
|
| 262 |
+
<div id="fm-settings-content" >
|
| 263 |
+
<h2 id="add_on_title"><?php echo esc_html(get_admin_page_title()); ?></h2>
|
| 264 |
+
<?php
|
| 265 |
+
if($addons){
|
| 266 |
+
foreach ($addons as $name=>$cat) {
|
| 267 |
+
?>
|
| 268 |
+
|
| 269 |
+
<!-- <div style="clear: both; margin-top: 15px;"> <h3 class="fm-addon-subtitle"><?php echo $name?> </h3></div> -->
|
| 270 |
+
<?php
|
| 271 |
+
foreach ( $cat as $addon ) {
|
| 272 |
+
?>
|
| 273 |
+
<div class="fm-add-on">
|
| 274 |
+
<h2><?php echo $addon['name'] ?></h2>
|
| 275 |
+
<figure class="fm-figure">
|
| 276 |
+
<div class="fm-figure-img">
|
| 277 |
+
<a href="<?php echo $addon['url'] ?>" target="_blank">
|
| 278 |
+
<?php if ( $addon['image'] ) { ?>
|
| 279 |
+
<img src="<?php echo $addon['image'] ?>"/>
|
| 280 |
+
<?php } ?>
|
| 281 |
+
</a>
|
| 282 |
+
</div>
|
| 283 |
+
|
| 284 |
+
<figcaption class="fm-addon-descr fm-figcaption">
|
| 285 |
+
|
| 286 |
+
<?php if ( $addon['icon'] ) { ?>
|
| 287 |
+
<img src="<?php echo $addon['icon'] ?>"/>
|
| 288 |
+
<?php } ?>
|
| 289 |
+
<?php echo $addon['description'] ?>
|
| 290 |
+
</figcaption>
|
| 291 |
+
</figure>
|
| 292 |
+
<?php if ( $addon['url'] !== '#' ) { ?>
|
| 293 |
+
<a href="<?php echo $addon['url'] ?>"
|
| 294 |
+
target="_blank" class="fm-addon"><span>GET THIS ADD ON</span></a>
|
| 295 |
+
|
| 296 |
+
<?php } else { ?>
|
| 297 |
+
<div class="fm_coming_soon">
|
| 298 |
+
<img
|
| 299 |
+
src="<?php echo plugins_url( '../../assets/coming_soon.png', __FILE__ ); ?>"/>
|
| 300 |
+
</div>
|
| 301 |
+
<?php } ?>
|
| 302 |
+
</div>
|
| 303 |
+
<?php
|
| 304 |
+
}
|
| 305 |
+
}
|
| 306 |
+
}
|
| 307 |
+
?>
|
| 308 |
+
|
| 309 |
+
</div>
|
| 310 |
+
<!-- #fm-settings-content -->
|
| 311 |
+
</div>
|
| 312 |
+
<!-- #fm-settings -->
|
| 313 |
+
</div><!-- .wrap -->
|
| 314 |
+
|
| 315 |
+
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 316 |
}
|
featured/images/catalog.png
CHANGED
|
Binary file
|
featured/images/contact.builder.png
CHANGED
|
Binary file
|
featured/images/contact.maker.png
ADDED
|
Binary file
|
featured/images/contacts.png
CHANGED
|
Binary file
|
featured/images/ecommerce.png
ADDED
|
Binary file
|
featured/images/events-wd.png
ADDED
|
Binary file
|
featured/images/events_wd.png
DELETED
|
Binary file
|
featured/images/facebook-feed.png
ADDED
|
Binary file
|
featured/images/facebook.png
CHANGED
|
Binary file
|
featured/images/faq.png
CHANGED
|
Binary file
|
featured/images/faq_wd.png
CHANGED
|
Binary file
|
featured/images/flash.calendar.png
CHANGED
|
Binary file
|
featured/images/folder.menu.png
CHANGED
|
Binary file
|
featured/images/form.png
CHANGED
|
Binary file
|
featured/images/google-maps.png
ADDED
|
Binary file
|
featured/images/instagram_feed.png
ADDED
|
Binary file
|
featured/images/photo-gallery.png
CHANGED
|
Binary file
|
featured/images/player.png
CHANGED
|
Binary file
|
featured/images/post-slider.png
ADDED
|
Binary file
|
featured/images/random.post.png
CHANGED
|
Binary file
|
featured/images/slider.png
CHANGED
|
Binary file
|
featured/images/spider.calendar.png
CHANGED
|
Binary file
|
featured/images/spider.calendar33.png
DELETED
|
Binary file
|
featured/images/twittertools.png
CHANGED
|
Binary file
|
featured/images/zoom.png
CHANGED
|
Binary file
|
featured/style.css
CHANGED
|
@@ -1,102 +1,208 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin:
|
| 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 |
-
#main_featured_plugins_page #featured-plugins-list
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
#main_featured_plugins_page #featured-plugins-list
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
| 56 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
background-
|
| 61 |
-
}
|
| 62 |
-
#main_featured_plugins_page #featured-plugins-list li.
|
| 63 |
-
background
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
#main_featured_plugins_page #featured-plugins-list
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
}
|
| 75 |
-
|
| 76 |
-
#main_featured_plugins_page #featured-plugins-list
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
}
|
| 87 |
-
|
| 88 |
-
#main_featured_plugins_page #featured-plugins-list li
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
height:
|
| 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: 18pt;
|
| 14 |
+
margin: 0px auto 15px auto;
|
| 15 |
+
padding: 20px 0;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
#main_featured_plugins_page #featured-plugins-list {
|
| 19 |
+
position:relative;
|
| 20 |
+
margin:0px auto;
|
| 21 |
+
height:auto;
|
| 22 |
+
display:table;
|
| 23 |
+
list-style:none;
|
| 24 |
+
text-align: center;
|
| 25 |
+
width: 100%;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
#main_featured_plugins_page #featured-plugins-list li {
|
| 29 |
+
display: inline-table;
|
| 30 |
+
width: 200px;
|
| 31 |
+
margin: 20px 10px 0px 10px;
|
| 32 |
+
background: #FFFFFF;
|
| 33 |
+
border-right: 3px solid #E5E5E5;
|
| 34 |
+
height: 335px;
|
| 35 |
+
border-bottom: 3px solid #E5E5E5;
|
| 36 |
+
position: relative;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
#main_featured_plugins_page #featured-plugins-list li .product {
|
| 40 |
+
position:relative;
|
| 41 |
+
height:113px;
|
| 42 |
+
background-color: transparent !important;
|
| 43 |
+
background-position-x: 50% !important;
|
| 44 |
+
margin: 7px;
|
| 45 |
+
border-radius: 3px;
|
| 46 |
+
background-size: 115px !important;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
#main_featured_plugins_page #featured-plugins-list li .title {
|
| 50 |
+
width: 90%;
|
| 51 |
+
text-align: center;
|
| 52 |
+
margin: 0 auto;
|
| 53 |
+
}
|
| 54 |
+
#main_featured_plugins_page #featured-plugins-list li.ecommerce-wd .product {background:url("images/ecommerce.png") center center no-repeat;}
|
| 55 |
+
#main_featured_plugins_page #featured-plugins-list li.form-maker .product {background:url("images/form.png") center center no-repeat;}
|
| 56 |
+
#main_featured_plugins_page #featured-plugins-list li.catalog .product {background:url("images/catalog.png") center center no-repeat;}
|
| 57 |
+
#main_featured_plugins_page #featured-plugins-list li.contact-maker .product {background:url("images/contact.maker.png") center center no-repeat;}
|
| 58 |
+
#main_featured_plugins_page #featured-plugins-list li.contacts .product {background:url("images/contacts.png") center center no-repeat;}
|
| 59 |
+
#main_featured_plugins_page #featured-plugins-list li.facebook .product {background:url("images/facebook.png") center center no-repeat;}
|
| 60 |
+
#main_featured_plugins_page #featured-plugins-list li.facebook-feed .product {background:url("images/facebook-feed.png") center center no-repeat;}
|
| 61 |
+
#main_featured_plugins_page #featured-plugins-list li.faq .product {background:url("images/faq.png") center center no-repeat;}
|
| 62 |
+
#main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background:url("images/flash.calendar.png") center center no-repeat;}
|
| 63 |
+
#main_featured_plugins_page #featured-plugins-list li.player .product {background:url("images/player.png") center center no-repeat; }
|
| 64 |
+
#main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background:url("images/spider.calendar.png") center center no-repeat;}
|
| 65 |
+
#main_featured_plugins_page #featured-plugins-list li.contact_form_bulder .product {background:url("images/contact.builder.png") center center no-repeat;}
|
| 66 |
+
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url("images/random.post.png") center center no-repeat;}
|
| 67 |
+
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url("images/slider.png") center center no-repeat;}
|
| 68 |
+
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url("images/folder.menu.png") center center no-repeat;}
|
| 69 |
+
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url("images/zoom.png") center center no-repeat;}
|
| 70 |
+
#main_featured_plugins_page #featured-plugins-list li.fm-import .product {background:url("images/fm-import.png") center center no-repeat;}
|
| 71 |
+
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url("images/photo-gallery.png") center center no-repeat;}
|
| 72 |
+
#main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background:url("images/twittertools.png") center center no-repeat;}
|
| 73 |
+
#main_featured_plugins_page #featured-plugins-list li.events-wd .product {background:url("images/events-wd.png") center center no-repeat;}
|
| 74 |
+
#main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
|
| 75 |
+
#main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
|
| 76 |
+
#main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url("images/post-slider.png") center center no-repeat;}
|
| 77 |
+
#main_featured_plugins_page #featured-plugins-list li.google-maps .product {background:url("images/google-maps.png") center center no-repeat;}
|
| 78 |
+
|
| 79 |
+
#main_featured_plugins_page #featured-plugins-list li .title .heading {
|
| 80 |
+
display: block;
|
| 81 |
+
position: relative;
|
| 82 |
+
font-size: 17px;
|
| 83 |
+
color: #767676;
|
| 84 |
+
margin: 13px 0px 13px 0px;
|
| 85 |
+
text-transform: uppercase;
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
#main_featured_plugins_page #featured-plugins-list li .title p {
|
| 89 |
+
font-size:14px;
|
| 90 |
+
color:#444;
|
| 91 |
+
margin-left:20px;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
#main_featured_plugins_page #featured-plugins-list li .description {
|
| 95 |
+
height: 127px;
|
| 96 |
+
width: 90%;
|
| 97 |
+
margin: 0 auto;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
#main_featured_plugins_page #featured-plugins-list li .description p {
|
| 101 |
+
text-align: center;
|
| 102 |
+
width: 100%;
|
| 103 |
+
color: #9A9A9A;
|
| 104 |
+
font-family: Segoe UI Light;
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
#featured-plugins-list li a.download {
|
| 108 |
+
display: block;
|
| 109 |
+
border-top: 1px solid #CACACA;
|
| 110 |
+
outline: none;
|
| 111 |
+
width: 90%;
|
| 112 |
+
margin: 0 auto;
|
| 113 |
+
font-size: 14px;
|
| 114 |
+
line-height: 40px;
|
| 115 |
+
text-decoration: none;
|
| 116 |
+
font-weight: bolder;
|
| 117 |
+
text-align: center;
|
| 118 |
+
color: #134D68;
|
| 119 |
+
position: absolute;
|
| 120 |
+
text-transform: uppercase;
|
| 121 |
+
bottom: 0;
|
| 122 |
+
left: 10px;
|
| 123 |
+
font-family: Segoe UI Black;
|
| 124 |
+
text-shadow: 1px 0;
|
| 125 |
+
}
|
| 126 |
+
|
| 127 |
+
#featured-plugins-list li a.download:hover {
|
| 128 |
+
color: #F47629;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
.featured_header{
|
| 132 |
+
background: #11465F;
|
| 133 |
+
border-right: 3px solid #E5E5E5;
|
| 134 |
+
border-bottom: 3px solid #E5E5E5;
|
| 135 |
+
position: relative;
|
| 136 |
+
padding: 20px 0;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
.featured_header .old_price {
|
| 140 |
+
color: rgba(180, 180, 180, 0.3);
|
| 141 |
+
text-decoration: line-through;
|
| 142 |
+
font-family: Oswald;
|
| 143 |
+
}
|
| 144 |
+
|
| 145 |
+
.featured_header h1.get_plugins {
|
| 146 |
+
color: #FFFFFF;
|
| 147 |
+
height: 85px;
|
| 148 |
+
margin: 0;
|
| 149 |
+
background-size: 85% 100%;
|
| 150 |
+
background-position: center;
|
| 151 |
+
line-height: 60px;
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
.featured_header .try-now{
|
| 155 |
+
text-align: center;
|
| 156 |
+
}
|
| 157 |
+
|
| 158 |
+
.featured_header .try-now span {
|
| 159 |
+
display: inline-block;
|
| 160 |
+
padding: 7px 16px;
|
| 161 |
+
background: #F47629;
|
| 162 |
+
border-radius: 10px;
|
| 163 |
+
color: #ffffff;
|
| 164 |
+
font-size: 23px;
|
| 165 |
+
}
|
| 166 |
+
|
| 167 |
+
.featured_header h1 {
|
| 168 |
+
font-size: 50px;
|
| 169 |
+
text-align: center;
|
| 170 |
+
color: #FFFFFF;
|
| 171 |
+
letter-spacing: 3px;
|
| 172 |
+
text-transform: uppercase;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
.featured_header a {
|
| 176 |
+
text-decoration: none;
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
.featured_header .old-price {
|
| 180 |
+
color: #889CA8;
|
| 181 |
+
text-decoration: line-through;
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
@media screen and (max-width: 1105px) {
|
| 185 |
+
.featured_header h1 {
|
| 186 |
+
font-size: 37px;
|
| 187 |
+
line-height: 0;
|
| 188 |
+
}
|
| 189 |
+
}
|
| 190 |
+
|
| 191 |
+
@media screen and (max-width: 835px) {
|
| 192 |
+
.get_plugins span {
|
| 193 |
+
display: none;
|
| 194 |
+
}
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
@media screen and (max-width: 700px) {
|
| 198 |
+
.featured_header h1 {
|
| 199 |
+
line-height: 40px;
|
| 200 |
+
}
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
@media screen and (max-width: 435px) {
|
| 204 |
+
.featured_header h1 {
|
| 205 |
+
font-size: 20px;
|
| 206 |
+
line-height: 25px;
|
| 207 |
+
}
|
| 208 |
}
|
readme.txt
CHANGED
|
@@ -4,11 +4,11 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.
|
|
| 4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.5
|
| 7 |
-
Stable tag: 1.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
Create simple contact forms or complex applications forms with this FREE and intuitive WordPress plugin. No coding knowledge is required.
|
|
@@ -145,50 +145,75 @@ If you want to update the plugin while preserving your existing contact forms, y
|
|
| 145 |
8. Contact Form Maker - Select Columns
|
| 146 |
|
| 147 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
= 1.8.33 =
|
| 149 |
* Fixed: Unexpected behaviour on pressing "Enter" key on back end
|
|
|
|
| 150 |
= 1.8.32 =
|
| 151 |
* Fixed: JS error on incorrect Google Maps API key
|
| 152 |
* Added: Alert about incorrect Google Maps API key
|
|
|
|
| 153 |
= 1.8.31 =
|
| 154 |
* Added: Global option for Google Maps API key
|
| 155 |
* Fixed: Google Maps API key warning in browser
|
|
|
|
| 156 |
= 1.8.30 =
|
| 157 |
* Fixed: bug in new form
|
|
|
|
| 158 |
= 1.8.29 =
|
| 159 |
* Fixed: bug in widget
|
|
|
|
| 160 |
= 1.8.28 =
|
| 161 |
* minor bug fixed
|
|
|
|
| 162 |
= 1.8.27 =
|
| 163 |
* Major update
|
|
|
|
| 164 |
= 1.7.33 =
|
| 165 |
* Changed: Compability with WordPress 4.3
|
|
|
|
| 166 |
= 1.7.32 =
|
| 167 |
* Minor bug fixed
|
|
|
|
| 168 |
= 1.7.31 =
|
| 169 |
* Security issue fixed
|
|
|
|
| 170 |
= 1.7.29 =
|
| 171 |
* Cache issue fixed
|
|
|
|
| 172 |
= 1.7.28 =
|
| 173 |
* Bug fixed: Empty email "From name"
|
|
|
|
| 174 |
= 1.7.27 =
|
| 175 |
* bug fixed in csv\xml export
|
|
|
|
| 176 |
= 1.7.26 =
|
| 177 |
* bug fixed in email content
|
|
|
|
| 178 |
= 1.7.25 =
|
| 179 |
* remove fancybox
|
|
|
|
| 180 |
= 1.7.24 =
|
| 181 |
* display php function to publish form
|
|
|
|
| 182 |
= 1.7.20 =
|
| 183 |
* 4.0.1 shortcode issue fixed
|
|
|
|
| 184 |
= 1.6.1 =
|
| 185 |
* Added featured plugins
|
|
|
|
| 186 |
= 1.6.0 =
|
| 187 |
* From Name, From Email in Contact Form options
|
|
|
|
| 188 |
= 1.5.0 =
|
| 189 |
* Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
|
|
|
|
| 190 |
= 1.4.0 =
|
| 191 |
* Customizable Email message for Administrator and Users
|
|
|
|
| 192 |
= 1.3.0 =
|
| 193 |
* Actions after [WordPress Contact Form](http://wordpress.org/plugins/contact-form-maker/) Submission:
|
| 194 |
- Stay on contact form:
|
| 4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.5
|
| 7 |
+
Stable tag: 1.8.34
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
+
Form plugin is a simple contact form builder tool, which allows the user to create and edit different type of contact forms.
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
Create simple contact forms or complex applications forms with this FREE and intuitive WordPress plugin. No coding knowledge is required.
|
| 145 |
8. Contact Form Maker - Select Columns
|
| 146 |
|
| 147 |
== Changelog ==
|
| 148 |
+
|
| 149 |
+
= 1.8.34 =
|
| 150 |
+
* Changed: Featured plugins page
|
| 151 |
+
|
| 152 |
= 1.8.33 =
|
| 153 |
* Fixed: Unexpected behaviour on pressing "Enter" key on back end
|
| 154 |
+
|
| 155 |
= 1.8.32 =
|
| 156 |
* Fixed: JS error on incorrect Google Maps API key
|
| 157 |
* Added: Alert about incorrect Google Maps API key
|
| 158 |
+
|
| 159 |
= 1.8.31 =
|
| 160 |
* Added: Global option for Google Maps API key
|
| 161 |
* Fixed: Google Maps API key warning in browser
|
| 162 |
+
|
| 163 |
= 1.8.30 =
|
| 164 |
* Fixed: bug in new form
|
| 165 |
+
|
| 166 |
= 1.8.29 =
|
| 167 |
* Fixed: bug in widget
|
| 168 |
+
|
| 169 |
= 1.8.28 =
|
| 170 |
* minor bug fixed
|
| 171 |
+
|
| 172 |
= 1.8.27 =
|
| 173 |
* Major update
|
| 174 |
+
|
| 175 |
= 1.7.33 =
|
| 176 |
* Changed: Compability with WordPress 4.3
|
| 177 |
+
|
| 178 |
= 1.7.32 =
|
| 179 |
* Minor bug fixed
|
| 180 |
+
|
| 181 |
= 1.7.31 =
|
| 182 |
* Security issue fixed
|
| 183 |
+
|
| 184 |
= 1.7.29 =
|
| 185 |
* Cache issue fixed
|
| 186 |
+
|
| 187 |
= 1.7.28 =
|
| 188 |
* Bug fixed: Empty email "From name"
|
| 189 |
+
|
| 190 |
= 1.7.27 =
|
| 191 |
* bug fixed in csv\xml export
|
| 192 |
+
|
| 193 |
= 1.7.26 =
|
| 194 |
* bug fixed in email content
|
| 195 |
+
|
| 196 |
= 1.7.25 =
|
| 197 |
* remove fancybox
|
| 198 |
+
|
| 199 |
= 1.7.24 =
|
| 200 |
* display php function to publish form
|
| 201 |
+
|
| 202 |
= 1.7.20 =
|
| 203 |
* 4.0.1 shortcode issue fixed
|
| 204 |
+
|
| 205 |
= 1.6.1 =
|
| 206 |
* Added featured plugins
|
| 207 |
+
|
| 208 |
= 1.6.0 =
|
| 209 |
* From Name, From Email in Contact Form options
|
| 210 |
+
|
| 211 |
= 1.5.0 =
|
| 212 |
* Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
|
| 213 |
+
|
| 214 |
= 1.4.0 =
|
| 215 |
* Customizable Email message for Administrator and Users
|
| 216 |
+
|
| 217 |
= 1.3.0 =
|
| 218 |
* Actions after [WordPress Contact Form](http://wordpress.org/plugins/contact-form-maker/) Submission:
|
| 219 |
- Stay on contact form:
|
