Changeset 3201500
- Timestamp:
- 12/03/2024 09:51:25 AM (16 months ago)
- Location:
- conditional-logic-for-elementor-forms/trunk
- Files:
-
- 3 edited
-
conditional-logic-for-elementor-forms.php (modified) (2 diffs)
-
libs/conditional_logic.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
conditional-logic-for-elementor-forms/trunk/conditional-logic-for-elementor-forms.php
r3167494 r3201500 5 5 * Requires Plugins: elementor 6 6 * Description: The Conditional Logic add-on can be used to show and hide form fields based off of the user’s inputs. 7 * Version: 2.2. 47 * Version: 2.2.5 8 8 * Author: add-ons.org 9 9 * Text Domain: conditional-logic-for-elementor-forms … … 17 17 define( 'ELEMENTOR_CONDITIONAL_LOGIC_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 18 18 include ELEMENTOR_CONDITIONAL_LOGIC_PLUGIN_PATH."includes/conditional_logic.php"; 19 20 19 class Superaddons_Elementor_Conditional_logic_Init{ 21 20 function __construct(){ -
conditional-logic-for-elementor-forms/trunk/libs/conditional_logic.js
r3167494 r3201500 351 351 rs= $(".elementor-field-group-"+id +" textarea",form).val(); 352 352 } 353 else if( $(".elementor-field-group-"+id,form).hasClass("elementor-field-type-acceptance") ){ 354 if($(".elementor-field-group-"+id +" input",form).is(':checked')){ 355 rs ="on"; 356 }else{ 357 rs ="off"; 358 } 359 } 353 360 else{ 354 361 rs= $(".elementor-field-group-"+id +" input",form).val(); -
conditional-logic-for-elementor-forms/trunk/readme.txt
r3188232 r3201500 4 4 Requires at least: 2.0 5 5 Tested up to: 6.7 6 Stable tag: 2.2. 46 Stable tag: 2.2.5 7 7 Requires PHP: 5.2 8 8 License: GPLv2 or later … … 73 73 74 74 == Changelog == 75 = 2.2.5 = 76 - Added: Acceptance Field check "on" "off" 77 75 78 = 2.2.4 = 76 79 - Fixed: HTML type conditional
Note: See TracChangeset
for help on using the changeset viewer.