Version Description
- Changed: Compability with WordPress 4.3
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form by WD – responsive drag & drop contact form builder tool |
Version | 1.7.33 |
Comparing to | |
See all releases |
Code changes from version 1.7.32 to 1.7.33
- admin/controllers/FMControllerWidget_fmc.php +1 -1
- admin/views/FMViewManage_fmc.php +5 -5
- contact-form-maker.php +2 -2
- css/form_maker_tables.css +13 -0
- readme.txt +4 -2
admin/controllers/FMControllerWidget_fmc.php
CHANGED
@@ -23,7 +23,7 @@ class FMControllerWidget_fmc extends WP_Widget {
|
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'form_maker_widget');
|
25 |
// Create the widget.
|
26 |
-
|
27 |
require_once WD_FMC_DIR . "/admin/models/FMModelWidget_fmc.php";
|
28 |
$this->model = new FMModelWidget_fmc();
|
29 |
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'form_maker_widget');
|
25 |
// Create the widget.
|
26 |
+
parent::__construct('form_maker_widget', 'Contact Form Maker', $widget_ops, $control_ops);
|
27 |
require_once WD_FMC_DIR . "/admin/models/FMModelWidget_fmc.php";
|
28 |
$this->model = new FMModelWidget_fmc();
|
29 |
|
admin/views/FMViewManage_fmc.php
CHANGED
@@ -2531,7 +2531,7 @@ class FMViewManage_fmc {
|
|
2531 |
<table class="admintable">
|
2532 |
<tr>
|
2533 |
<td colspan="2">
|
2534 |
-
<div class="
|
2535 |
</td>
|
2536 |
</tr>
|
2537 |
<tr valign="top">
|
@@ -2818,7 +2818,7 @@ class FMViewManage_fmc {
|
|
2818 |
</td>
|
2819 |
</tr>
|
2820 |
</table>
|
2821 |
-
<div class="
|
2822 |
<fieldset class="adminform">
|
2823 |
<legend style="color:#0B55C4;font-weight: bold;">Front end submissions access level</legend>
|
2824 |
<table>
|
@@ -3231,7 +3231,7 @@ class FMViewManage_fmc {
|
|
3231 |
<td class="fm_options_value">
|
3232 |
<input type="radio" disabled="disabled" name="mail_attachment" value="1" id="en_attach" <?php if($row->mail_attachment==1 ) echo "checked" ?> /> <label for="en_attach">Yes</label>
|
3233 |
<input type="radio" disabled="disabled" name="mail_attachment" id="dis_attach" value="0" <?php if($row->mail_attachment==0 ) echo "checked" ?> /> <label for="dis_attach">No</label>
|
3234 |
-
<div class="
|
3235 |
</td>
|
3236 |
</tr>
|
3237 |
<tr>
|
@@ -3412,7 +3412,7 @@ class FMViewManage_fmc {
|
|
3412 |
<td class="fm_options_value">
|
3413 |
<input type="radio" disabled="disabled" name="mail_attachment_user" value="1" id="en_attach_user" <?php if($row->mail_attachment_user==1 ) echo "checked" ?> /> <label for="en_attach_user">Yes</label>
|
3414 |
<input type="radio" disabled="disabled" name="mail_attachment_user" id="dis_attach_user" value="0" <?php if($row->mail_attachment_user==0 ) echo "checked" ?> /> <label for="dis_attach_user">No</label>
|
3415 |
-
<div class="
|
3416 |
</td>
|
3417 |
</tr>
|
3418 |
<tr>
|
@@ -3555,7 +3555,7 @@ class FMViewManage_fmc {
|
|
3555 |
<table class="admintable">
|
3556 |
<tr>
|
3557 |
<td colspan="2">
|
3558 |
-
<div class="
|
3559 |
</td>
|
3560 |
</tr>
|
3561 |
<tr valign="top">
|
2531 |
<table class="admintable">
|
2532 |
<tr>
|
2533 |
<td colspan="2">
|
2534 |
+
<div class="error_cfm" style="padding: 5px; font-size: 14px;">Paypal Options are disabled in free version.</div>
|
2535 |
</td>
|
2536 |
</tr>
|
2537 |
<tr valign="top">
|
2818 |
</td>
|
2819 |
</tr>
|
2820 |
</table>
|
2821 |
+
<div class="error_cfm" style="padding: 5px; font-size: 14px;">Front end submissions are disabled in free version.</div>
|
2822 |
<fieldset class="adminform">
|
2823 |
<legend style="color:#0B55C4;font-weight: bold;">Front end submissions access level</legend>
|
2824 |
<table>
|
3231 |
<td class="fm_options_value">
|
3232 |
<input type="radio" disabled="disabled" name="mail_attachment" value="1" id="en_attach" <?php if($row->mail_attachment==1 ) echo "checked" ?> /> <label for="en_attach">Yes</label>
|
3233 |
<input type="radio" disabled="disabled" name="mail_attachment" id="dis_attach" value="0" <?php if($row->mail_attachment==0 ) echo "checked" ?> /> <label for="dis_attach">No</label>
|
3234 |
+
<div class="error_cfm" style="padding: 5px; font-size: 14px;">File attach is disabled in free version.</div>
|
3235 |
</td>
|
3236 |
</tr>
|
3237 |
<tr>
|
3412 |
<td class="fm_options_value">
|
3413 |
<input type="radio" disabled="disabled" name="mail_attachment_user" value="1" id="en_attach_user" <?php if($row->mail_attachment_user==1 ) echo "checked" ?> /> <label for="en_attach_user">Yes</label>
|
3414 |
<input type="radio" disabled="disabled" name="mail_attachment_user" id="dis_attach_user" value="0" <?php if($row->mail_attachment_user==0 ) echo "checked" ?> /> <label for="dis_attach_user">No</label>
|
3415 |
+
<div class="error_cfm" style="padding: 5px; font-size: 14px;">File attach is disabled in free version.</div>
|
3416 |
</td>
|
3417 |
</tr>
|
3418 |
<tr>
|
3555 |
<table class="admintable">
|
3556 |
<tr>
|
3557 |
<td colspan="2">
|
3558 |
+
<div class="error_cfm" style="padding: 5px; font-size: 14px;">Paypal Options are disabled in free version.</div>
|
3559 |
</td>
|
3560 |
</tr>
|
3561 |
<tr valign="top">
|
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: 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.7.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -196,7 +196,7 @@ if (class_exists('WP_Widget')) {
|
|
196 |
// Activate plugin.
|
197 |
function form_maker_activate_cfm() {
|
198 |
$version = get_option("wd_form_maker_version");
|
199 |
-
$new_version = '1.7.
|
200 |
if (!$version) {
|
201 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
202 |
global $wpdb;
|
3 |
* Plugin Name: Contact Form Maker
|
4 |
* Plugin URI: http://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.7.33
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
196 |
// Activate plugin.
|
197 |
function form_maker_activate_cfm() {
|
198 |
$version = get_option("wd_form_maker_version");
|
199 |
+
$new_version = '1.7.33';
|
200 |
if (!$version) {
|
201 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
202 |
global $wpdb;
|
css/form_maker_tables.css
CHANGED
@@ -381,6 +381,19 @@ div.wd_preview a {
|
|
381 |
margin: 5px 0 2px !important;
|
382 |
}
|
383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
.buttons_div {
|
385 |
clear: both;
|
386 |
float: right;
|
381 |
margin: 5px 0 2px !important;
|
382 |
}
|
383 |
|
384 |
+
.error_cfm {
|
385 |
+
padding: 5px;
|
386 |
+
font-size: 14px;
|
387 |
+
margin: 5px 0 2px !important;
|
388 |
+
}
|
389 |
+
|
390 |
+
div.error_cfm {
|
391 |
+
background: #fff;
|
392 |
+
border-left: 4px solid #dd3d36;
|
393 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
394 |
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
395 |
+
}
|
396 |
+
|
397 |
.buttons_div {
|
398 |
clear: both;
|
399 |
float: right;
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado
|
|
3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html
|
4 |
Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contac forms, custom form, Contact form maker with recaptcha, contact form with google map, feedback form, feedback forms, contact us, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, survey form, contact form with captcha
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -145,6 +145,8 @@ 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.7.32 =
|
149 |
* Minor bug fixed
|
150 |
= 1.7.31 =
|
3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html
|
4 |
Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contac forms, custom form, Contact form maker with recaptcha, contact form with google map, feedback form, feedback forms, contact us, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, survey form, contact form with captcha
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 1.7.33
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
145 |
8. Contact Form Maker - Select Columns
|
146 |
|
147 |
== Changelog ==
|
148 |
+
= 1.7.33 =
|
149 |
+
* Changed: Compability with WordPress 4.3
|
150 |
= 1.7.32 =
|
151 |
* Minor bug fixed
|
152 |
= 1.7.31 =
|