Version Description
Fixed: Bug on PHP 5.3
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.10.3 |
Comparing to | |
See all releases |
Code changes from version 1.10.2 to 1.10.3
- form-maker.php +6 -4
- 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.10.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -187,7 +187,8 @@ function fm_output_buffer() {
|
|
187 |
add_shortcode('Form', 'fm_shortcode');
|
188 |
|
189 |
function fm_shortcode($attrs) {
|
190 |
-
$
|
|
|
191 |
if($fm_shortcode){
|
192 |
$new_shortcode = '[Form';
|
193 |
foreach ($attrs as $key=>$value) {
|
@@ -245,7 +246,8 @@ function Form_maker_fornt_end_main($content) {
|
|
245 |
}
|
246 |
return $content;
|
247 |
}
|
248 |
-
|
|
|
249 |
add_filter('the_content', 'Form_maker_fornt_end_main', 5000);
|
250 |
|
251 |
// Add the Form Maker button to editor.
|
@@ -277,7 +279,7 @@ function register_fmemailverification_cpt(){
|
|
277 |
// Activate plugin.
|
278 |
function form_maker_activate() {
|
279 |
$version = get_option("wd_form_maker_version");
|
280 |
-
$new_version = '1.10.
|
281 |
global $wpdb;
|
282 |
if (!$version) {
|
283 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
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.10.3
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
187 |
add_shortcode('Form', 'fm_shortcode');
|
188 |
|
189 |
function fm_shortcode($attrs) {
|
190 |
+
$fm_settings = get_option('fm_settings');
|
191 |
+
$fm_shortcode = isset($fm_settings['fm_shortcode']) ? $fm_settings['fm_shortcode'] : '';
|
192 |
if($fm_shortcode){
|
193 |
$new_shortcode = '[Form';
|
194 |
foreach ($attrs as $key=>$value) {
|
246 |
}
|
247 |
return $content;
|
248 |
}
|
249 |
+
$fm_settings = get_option('fm_settings');
|
250 |
+
if(isset($fm_settings['fm_shortcode']) && $fm_settings['fm_shortcode']!= '')
|
251 |
add_filter('the_content', 'Form_maker_fornt_end_main', 5000);
|
252 |
|
253 |
// Add the Form Maker button to editor.
|
279 |
// Activate plugin.
|
280 |
function form_maker_activate() {
|
281 |
$version = get_option("wd_form_maker_version");
|
282 |
+
$new_version = '1.10.3';
|
283 |
global $wpdb;
|
284 |
if (!$version) {
|
285 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
|
|
4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.10.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -314,6 +314,9 @@ Form Maker uses phone and number field types, which are verified and do not acce
|
|
314 |
Email field should be used since it verifies that an entry format fulfills example@example.com format.
|
315 |
|
316 |
== Changelog ==
|
|
|
|
|
|
|
317 |
= 1.10.2 =
|
318 |
Added: New Global option "Use an alternative version of JS code on front-end:". Checking this box fixes JS conflicts with some themes, that alter inline JS.
|
319 |
|
4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.10.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
314 |
Email field should be used since it verifies that an entry format fulfills example@example.com format.
|
315 |
|
316 |
== Changelog ==
|
317 |
+
= 1.10.3 =
|
318 |
+
Fixed: Bug on PHP 5.3
|
319 |
+
|
320 |
= 1.10.2 =
|
321 |
Added: New Global option "Use an alternative version of JS code on front-end:". Checking this box fixes JS conflicts with some themes, that alter inline JS.
|
322 |
|