Plugin Directory

Changeset 3201500


Ignore:
Timestamp:
12/03/2024 09:51:25 AM (16 months ago)
Author:
rednumber
Message:

update 2

Location:
conditional-logic-for-elementor-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • conditional-logic-for-elementor-forms/trunk/conditional-logic-for-elementor-forms.php

    r3167494 r3201500  
    55 * Requires Plugins: elementor
    66 * 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.4
     7 * Version: 2.2.5
    88 * Author: add-ons.org
    99 * Text Domain: conditional-logic-for-elementor-forms
     
    1717define( 'ELEMENTOR_CONDITIONAL_LOGIC_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    1818include ELEMENTOR_CONDITIONAL_LOGIC_PLUGIN_PATH."includes/conditional_logic.php";
    19 
    2019class Superaddons_Elementor_Conditional_logic_Init{
    2120    function __construct(){
  • conditional-logic-for-elementor-forms/trunk/libs/conditional_logic.js

    r3167494 r3201500  
    351351            rs= $(".elementor-field-group-"+id +" textarea",form).val();
    352352        }
     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        }
    353360        else{
    354361            rs= $(".elementor-field-group-"+id +" input",form).val();
  • conditional-logic-for-elementor-forms/trunk/readme.txt

    r3188232 r3201500  
    44Requires at least: 2.0
    55Tested up to: 6.7
    6 Stable tag: 2.2.4
     6Stable tag: 2.2.5
    77Requires PHP: 5.2
    88License: GPLv2 or later
     
    7373
    7474== Changelog ==
     75= 2.2.5 =
     76- Added: Acceptance Field check "on" "off"
     77
    7578= 2.2.4 =
    7679- Fixed: HTML type conditional
Note: See TracChangeset for help on using the changeset viewer.