Version Description
- Fixed: Submissions page.
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form by WD – responsive drag & drop contact form builder tool |
Version | 1.12.14 |
Comparing to | |
See all releases |
Code changes from version 1.12.13 to 1.12.14
- admin/models/Manage_fm.php +1 -1
- admin/views/Submissions_fm.php +2 -2
- contact-form-maker.php +3 -3
- frontend/controllers/form_maker.php +1 -1
- readme.txt +4 -1
admin/models/Manage_fm.php
CHANGED
@@ -855,7 +855,7 @@ class FMModelManage_fmc {
|
|
855 |
$g++;
|
856 |
if ( $w_disabled_fields[5] == 'yes' && $w_disabled_fields[6] == 'yes' ) {
|
857 |
$address_fields .= '<span style="float: ' . (($g % 2 == 0) ? 'right' : 'left') . '; width: 48%; padding-bottom: 8px;"><select type="text" id="' . $id . '_stateform_id_temp" name="' . ($id + 3) . '_stateform_id_temp" style="width: 100%;" ' . $param['attributes'] . ' disabled >';
|
858 |
-
$states =
|
859 |
foreach ($states as $st => $state) {
|
860 |
$address_fields .= '<option value="' . $st . '">' . $state . '</option>';
|
861 |
}
|
855 |
$g++;
|
856 |
if ( $w_disabled_fields[5] == 'yes' && $w_disabled_fields[6] == 'yes' ) {
|
857 |
$address_fields .= '<span style="float: ' . (($g % 2 == 0) ? 'right' : 'left') . '; width: 48%; padding-bottom: 8px;"><select type="text" id="' . $id . '_stateform_id_temp" name="' . ($id + 3) . '_stateform_id_temp" style="width: 100%;" ' . $param['attributes'] . ' disabled >';
|
858 |
+
$states = WDW_FMC_Library::get_states();
|
859 |
foreach ($states as $st => $state) {
|
860 |
$address_fields .= '<option value="' . $st . '">' . $state . '</option>';
|
861 |
}
|
admin/views/Submissions_fm.php
CHANGED
@@ -845,7 +845,7 @@ class FMViewSubmissions_fmc extends FMAdminView_fmc {
|
|
845 |
url: "<?php echo add_query_arg(array(
|
846 |
'form_id' => $form_id,
|
847 |
'send_header' => 0,
|
848 |
-
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo
|
849 |
data: {search_labels: '<?php echo $searched_ids; ?>', verified_emails: jQuery('#verified_emails').val()},
|
850 |
beforeSend: function () {
|
851 |
if (<?php echo $subs_count; ?> >=
|
@@ -883,7 +883,7 @@ class FMViewSubmissions_fmc extends FMAdminView_fmc {
|
|
883 |
window.location = "<?php echo add_query_arg(array(
|
884 |
'form_id' => $form_id,
|
885 |
'send_header' => 1,
|
886 |
-
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo
|
887 |
}
|
888 |
}
|
889 |
});
|
845 |
url: "<?php echo add_query_arg(array(
|
846 |
'form_id' => $form_id,
|
847 |
'send_header' => 0,
|
848 |
+
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDCFM()->plugin_postfix; ?>&limitstart=" + limit,
|
849 |
data: {search_labels: '<?php echo $searched_ids; ?>', verified_emails: jQuery('#verified_emails').val()},
|
850 |
beforeSend: function () {
|
851 |
if (<?php echo $subs_count; ?> >=
|
883 |
window.location = "<?php echo add_query_arg(array(
|
884 |
'form_id' => $form_id,
|
885 |
'send_header' => 1,
|
886 |
+
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDCFM()->plugin_postfix; ?>&limitstart=" + limit;
|
887 |
}
|
888 |
}
|
889 |
});
|
contact-form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Contact Form Maker
|
4 |
* Plugin URI: https://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.12.
|
7 |
* Author: WebDorado Form Builder Team
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -89,8 +89,8 @@ final class WDCFM {
|
|
89 |
$this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
|
90 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
91 |
$this->main_file = plugin_basename(__FILE__);
|
92 |
-
$this->plugin_version = '1.12.
|
93 |
-
$this->db_version = '2.12.
|
94 |
$this->menu_slug = 'manage_fmc';
|
95 |
$this->prefix = 'form_maker_fmc';
|
96 |
$this->css_prefix = 'fmc_';
|
3 |
* Plugin Name: Contact Form Maker
|
4 |
* Plugin URI: https://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.12.14
|
7 |
* Author: WebDorado Form Builder Team
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
89 |
$this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
|
90 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
91 |
$this->main_file = plugin_basename(__FILE__);
|
92 |
+
$this->plugin_version = '1.12.14';
|
93 |
+
$this->db_version = '2.12.14';
|
94 |
$this->menu_slug = 'manage_fmc';
|
95 |
$this->prefix = 'form_maker_fmc';
|
96 |
$this->css_prefix = 'fmc_';
|
frontend/controllers/form_maker.php
CHANGED
@@ -173,7 +173,7 @@ class FMControllerForm_maker_fmc {
|
|
173 |
}
|
174 |
$show_for_admin = current_user_can('administrator') && $form->show_for_admin ? 'true' : 'false';
|
175 |
|
176 |
-
if ( $this->form_preview && ($id ==
|
177 |
$display_on_this = TRUE;
|
178 |
}
|
179 |
|
173 |
}
|
174 |
$show_for_admin = current_user_can('administrator') && $form->show_for_admin ? 'true' : 'false';
|
175 |
|
176 |
+
if ( $this->form_preview && ($id == WDW_FMC_Library::get('wdform_id', 0)) ) {
|
177 |
$display_on_this = TRUE;
|
178 |
}
|
179 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,10web
|
|
3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.12.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -165,6 +165,9 @@ If you want to update the plugin while preserving your existing contact forms, y
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
|
|
|
|
|
|
168 |
= 1.12.13 =
|
169 |
* Fixed: Bug on Popup forms on mobile.
|
170 |
* Fixed: "Custom HTML" field label in conditional fields list.
|
3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.12.14
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
165 |
|
166 |
== Changelog ==
|
167 |
|
168 |
+
= 1.12.14 =
|
169 |
+
* Fixed: Submissions page.
|
170 |
+
|
171 |
= 1.12.13 =
|
172 |
* Fixed: Bug on Popup forms on mobile.
|
173 |
* Fixed: "Custom HTML" field label in conditional fields list.
|