Version Description
- Fixed: Conflict with Jetpack Contact Form module.
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.11.11 |
| Comparing to | |
| See all releases | |
Code changes from version 1.11.8 to 1.11.11
- admin/views/FMViewManage_fm.php +5 -5
- form-maker.php +2 -2
- readme.txt +4 -1
admin/views/FMViewManage_fm.php
CHANGED
|
@@ -667,7 +667,7 @@ class FMViewManage_fm {
|
|
| 667 |
<input type="hidden" value="<?php echo WD_FM_URL; ?>" id="form_plugins_url" />
|
| 668 |
<div id="main_editor" style="position: fixed; display: none; z-index: 140;">
|
| 669 |
<?php if (user_can_richedit()) {
|
| 670 |
-
wp_editor('', 'form_maker_editor', array('teeny' =>
|
| 671 |
}
|
| 672 |
else { ?>
|
| 673 |
<textarea name="form_maker_editor" id="form_maker_editor" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
|
|
@@ -739,7 +739,7 @@ class FMViewManage_fm {
|
|
| 739 |
<label>Description: </label>
|
| 740 |
<div id="description_editor" style="width:470px; display: inline-block; vertical-align: middle;">
|
| 741 |
<?php if (user_can_richedit()) {
|
| 742 |
-
wp_editor($row->header_description, 'header_description', array('teeny' =>
|
| 743 |
}
|
| 744 |
else { ?>
|
| 745 |
<textarea name="header_description" id="header_description" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
|
|
@@ -2166,7 +2166,7 @@ class FMViewManage_fm {
|
|
| 2166 |
</div>
|
| 2167 |
<?php
|
| 2168 |
if (user_can_richedit()) {
|
| 2169 |
-
wp_editor($row->script_mail, 'script_mail', array('teeny' =>
|
| 2170 |
}
|
| 2171 |
else {
|
| 2172 |
?>
|
|
@@ -2385,7 +2385,7 @@ class FMViewManage_fm {
|
|
| 2385 |
</div>
|
| 2386 |
<?php
|
| 2387 |
if (user_can_richedit()) {
|
| 2388 |
-
wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' =>
|
| 2389 |
}
|
| 2390 |
else {
|
| 2391 |
?>
|
|
@@ -2505,7 +2505,7 @@ class FMViewManage_fm {
|
|
| 2505 |
<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
|
| 2506 |
<?php
|
| 2507 |
if (user_can_richedit()) {
|
| 2508 |
-
wp_editor($row->submit_text, 'submit_text', array('teeny' =>
|
| 2509 |
}
|
| 2510 |
else {
|
| 2511 |
?>
|
| 667 |
<input type="hidden" value="<?php echo WD_FM_URL; ?>" id="form_plugins_url" />
|
| 668 |
<div id="main_editor" style="position: fixed; display: none; z-index: 140;">
|
| 669 |
<?php if (user_can_richedit()) {
|
| 670 |
+
wp_editor('', 'form_maker_editor', array('teeny' => TRUE, 'textarea_name' => 'form_maker_editor', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
| 671 |
}
|
| 672 |
else { ?>
|
| 673 |
<textarea name="form_maker_editor" id="form_maker_editor" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
|
| 739 |
<label>Description: </label>
|
| 740 |
<div id="description_editor" style="width:470px; display: inline-block; vertical-align: middle;">
|
| 741 |
<?php if (user_can_richedit()) {
|
| 742 |
+
wp_editor($row->header_description, 'header_description', array('teeny' => TRUE, 'textarea_name' => 'header_description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
| 743 |
}
|
| 744 |
else { ?>
|
| 745 |
<textarea name="header_description" id="header_description" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
|
| 2166 |
</div>
|
| 2167 |
<?php
|
| 2168 |
if (user_can_richedit()) {
|
| 2169 |
+
wp_editor($row->script_mail, 'script_mail', array('teeny' => TRUE, 'textarea_name' => 'script_mail', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
| 2170 |
}
|
| 2171 |
else {
|
| 2172 |
?>
|
| 2385 |
</div>
|
| 2386 |
<?php
|
| 2387 |
if (user_can_richedit()) {
|
| 2388 |
+
wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' => TRUE, 'textarea_name' => 'script_mail_user', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
| 2389 |
}
|
| 2390 |
else {
|
| 2391 |
?>
|
| 2505 |
<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
|
| 2506 |
<?php
|
| 2507 |
if (user_can_richedit()) {
|
| 2508 |
+
wp_editor($row->submit_text, 'submit_text', array('teeny' => TRUE, 'textarea_name' => 'submit_text', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
| 2509 |
}
|
| 2510 |
else {
|
| 2511 |
?>
|
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.11.
|
| 7 |
* Author: WebDorado Form Builder Team
|
| 8 |
* Author URI: https://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -11,7 +11,7 @@
|
|
| 11 |
define('WD_FM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
| 12 |
define('WD_FM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
| 13 |
define('WD_MAIN_FILE', plugin_basename(__FILE__));
|
| 14 |
-
define('WD_FM_VERSION', '1.11.
|
| 15 |
// Plugin menu.
|
| 16 |
function form_maker_options_panel() {
|
| 17 |
$parent_slug = null;
|
| 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.11.11
|
| 7 |
* Author: WebDorado Form Builder Team
|
| 8 |
* Author URI: https://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 11 |
define('WD_FM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
| 12 |
define('WD_FM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
| 13 |
define('WD_MAIN_FILE', plugin_basename(__FILE__));
|
| 14 |
+
define('WD_FM_VERSION', '1.11.11');
|
| 15 |
// Plugin menu.
|
| 16 |
function form_maker_options_panel() {
|
| 17 |
$parent_slug = null;
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
|
|
| 4 |
Tags: form, form builder, contact form, custom form, feedback, contact, contact forms, captcha, email, form manager, forms, survey
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.8
|
| 7 |
-
Stable tag: 1.11.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -290,6 +290,9 @@ MailChimp form add-on of Form Maker lets you build up a customer database on you
|
|
| 290 |
|
| 291 |
== Changelog ==
|
| 292 |
|
|
|
|
|
|
|
|
|
|
| 293 |
= 1.11.8 =
|
| 294 |
* Updated: WD Library.
|
| 295 |
|
| 4 |
Tags: form, form builder, contact form, custom form, feedback, contact, contact forms, captcha, email, form manager, forms, survey
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.8
|
| 7 |
+
Stable tag: 1.11.11
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 290 |
|
| 291 |
== Changelog ==
|
| 292 |
|
| 293 |
+
= 1.11.11 =
|
| 294 |
+
* Fixed: Conflict with Jetpack Contact Form module.
|
| 295 |
+
|
| 296 |
= 1.11.8 =
|
| 297 |
* Updated: WD Library.
|
| 298 |
|
