Changeset 2439694
- Timestamp:
- 12/15/2020 10:39:06 AM (5 years ago)
- Location:
- swe-country-code-field-gf-add-on/trunk
- Files:
-
- 3 edited
-
includes/class-swe-country-code-gf-field.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
swe-country-code-gfaddon.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
swe-country-code-field-gf-add-on/trunk/includes/class-swe-country-code-gf-field.php
r2251843 r2439694 115 115 // Prepare the other input attributes. 116 116 $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' ) : ''; 118 119 $placeholder_attribute = $this->get_field_placeholder_attribute(); 119 120 $required_attribute = $this->isRequired ? 'aria-required="true"' : ''; -
swe-country-code-field-gf-add-on/trunk/readme.txt
r2251843 r2439694 4 4 Tags: Phone Number with International country code, Phone Code, Phone code with country flag, GF addons for Ph with Country code 5 5 Requires at least: 3.0 6 Tested up to: 5. 3.26 Tested up to: 5.6 7 7 Requires PHP: 5.2.4 8 Stable tag: trunk8 Stable tag: 2.1.0 9 9 10 10 Gravity Forms Addons for Inetrnational Phone code in drop down with flags … … 33 33 Yes , it is gravity form Add-On, it will not work with other forms plugins. 34 34 35 = Is this Multisite supportable = 36 37 Yes , it will work on Multisite. 38 35 39 == Screenshots == 36 40 … … 46 50 == Changelog == 47 51 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 3 3 Plugin Name: SWE Country Code Field GF Add-On 4 4 Description: Add fields for country code with country flag in dropdown on phone number as a gf addons. 5 Version: 1.1.05 Version: 2.1.0 6 6 Author: SanjayWebExpert 7 7 Author URI: http://sanjaywebexpert.com … … 9 9 */ 10 10 11 define( 'SWE_GF_COUNTRY_CODE_ADDON_VERSION', ' 1.1.0' );11 define( 'SWE_GF_COUNTRY_CODE_ADDON_VERSION', '2.1.0' ); 12 12 13 13 add_action( 'gform_loaded', array( 'SWE_GF_Country_Code_AddOn_Bootstrap', 'load' ), 5 );
Note: See TracChangeset
for help on using the changeset viewer.