Plugin Directory

Changeset 2439694


Ignore:
Timestamp:
12/15/2020 10:39:06 AM (5 years ago)
Author:
sanjaywp
Message:

Version updated and fixed depreciated function

Location:
swe-country-code-field-gf-add-on/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • swe-country-code-field-gf-add-on/trunk/includes/class-swe-country-code-gf-field.php

    r2251843 r2439694  
    115115        // Prepare the other input attributes.
    116116        $tabindex              = $this->get_tabindex();
    117         $logic_event           = ! $is_form_editor && ! $is_entry_detail ? $this->get_conditional_logic_event( 'keyup' ) : '';
     117        //$logic_event           = ! $is_form_editor && ! $is_entry_detail ? $this->get_conditional_logic_event( 'keyup' ) : '';
     118        $logic_event           = version_compare( GFForms::$version, '2.4.1', '<' ) ? $this->get_conditional_logic_event( 'change' ) : '';
    118119        $placeholder_attribute = $this->get_field_placeholder_attribute();
    119120        $required_attribute    = $this->isRequired ? 'aria-required="true"' : '';
  • swe-country-code-field-gf-add-on/trunk/readme.txt

    r2251843 r2439694  
    44Tags: Phone Number with International country code, Phone Code, Phone code with country flag, GF addons for Ph with Country code
    55Requires at least: 3.0
    6 Tested up to: 5.3.2
     6Tested up to: 5.6
    77Requires PHP: 5.2.4
    8 Stable tag: trunk
     8Stable tag: 2.1.0
    99
    1010Gravity Forms Addons for Inetrnational Phone code in drop down with flags
     
    3333Yes , it is gravity form Add-On, it will not work with other forms plugins.
    3434
     35= Is this Multisite supportable =
     36
     37Yes , it will work on Multisite.
     38
    3539== Screenshots ==
    3640
     
    4650== Changelog ==
    4751
    48 = TFirst Release of SWE GF Country Code plugin
     52= 2.1.0 =
     53= Deprecated function Error fixed, and update to latest version of WordPress
     54
     55= 1.1.0 =
     56= First Release of SWE GF Country Code plugin
  • swe-country-code-field-gf-add-on/trunk/swe-country-code-gfaddon.php

    r2251843 r2439694  
    33Plugin Name: SWE Country Code Field GF Add-On
    44Description: Add fields for country code with country flag in dropdown on phone number as a gf addons.
    5 Version: 1.1.0
     5Version: 2.1.0
    66Author: SanjayWebExpert
    77Author URI: http://sanjaywebexpert.com
     
    99*/
    1010
    11 define( 'SWE_GF_COUNTRY_CODE_ADDON_VERSION', '1.1.0' );
     11define( 'SWE_GF_COUNTRY_CODE_ADDON_VERSION', '2.1.0' );
    1212
    1313add_action( 'gform_loaded', array( 'SWE_GF_Country_Code_AddOn_Bootstrap', 'load' ), 5 );
Note: See TracChangeset for help on using the changeset viewer.