Version Description
- Modifies functions deprecated by the latest Elementor update.
Download this release
Release Info
Developer | codepeople |
Plugin | Calculated Fields Form |
Version | 1.1.75 |
Comparing to | |
See all releases |
Code changes from version 1.1.74 to 1.1.75
- README.txt +5 -1
- changelog.txt +4 -0
- cp_calculatedfieldsf_free.php +2 -2
- js/fbuilder-pro-public.jquery.js +1 -1
- pagebuilders/elementor/elementor.pb.php +4 -4
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://cff.dwbooster.com
|
|
4 |
Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
|
5 |
Requires at least: 3.0.5
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -965,6 +965,10 @@ A: Please, follow the steps below:
|
|
965 |
|
966 |
== Changelog ==
|
967 |
|
|
|
|
|
|
|
|
|
968 |
= 1.1.74 =
|
969 |
|
970 |
* Fixes an issue with the default values in DropDown, Radio Buttons, and Checkbox fields.
|
4 |
Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
|
5 |
Requires at least: 3.0.5
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 1.1.75
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
965 |
|
966 |
== Changelog ==
|
967 |
|
968 |
+
= 1.1.75 =
|
969 |
+
|
970 |
+
* Modifies functions deprecated by the latest Elementor update.
|
971 |
+
|
972 |
= 1.1.74 =
|
973 |
|
974 |
* Fixes an issue with the default values in DropDown, Radio Buttons, and Checkbox fields.
|
changelog.txt
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
3 |
= 1.1.74 =
|
4 |
|
5 |
* Fixes an issue with the default values in DropDown, Radio Buttons, and Checkbox fields.
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.1.75 =
|
4 |
+
|
5 |
+
* Modifies functions deprecated by the latest Elementor update.
|
6 |
+
|
7 |
= 1.1.74 =
|
8 |
|
9 |
* Fixes an issue with the default values in DropDown, Radio Buttons, and Checkbox fields.
|
cp_calculatedfieldsf_free.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Calculated Fields Form
|
4 |
Plugin URI: https://cff.dwbooster.com
|
5 |
Description: Create forms with field values calculated based in other form field values.
|
6 |
-
Version: 1.1.
|
7 |
Text Domain: calculated-fields-form
|
8 |
Author: CodePeople
|
9 |
Author URI: https://cff.dwbooster.com
|
@@ -16,7 +16,7 @@ if(!defined('WP_DEBUG') || true != WP_DEBUG)
|
|
16 |
}
|
17 |
|
18 |
// Defining main constants
|
19 |
-
define('CP_CALCULATEDFIELDSF_VERSION', '1.1.
|
20 |
define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
|
21 |
define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
|
22 |
define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
|
3 |
Plugin Name: Calculated Fields Form
|
4 |
Plugin URI: https://cff.dwbooster.com
|
5 |
Description: Create forms with field values calculated based in other form field values.
|
6 |
+
Version: 1.1.75
|
7 |
Text Domain: calculated-fields-form
|
8 |
Author: CodePeople
|
9 |
Author URI: https://cff.dwbooster.com
|
16 |
}
|
17 |
|
18 |
// Defining main constants
|
19 |
+
define('CP_CALCULATEDFIELDSF_VERSION', '1.1.75' );
|
20 |
define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
|
21 |
define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
|
22 |
define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
|
js/fbuilder-pro-public.jquery.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
$.fbuilder['version'] = '1.1.
|
2 |
$.fbuilder['controls'] = $.fbuilder['controls'] || {};
|
3 |
$.fbuilder['forms'] = $.fbuilder['forms'] || {};
|
4 |
|
1 |
+
$.fbuilder['version'] = '1.1.75';
|
2 |
$.fbuilder['controls'] = $.fbuilder['controls'] || {};
|
3 |
$.fbuilder['forms'] = $.fbuilder['forms'] || {};
|
4 |
|
pagebuilders/elementor/elementor.pb.php
CHANGED
@@ -32,7 +32,7 @@ class Elementor_CFF_Widget extends Widget_Base
|
|
32 |
return true;
|
33 |
} // End is_reload_preview_required
|
34 |
|
35 |
-
protected function
|
36 |
{
|
37 |
global $wpdb;
|
38 |
|
@@ -91,7 +91,7 @@ class Elementor_CFF_Widget extends Widget_Base
|
|
91 |
}
|
92 |
|
93 |
$this->end_controls_section();
|
94 |
-
} // End
|
95 |
|
96 |
private function _get_shortcode()
|
97 |
{
|
@@ -172,7 +172,7 @@ class Elementor_CFFV_Widget extends Widget_Shortcode
|
|
172 |
return true;
|
173 |
} // End is_reload_preview_required
|
174 |
|
175 |
-
protected function
|
176 |
{
|
177 |
$this->start_controls_section(
|
178 |
'section_shortcode',
|
@@ -194,7 +194,7 @@ class Elementor_CFFV_Widget extends Widget_Shortcode
|
|
194 |
);
|
195 |
|
196 |
$this->end_controls_section();
|
197 |
-
} // End
|
198 |
|
199 |
protected function render()
|
200 |
{
|
32 |
return true;
|
33 |
} // End is_reload_preview_required
|
34 |
|
35 |
+
protected function register_controls()
|
36 |
{
|
37 |
global $wpdb;
|
38 |
|
91 |
}
|
92 |
|
93 |
$this->end_controls_section();
|
94 |
+
} // End register_controls
|
95 |
|
96 |
private function _get_shortcode()
|
97 |
{
|
172 |
return true;
|
173 |
} // End is_reload_preview_required
|
174 |
|
175 |
+
protected function register_controls()
|
176 |
{
|
177 |
$this->start_controls_section(
|
178 |
'section_shortcode',
|
194 |
);
|
195 |
|
196 |
$this->end_controls_section();
|
197 |
+
} // End register_controls
|
198 |
|
199 |
protected function render()
|
200 |
{
|