Version Description
Fixed: Bug in selectbox
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.8.21 |
Comparing to | |
See all releases |
Code changes from version 1.8.20 to 1.8.21
- form-maker.php +2 -3
- js/formmaker_div_free.js +3 -3
- readme.txt +4 -1
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');
|
@@ -483,7 +483,6 @@ function form_maker_front_end_scripts() {
|
|
483 |
wp_enqueue_style('form_maker_frontend', WD_FM_URL . '/css/form_maker_frontend.css');
|
484 |
|
485 |
wp_register_script('main_div_front_end', WD_FM_URL . '/js/main_div_front_end.js', array(), get_option("wd_form_maker_version"));
|
486 |
-
wp_enqueue_script('main_div_front_end', WD_FM_URL . '/js/main_div_front_end.js', array(), get_option("wd_form_maker_version"));
|
487 |
wp_register_script('main_front_end', WD_FM_URL . '/js/main_front_end.js', array(), get_option("wd_form_maker_version"));
|
488 |
wp_localize_script('main_div_front_end', 'fm_objectL10n', array(
|
489 |
'plugin_url' => WD_FM_URL
|
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.21
|
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.21';
|
275 |
global $wpdb;
|
276 |
if (!$version) {
|
277 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
483 |
wp_enqueue_style('form_maker_frontend', WD_FM_URL . '/css/form_maker_frontend.css');
|
484 |
|
485 |
wp_register_script('main_div_front_end', WD_FM_URL . '/js/main_div_front_end.js', array(), get_option("wd_form_maker_version"));
|
|
|
486 |
wp_register_script('main_front_end', WD_FM_URL . '/js/main_front_end.js', array(), get_option("wd_form_maker_version"));
|
487 |
wp_localize_script('main_div_front_end', 'fm_objectL10n', array(
|
488 |
'plugin_url' => WD_FM_URL
|
js/formmaker_div_free.js
CHANGED
@@ -14252,7 +14252,7 @@ function type_own_select(i, w_field_label, w_field_label_size, w_field_label_pos
|
|
14252 |
el_choices_dis.setAttribute("title", 'Empty value');
|
14253 |
el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
|
14254 |
el_choices_dis.setAttribute("class", "el_option_dis");
|
14255 |
-
el_choices_dis.setAttribute("onClick", "dis_option('"+i+"_option"+j+"', this.checked)");
|
14256 |
el_choices_dis.style.cssText ="vertical-align: middle; margin-left:21px; margin-right:21px;";
|
14257 |
if(w_choices_disabled[j])
|
14258 |
el_choices_dis.setAttribute("checked", "checked");
|
@@ -14616,13 +14616,13 @@ function dis_option(id, value, num)
|
|
14616 |
{
|
14617 |
if(value)
|
14618 |
{
|
14619 |
-
jQuery(id).val('');
|
14620 |
|
14621 |
jQuery('#el_option_value'+num).val('');
|
14622 |
}
|
14623 |
else
|
14624 |
{
|
14625 |
-
jQuery(id).val(jQuery(id).html());
|
14626 |
jQuery('#el_option_value'+num).val(jQuery('#el_option'+num).val());
|
14627 |
}
|
14628 |
|
14252 |
el_choices_dis.setAttribute("title", 'Empty value');
|
14253 |
el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
|
14254 |
el_choices_dis.setAttribute("class", "el_option_dis");
|
14255 |
+
el_choices_dis.setAttribute("onClick", "dis_option('"+i+"_option"+j+"', this.checked, '"+j+"')");
|
14256 |
el_choices_dis.style.cssText ="vertical-align: middle; margin-left:21px; margin-right:21px;";
|
14257 |
if(w_choices_disabled[j])
|
14258 |
el_choices_dis.setAttribute("checked", "checked");
|
14616 |
{
|
14617 |
if(value)
|
14618 |
{
|
14619 |
+
jQuery('#'+id).val('');
|
14620 |
|
14621 |
jQuery('#el_option_value'+num).val('');
|
14622 |
}
|
14623 |
else
|
14624 |
{
|
14625 |
+
jQuery('#'+id).val(jQuery('#'+id).html());
|
14626 |
jQuery('#el_option_value'+num).val(jQuery('#el_option'+num).val());
|
14627 |
}
|
14628 |
|
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,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
302 |
|
303 |
== Changelog ==
|
304 |
|
|
|
|
|
|
|
305 |
= 1.8.20 =
|
306 |
Added: Autofill with user data for email address and name fields
|
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.21
|
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.21 =
|
306 |
+
Fixed: Bug in selectbox
|
307 |
+
|
308 |
= 1.8.20 =
|
309 |
Added: Autofill with user data for email address and name fields
|
310 |
|