Version Description
line break in custom text in email
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.9 |
Comparing to | |
See all releases |
Code changes from version 1.7.8 to 1.7.9
- css/form_maker_frontend.css +4 -0
- form-maker.php +1 -21
- frontend/models/FMModelForm_maker.php +2 -2
- readme.txt +19 -3
css/form_maker_frontend.css
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
.radio-div,
|
2 |
.radio-div *,
|
3 |
.checkbox-div,
|
1 |
+
div.wdform-element-section {
|
2 |
+
width: initial !important;
|
3 |
+
}
|
4 |
+
|
5 |
.radio-div,
|
6 |
.radio-div *,
|
7 |
.checkbox-div,
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: 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: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
@@ -219,13 +219,6 @@ function form_maker_activate() {
|
|
219 |
form_maker_update($version);
|
220 |
update_option("wd_form_maker_version", $new_version);
|
221 |
}
|
222 |
-
// To disable contact form.
|
223 |
-
if (!get_option('form_maker_pro_active', FALSE)) {
|
224 |
-
add_option('form_maker_pro_active', TRUE);
|
225 |
-
}
|
226 |
-
else {
|
227 |
-
update_option('form_maker_pro_active', TRUE);
|
228 |
-
}
|
229 |
}
|
230 |
register_activation_hook(__FILE__, 'form_maker_activate');
|
231 |
|
@@ -233,19 +226,6 @@ if (!isset($_GET['action']) || $_GET['action'] != 'deactivate') {
|
|
233 |
add_action('admin_init', 'form_maker_activate');
|
234 |
}
|
235 |
|
236 |
-
// Deactivate plugin.
|
237 |
-
function form_maker_deactivate() {
|
238 |
-
if (isset($_GET['form_maker_uninstall'])) {
|
239 |
-
if ($_GET['form_maker_uninstall'] == 1) {
|
240 |
-
delete_option('formmaker_cureent_version');
|
241 |
-
delete_option('contact_form_themes');
|
242 |
-
delete_option('contact_form_forms');
|
243 |
-
}
|
244 |
-
}
|
245 |
-
delete_option('form_maker_pro_active');
|
246 |
-
}
|
247 |
-
// register_deactivation_hook(__FILE__, 'form_maker_deactivate');
|
248 |
-
|
249 |
// Form Maker manage page styles.
|
250 |
function form_maker_manage_styles() {
|
251 |
wp_admin_css('thickbox');
|
3 |
* Plugin Name: 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.9
|
7 |
* Author: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
219 |
form_maker_update($version);
|
220 |
update_option("wd_form_maker_version", $new_version);
|
221 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
}
|
223 |
register_activation_hook(__FILE__, 'form_maker_activate');
|
224 |
|
226 |
add_action('admin_init', 'form_maker_activate');
|
227 |
}
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
// Form Maker manage page styles.
|
230 |
function form_maker_manage_styles() {
|
231 |
wp_admin_css('thickbox');
|
frontend/models/FMModelForm_maker.php
CHANGED
@@ -1829,7 +1829,7 @@ class FMModelForm_maker {
|
|
1829 |
$content_type = "text/html";
|
1830 |
$mode = 1;
|
1831 |
$list_user = wordwrap($list, 70, "\n", true);
|
1832 |
-
$new_script = $row->script_mail_user;
|
1833 |
}
|
1834 |
else {
|
1835 |
$content_type = "text/plain";
|
@@ -1942,7 +1942,7 @@ class FMModelForm_maker {
|
|
1942 |
$content_type = "text/html";
|
1943 |
$mode = 1;
|
1944 |
$list = wordwrap($list, 70, "\n", true);
|
1945 |
-
$new_script = $row->script_mail;
|
1946 |
}
|
1947 |
else {
|
1948 |
$content_type = "text/plain";
|
1829 |
$content_type = "text/html";
|
1830 |
$mode = 1;
|
1831 |
$list_user = wordwrap($list, 70, "\n", true);
|
1832 |
+
$new_script = wpautop($row->script_mail_user);
|
1833 |
}
|
1834 |
else {
|
1835 |
$content_type = "text/plain";
|
1942 |
$content_type = "text/html";
|
1943 |
$mode = 1;
|
1944 |
$list = wordwrap($list, 70, "\n", true);
|
1945 |
+
$new_script = wpautop($row->script_mail);
|
1946 |
}
|
1947 |
else {
|
1948 |
$content_type = "text/plain";
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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, Formular, formulario
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -108,7 +108,8 @@ Survey tools are also very convenient for adding rating systems for the posts, e
|
|
108 |
* There is a possibility to add custom text which will be displayed when the field is empty to give the users samples or instruction when filling the specific field.
|
109 |
* Possibility to have pre-filled texts serving as instructions for the textarea and other text fields.
|
110 |
* Date picker in the form of drop-down menu for easier date selection.
|
111 |
-
* Submissions section displays the amount of entries, as well as views and conversion rate for each separate form.
|
|
|
112 |
|
113 |
Upgrade to [WordPress Form Maker Pro](http://web-dorado.com/products/wordpress-form.html) to add features:
|
114 |
|
@@ -212,8 +213,23 @@ In case you are upgrading your Form Maker to paid version, but still want to pre
|
|
212 |
|
213 |
== Changelog ==
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
= 1.7.4 =
|
216 |
-
bug fixed
|
217 |
|
218 |
= 1.7.2 =
|
219 |
improve themes
|
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, Formular, formulario
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 1.7.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
108 |
* There is a possibility to add custom text which will be displayed when the field is empty to give the users samples or instruction when filling the specific field.
|
109 |
* Possibility to have pre-filled texts serving as instructions for the textarea and other text fields.
|
110 |
* Date picker in the form of drop-down menu for easier date selection.
|
111 |
+
* Submissions section displays the amount of entries, as well as views and conversion rate for each separate form.
|
112 |
+
* Conditional fileds.
|
113 |
|
114 |
Upgrade to [WordPress Form Maker Pro](http://web-dorado.com/products/wordpress-form.html) to add features:
|
115 |
|
213 |
|
214 |
== Changelog ==
|
215 |
|
216 |
+
= 1.7.9 =
|
217 |
+
line break in custom text in email
|
218 |
+
|
219 |
+
= 1.7.8 =
|
220 |
+
bug fixed in required radio field
|
221 |
+
|
222 |
+
= 1.7.7 =
|
223 |
+
bug fixed in adding new form
|
224 |
+
|
225 |
+
= 1.7.6 =
|
226 |
+
new email options, conditional fileds
|
227 |
+
|
228 |
+
= 1.7.5 =
|
229 |
+
conflict with jetpack fixed
|
230 |
+
|
231 |
= 1.7.4 =
|
232 |
+
bug fixed in form options
|
233 |
|
234 |
= 1.7.2 =
|
235 |
improve themes
|